diff options
author | Daniel Black <dragonheart@gentoo.org> | 2008-04-01 07:23:46 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2008-04-01 07:23:46 +0000 |
commit | 33b90a8324edb020a339f337d0ef219f824ff2c9 (patch) | |
tree | ea173a882c43697f6206413e8e455a3c7c3bdaa9 /net-dns/c-ares | |
parent | Removing first old version. Lets keep only 8 versions. (diff) | |
download | gentoo-2-33b90a8324edb020a339f337d0ef219f824ff2c9.tar.gz gentoo-2-33b90a8324edb020a339f337d0ef219f824ff2c9.tar.bz2 gentoo-2-33b90a8324edb020a339f337d0ef219f824ff2c9.zip |
version bump - note ABI change
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-dns/c-ares')
-rw-r--r-- | net-dns/c-ares/ChangeLog | 7 | ||||
-rw-r--r-- | net-dns/c-ares/c-ares-1.5.1.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/net-dns/c-ares/ChangeLog b/net-dns/c-ares/ChangeLog index 9380dd767dff..37397fc49d98 100644 --- a/net-dns/c-ares/ChangeLog +++ b/net-dns/c-ares/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-dns/c-ares # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/c-ares/ChangeLog,v 1.42 2008/03/06 03:48:15 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/c-ares/ChangeLog,v 1.43 2008/04/01 07:23:46 dragonheart Exp $ + +*c-ares-1.5.1 (01 Apr 2008) + + 01 Apr 2008; Daniel Black <dragonheart@gentoo.org> +c-ares-1.5.1.ebuild: + version bump 06 Mar 2008; Chris Gianelloni <wolf31o2@gentoo.org> c-ares-1.4.0.ebuild: Adding back ~x86-fbsd for games-action/bzflag. Someone dropped the KEYWORD diff --git a/net-dns/c-ares/c-ares-1.5.1.ebuild b/net-dns/c-ares/c-ares-1.5.1.ebuild new file mode 100644 index 000000000000..a95d7e45de5c --- /dev/null +++ b/net-dns/c-ares/c-ares-1.5.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/c-ares/c-ares-1.5.1.ebuild,v 1.1 2008/04/01 07:23:46 dragonheart Exp $ + +DESCRIPTION="C library that resolves names asynchronously" +HOMEPAGE="http://daniel.haxx.se/projects/c-ares/" +SRC_URI="http://daniel.haxx.se/projects/c-ares/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="" + +src_compile() { + econf --enable-shared || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc CHANGES NEWS README* +} + +pkg_postinst() { + ewarn "The soname for libares has changed in c-ares-1.4.0." + #ewarn "If you have upgraded from that or earlier version, it is recommended to run:" + ewarn + ewarn "revdep-rebuild --library libcares.so.1" + ewarn + ewarn "This will fix linking errors caused by this change." + echo +} |