summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2012-06-17 17:30:51 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2012-06-17 17:30:51 +0000
commit1d66700802b1df7d317330985669195e06bf0114 (patch)
treec17e1ca2017acdcf374e458637acd3fe6542cd7e /net-libs
parentDrop ia64/sparc keywords (diff)
downloadgentoo-2-1d66700802b1df7d317330985669195e06bf0114.tar.gz
gentoo-2-1d66700802b1df7d317330985669195e06bf0114.tar.bz2
gentoo-2-1d66700802b1df7d317330985669195e06bf0114.zip
Remove old; fix append-cflags warning (thanks to David J Cozatt in bug #420491).
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/libasyncns/ChangeLog7
-rw-r--r--net-libs/libasyncns/libasyncns-0.7.ebuild51
-rw-r--r--net-libs/libasyncns/libasyncns-0.8-r1.ebuild54
-rw-r--r--net-libs/libasyncns/libasyncns-0.8-r2.ebuild4
4 files changed, 8 insertions, 108 deletions
diff --git a/net-libs/libasyncns/ChangeLog b/net-libs/libasyncns/ChangeLog
index 9b9172c64db2..7d9e32b1a717 100644
--- a/net-libs/libasyncns/ChangeLog
+++ b/net-libs/libasyncns/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/libasyncns
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/ChangeLog,v 1.31 2012/04/23 07:35:45 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/ChangeLog,v 1.32 2012/06/17 17:30:51 flameeyes Exp $
+
+ 17 Jun 2012; Diego E. Pettenò <flameeyes@gentoo.org> -libasyncns-0.7.ebuild,
+ -libasyncns-0.8-r1.ebuild, libasyncns-0.8-r2.ebuild:
+ Remove old; fix append-cflags warning (thanks to David J Cozatt in bug
+ #420491).
23 Apr 2012; Benda Xu <heroxbd@gentoo.org> libasyncns-0.8-r2.ebuild:
keyword amd64-linux. bug #412819
diff --git a/net-libs/libasyncns/libasyncns-0.7.ebuild b/net-libs/libasyncns/libasyncns-0.7.ebuild
deleted file mode 100644
index 7128ffa3dd3b..000000000000
--- a/net-libs/libasyncns/libasyncns-0.7.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/libasyncns-0.7.ebuild,v 1.7 2010/07/14 02:53:05 jer Exp $
-
-inherit libtool flag-o-matic
-
-DESCRIPTION="C library for executing name service queries asynchronously."
-HOMEPAGE="http://0pointer.de/lennart/projects/libasyncns/"
-SRC_URI="http://0pointer.de/lennart/projects/libasyncns/${P}.tar.gz"
-
-SLOT="0"
-
-LICENSE="LGPL-2.1"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86"
-
-IUSE="doc debug"
-
-RDEPEND=""
-DEPEND="doc? ( app-doc/doxygen )"
-
-src_unpack() {
- unpack ${A}
-
- elibtoolize
-}
-
-src_compile() {
- # libasyncns uses assert()
- use debug || append-flags -DNDEBUG
-
- econf \
- --docdir=/usr/share/doc/${PF} \
- --htmldir=/usr/share/doc/${PF}/html \
- --disable-dependency-tracking \
- --disable-lynx \
- || die "econf failed"
- emake || die "emake failed"
-
- if use doc; then
- doxygen doxygen/doxygen.conf || die "doxygen failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- if use doc; then
- docinto apidocs
- dohtml html/*
- fi
-}
diff --git a/net-libs/libasyncns/libasyncns-0.8-r1.ebuild b/net-libs/libasyncns/libasyncns-0.8-r1.ebuild
deleted file mode 100644
index 99d80e57866e..000000000000
--- a/net-libs/libasyncns/libasyncns-0.8-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/libasyncns-0.8-r1.ebuild,v 1.1 2011/03/28 04:37:13 ford_prefect Exp $
-
-EAPI=3
-inherit eutils libtool flag-o-matic
-
-DESCRIPTION="C library for executing name service queries asynchronously."
-HOMEPAGE="http://0pointer.de/lennart/projects/libasyncns/"
-SRC_URI="http://0pointer.de/lennart/projects/libasyncns/${P}.tar.gz"
-
-SLOT="0"
-
-LICENSE="LGPL-2.1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-linux"
-
-IUSE="doc debug"
-
-RDEPEND=""
-DEPEND="doc? ( app-doc/doxygen )"
-
-src_prepare() {
- # fix libdir in pkgconfig file
- epatch "${FILESDIR}/${P}-libdir.patch"
- elibtoolize
-}
-
-src_configure() {
- # libasyncns uses assert()
- use debug || append-flags -DNDEBUG
-
- econf \
- --docdir="${EPREFIX}"/usr/share/doc/${PF} \
- --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
- --disable-dependency-tracking \
- --disable-lynx
-}
-
-src_compile() {
- emake || die "emake failed"
-
- if use doc; then
- doxygen doxygen/doxygen.conf || die "doxygen failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- if use doc; then
- docinto apidocs
- dohtml html/*
- fi
-}
diff --git a/net-libs/libasyncns/libasyncns-0.8-r2.ebuild b/net-libs/libasyncns/libasyncns-0.8-r2.ebuild
index ee50f0b610d0..6f874b4910d9 100644
--- a/net-libs/libasyncns/libasyncns-0.8-r2.ebuild
+++ b/net-libs/libasyncns/libasyncns-0.8-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/libasyncns-0.8-r2.ebuild,v 1.9 2012/04/23 07:35:45 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/libasyncns-0.8-r2.ebuild,v 1.10 2012/06/17 17:30:51 flameeyes Exp $
EAPI=3
inherit eutils libtool flag-o-matic
@@ -27,7 +27,7 @@ src_prepare() {
src_configure() {
# libasyncns uses assert()
- use debug || append-flags -DNDEBUG
+ use debug || append-cppflags -DNDEBUG
econf \
--docdir="${EPREFIX}"/usr/share/doc/${PF} \