Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libasyncns: ChangeLog libasyncns-0.7.ebuild
Date: Tue, 28 Oct 2008 17:57:51
Message-Id: E1KuspB-00042w-5c@stork.gentoo.org
1 flameeyes 08/10/28 17:57:49
2
3 Modified: ChangeLog
4 Added: libasyncns-0.7.ebuild
5 Log:
6 Long overdue version bump.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.12 net-libs/libasyncns/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libasyncns/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libasyncns/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libasyncns/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libasyncns/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 7 Aug 2008 09:39:00 -0000 1.11
23 +++ ChangeLog 28 Oct 2008 17:57:49 -0000 1.12
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-libs/libasyncns
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/ChangeLog,v 1.11 2008/08/07 09:39:00 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/ChangeLog,v 1.12 2008/10/28 17:57:49 flameeyes Exp $
29 +
30 +*libasyncns-0.7 (28 Oct 2008)
31 +
32 + 28 Oct 2008; Diego Pettenò <flameeyes@g.o> +libasyncns-0.7.ebuild:
33 + Long overdue version bump.
34
35 *libasyncns-0.4 (07 Aug 2008)
36
37
38
39
40 1.1 net-libs/libasyncns/libasyncns-0.7.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libasyncns/libasyncns-0.7.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libasyncns/libasyncns-0.7.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libasyncns-0.7.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-libs/libasyncns/libasyncns-0.7.ebuild,v 1.1 2008/10/28 17:57:49 flameeyes Exp $
50
51 inherit libtool flag-o-matic
52
53 DESCRIPTION="C library for executing name service queries asynchronously."
54 HOMEPAGE="http://0pointer.de/lennart/projects/libasyncns/"
55 SRC_URI="http://0pointer.de/lennart/projects/libasyncns/${P}.tar.gz"
56
57 SLOT="0"
58
59 LICENSE="LGPL-2.1"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
61
62 IUSE="doc debug"
63
64 RDEPEND=""
65 DEPEND="doc? ( app-doc/doxygen )"
66
67 src_unpack() {
68 unpack ${A}
69
70 elibtoolize
71 }
72
73 src_compile() {
74 # libasyncns uses assert()
75 use debug || append-flags -DNDEBUG
76
77 econf \
78 --docdir=/usr/share/doc/${PF} \
79 --htmldir=/usr/share/doc/${PF}/html \
80 --disable-dependency-tracking \
81 --disable-lynx \
82 || die "econf failed"
83 emake || die "emake failed"
84
85 if use doc; then
86 doxygen doxygen/doxygen.conf || die "doxygen failed"
87 fi
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "emake install failed"
92
93 if use doc; then
94 docinto apidocs
95 dohtml html/*
96 fi
97 }