summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Mende <angelos@gentoo.org>2011-08-21 11:23:15 +0000
committerChristoph Mende <angelos@gentoo.org>2011-08-21 11:23:15 +0000
commit8baa54eef29d06f02ec16ba3faf1509593062751 (patch)
treea06a6c317166e7733e5fc89dda677c5e6b1c6e47 /net-dns
parentDropping app-emulation/pearpc[jit] mask as the application was tree-cleaned (diff)
downloadgentoo-2-8baa54eef29d06f02ec16ba3faf1509593062751.tar.gz
gentoo-2-8baa54eef29d06f02ec16ba3faf1509593062751.tar.bz2
gentoo-2-8baa54eef29d06f02ec16ba3faf1509593062751.zip
Version bump, remove old
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'net-dns')
-rw-r--r--net-dns/c-ares/ChangeLog8
-rw-r--r--net-dns/c-ares/c-ares-1.5.3.ebuild35
-rw-r--r--net-dns/c-ares/c-ares-1.7.5.ebuild28
3 files changed, 35 insertions, 36 deletions
diff --git a/net-dns/c-ares/ChangeLog b/net-dns/c-ares/ChangeLog
index 310159ea8c73..dabfbdc66591 100644
--- a/net-dns/c-ares/ChangeLog
+++ b/net-dns/c-ares/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-dns/c-ares
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/c-ares/ChangeLog,v 1.66 2011/07/24 11:26:10 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/c-ares/ChangeLog,v 1.67 2011/08/21 11:23:15 angelos Exp $
+
+*c-ares-1.7.5 (21 Aug 2011)
+
+ 21 Aug 2011; Christoph Mende <angelos@gentoo.org> -c-ares-1.5.3.ebuild,
+ +c-ares-1.7.5.ebuild:
+ Version bump, remove old
24 Jul 2011; Raúl Porcel <armin76@gentoo.org> c-ares-1.7.4.ebuild:
alpha/arm/ia64/s390/sh/sparc stable wrt #369501
diff --git a/net-dns/c-ares/c-ares-1.5.3.ebuild b/net-dns/c-ares/c-ares-1.5.3.ebuild
deleted file mode 100644
index d047b0267957..000000000000
--- a/net-dns/c-ares/c-ares-1.5.3.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2010 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.3.ebuild,v 1.8 2010/12/11 09:43:37 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=""
-RDEPEND=""
-
-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
-}
diff --git a/net-dns/c-ares/c-ares-1.7.5.ebuild b/net-dns/c-ares/c-ares-1.7.5.ebuild
new file mode 100644
index 000000000000..05fa256f1be3
--- /dev/null
+++ b/net-dns/c-ares/c-ares-1.7.5.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2011 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.7.5.ebuild,v 1.1 2011/08/21 11:23:15 angelos Exp $
+
+EAPI=4
+
+DESCRIPTION="C library that resolves names asynchronously"
+HOMEPAGE="http://c-ares.haxx.se/"
+SRC_URI="http://${PN}.haxx.se/download/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
+IUSE="static-libs"
+
+DOCS=( AUTHORS CHANGES README README.cares RELEASE-NOTES TODO )
+
+src_configure() {
+ econf \
+ --enable-nonblocking \
+ --enable-symbol-hiding \
+ $(use_enable static-libs static)
+}
+
+src_install() {
+ default
+ find "${ED}" -name "*.la" -exec rm {} + || die
+}