Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libasyncns/
Date: Sun, 03 Mar 2019 11:50:02
Message-Id: 1551613786.0e8bbfc4248ae7863747ce38a0dcda86830c2327.pacho@gentoo
1 commit: 0e8bbfc4248ae7863747ce38a0dcda86830c2327
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 3 11:49:46 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 3 11:49:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e8bbfc4
7
8 net-libs/libasyncns: Drop old
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 net-libs/libasyncns/libasyncns-0.8-r3.ebuild | 59 ----------------------------
14 1 file changed, 59 deletions(-)
15
16 diff --git a/net-libs/libasyncns/libasyncns-0.8-r3.ebuild b/net-libs/libasyncns/libasyncns-0.8-r3.ebuild
17 deleted file mode 100644
18 index 6cc4ce9577e..00000000000
19 --- a/net-libs/libasyncns/libasyncns-0.8-r3.ebuild
20 +++ /dev/null
21 @@ -1,59 +0,0 @@
22 -# Copyright 1999-2014 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -inherit eutils flag-o-matic libtool multilib multilib-minimal
27 -
28 -DESCRIPTION="C library for executing name service queries asynchronously"
29 -HOMEPAGE="http://0pointer.de/lennart/projects/libasyncns/"
30 -SRC_URI="http://0pointer.de/lennart/projects/libasyncns/${P}.tar.gz"
31 -
32 -SLOT="0"
33 -
34 -LICENSE="LGPL-2.1"
35 -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
36 -
37 -IUSE="doc debug"
38 -
39 -RDEPEND=""
40 -DEPEND="doc? ( app-doc/doxygen )"
41 -
42 -src_prepare() {
43 - # fix libdir in pkgconfig file
44 - epatch "${FILESDIR}/${P}-libdir.patch"
45 - elibtoolize
46 -}
47 -
48 -multilib_src_configure() {
49 - # libasyncns uses assert()
50 - use debug || append-cppflags -DNDEBUG
51 -
52 - ECONF_SOURCE=${S} \
53 - econf \
54 - --docdir="${EPREFIX}"/usr/share/doc/${PF} \
55 - --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
56 - --disable-dependency-tracking \
57 - --disable-lynx \
58 - --disable-static
59 -}
60 -
61 -multilib_src_compile() {
62 - emake || die "emake failed"
63 -
64 - if multilib_is_native_abi && use doc; then
65 - doxygen doxygen/doxygen.conf || die "doxygen failed"
66 - fi
67 -}
68 -
69 -multilib_src_install() {
70 - emake DESTDIR="${D}" install || die "emake install failed"
71 -
72 - if multilib_is_native_abi && use doc; then
73 - docinto apidocs
74 - dohtml html/*
75 - fi
76 -}
77 -
78 -multilib_src_install_all() {
79 - find "${D}" -name '*.la' -delete
80 -}