Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/adns: ChangeLog adns-1.4-r1.ebuild
Date: Tue, 10 Nov 2009 13:53:39
Message-Id: E1N7rA8-0001GH-PW@stork.gentoo.org
1 hwoarang 09/11/10 13:53:36
2
3 Modified: ChangeLog
4 Added: adns-1.4-r1.ebuild
5 Log:
6 Fix cname issue ( bug #292545 ). EAPI2fy it
7 (Portage version: 2.2_rc49/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.35 net-libs/adns/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/adns/ChangeLog?rev=1.35&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/adns/ChangeLog?rev=1.35&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/adns/ChangeLog?r1=1.34&r2=1.35
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/adns/ChangeLog,v
19 retrieving revision 1.34
20 retrieving revision 1.35
21 diff -u -r1.34 -r1.35
22 --- ChangeLog 23 Aug 2009 01:54:43 -0000 1.34
23 +++ ChangeLog 10 Nov 2009 13:53:36 -0000 1.35
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-libs/adns
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/adns/ChangeLog,v 1.34 2009/08/23 01:54:43 darkside Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/adns/ChangeLog,v 1.35 2009/11/10 13:53:36 hwoarang Exp $
29 +
30 +*adns-1.4-r1 (10 Nov 2009)
31 +
32 + 10 Nov 2009; Markos Chandras <hwoarang@g.o> +adns-1.4-r1.ebuild,
33 + +files/adns-1.4-cnamechain.patch:
34 + Fix cname issue ( bug #292545 ). EAPI2fy it. Thanks to Alex Efros <powerman-asdf@××××××.ru>
35 + for the attached patch.
36
37 23 Aug 2009; Jeremy Olexa <darkside@g.o> -files/1.1-gcc34.patch,
38 -files/adns-gcc34.patch:
39
40
41
42 1.1 net-libs/adns/adns-1.4-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/adns/adns-1.4-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/adns/adns-1.4-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: adns-1.4-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/adns/adns-1.4-r1.ebuild,v 1.1 2009/11/10 13:53:36 hwoarang Exp $
52
53 EAPI="2"
54
55 inherit eutils multilib toolchain-funcs
56
57 DESCRIPTION="Advanced, easy to use, asynchronous-capable DNS client library and utilities"
58 HOMEPAGE="http://www.chiark.greenend.org.uk/~ian/adns/"
59 SRC_URI="ftp://ftp.chiark.greenend.org.uk/users/ian/adns/${P}.tar.gz"
60
61 LICENSE="LGPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE=""
65
66 DEPEND=""
67 RDEPEND=""
68
69 src_prepare() {
70 epatch "${FILESDIR}"/${P}-cnamechain.patch
71 }
72
73 src_configure() {
74 CC=$(tc-getCC) econf || die "econf failed"
75 }
76
77 src_compile() {
78 emake AR=$(tc-getAR) RANLIB=$(tc-getRANLIB) || die "emake failed"
79 }
80
81 src_install () {
82 dodir /usr/{include,bin,$(get_libdir)}
83 emake prefix="${D}"/usr libdir="${D}"/usr/$(get_libdir) install || die "emake install failed"
84 dodoc README TODO changelog "${FILESDIR}"/README.security
85 dohtml *.html
86 }
87
88 pkg_postinst() {
89 ewarn "$(<${FILESDIR}/README.security)"
90 }