Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libasyncns: libasyncns-0.8.ebuild ChangeLog
Date: Tue, 01 Jun 2010 20:43:15
Message-Id: 20100601204307.794962CE14@corvid.gentoo.org
1 darkside 10/06/01 20:43:07
2
3 Modified: ChangeLog
4 Added: libasyncns-0.8.ebuild
5 Log:
6 Version bump (bug 309355), add Gentoo Prefix support (bug 321023)
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 net-libs/libasyncns/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libasyncns/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libasyncns/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libasyncns/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libasyncns/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 28 Apr 2009 17:46:37 -0000 1.14
23 +++ ChangeLog 1 Jun 2010 20:43:06 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-libs/libasyncns
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/ChangeLog,v 1.14 2009/04/28 17:46:37 armin76 Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/ChangeLog,v 1.15 2010/06/01 20:43:06 darkside Exp $
30 +
31 +*libasyncns-0.8 (01 Jun 2010)
32 +
33 + 01 Jun 2010; Jeremy Olexa <darkside@g.o> +libasyncns-0.8.ebuild:
34 + Version bump (bug 309355), add Gentoo Prefix support (bug 321023)
35
36 28 Apr 2009; Raúl Porcel <armin76@g.o> libasyncns-0.3.ebuild:
37 arm/sh stable
38
39
40
41 1.1 net-libs/libasyncns/libasyncns-0.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libasyncns/libasyncns-0.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libasyncns/libasyncns-0.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libasyncns-0.8.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/libasyncns-0.8.ebuild,v 1.1 2010/06/01 20:43:06 darkside Exp $
51
52 EAPI=3
53 inherit libtool flag-o-matic
54
55 DESCRIPTION="C library for executing name service queries asynchronously."
56 HOMEPAGE="http://0pointer.de/lennart/projects/libasyncns/"
57 SRC_URI="http://0pointer.de/lennart/projects/libasyncns/${P}.tar.gz"
58
59 SLOT="0"
60
61 LICENSE="LGPL-2.1"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-linux"
63
64 IUSE="doc debug"
65
66 RDEPEND=""
67 DEPEND="doc? ( app-doc/doxygen )"
68
69 src_prepare() {
70 elibtoolize
71 }
72
73 src_configure() {
74 # libasyncns uses assert()
75 use debug || append-flags -DNDEBUG
76
77 econf \
78 --docdir="${EPREFIX}"/usr/share/doc/${PF} \
79 --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
80 --disable-dependency-tracking \
81 --disable-lynx
82 }
83
84 src_compile() {
85 emake || die "emake failed"
86
87 if use doc; then
88 doxygen doxygen/doxygen.conf || die "doxygen failed"
89 fi
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "emake install failed"
94
95 if use doc; then
96 docinto apidocs
97 dohtml html/*
98 fi
99 }