Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dns/unbound: ChangeLog unbound-1.4.4.ebuild unbound-1.4.1.ebuild
Date: Fri, 23 Apr 2010 00:09:20
Message-Id: 20100423000916.9937440012@corvid.gentoo.org
1 matsuu 10/04/23 00:09:16
2
3 Modified: ChangeLog
4 Added: unbound-1.4.4.ebuild
5 Removed: unbound-1.4.1.ebuild
6 Log:
7 Version bumped. Fixed #312015 and #315519.
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 net-dns/unbound/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 29 Mar 2010 21:54:46 -0000 1.12
24 +++ ChangeLog 23 Apr 2010 00:09:16 -0000 1.13
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-dns/unbound
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.12 2010/03/29 21:54:46 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.13 2010/04/23 00:09:16 matsuu Exp $
30 +
31 +*unbound-1.4.4 (23 Apr 2010)
32 +
33 + 23 Apr 2010; MATSUU Takuto <matsuu@g.o> -unbound-1.4.1.ebuild,
34 + +unbound-1.4.4.ebuild:
35 + Version bumped. Fixed #312015 and #315519. Removed old version.
36
37 29 Mar 2010; Markus Meier <maekke@g.o> unbound-1.4.3.ebuild:
38 amd64 stable, bug #309117
39
40
41
42 1.1 net-dns/unbound/unbound-1.4.4.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: unbound-1.4.4.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.4.ebuild,v 1.1 2010/04/23 00:09:16 matsuu Exp $
52
53 EAPI="3"
54
55 inherit autotools eutils multilib
56
57 DESCRIPTION="A validating, recursive and caching DNS resolver"
58 HOMEPAGE="http://unbound.net/"
59 SRC_URI="http://unbound.net/downloads/${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="debug libevent python static test threads"
65
66 RDEPEND=">=dev-libs/openssl-0.9.8
67 >=net-libs/ldns-1.4[ssl]
68 libevent? ( dev-libs/libevent )"
69 # gost? ( >=dev-libs/openssl-1 )
70
71 DEPEND="${RDEPEND}
72 python? ( dev-lang/swig )
73 test? (
74 net-dns/ldns-utils[examples]
75 dev-util/splint
76 app-text/wdiff
77 )"
78
79 pkg_setup() {
80 enewgroup unbound
81 enewuser unbound -1 -1 /etc/unbound unbound
82 }
83
84 src_prepare() {
85 sed -i -e "s:\(withval\|thedir\)/lib:\1/$(get_libdir):" configure.ac || die
86 eautoreconf
87 }
88
89 src_configure() {
90 econf \
91 --with-pidfile="${EPREFIX}"/var/run/unbound.pid \
92 --with-ldns="${EPREFIX}"/usr \
93 $(use_enable debug) \
94 $(use_enable debug lock-checks) \
95 $(use_enable debug alloc-checks) \
96 $(use_enable debug alloc-lite) \
97 $(use_enable debug alloc-nonregional) \
98 $(use_enable static static-exe) \
99 $(use_with libevent) \
100 $(use_with threads pthreads) \
101 $(use_with python pyunbound) \
102 $(use_with python pythonmodule) || die
103 }
104
105 src_install() {
106 emake DESTDIR="${D}" install || die "emake install failed"
107
108 # bug #299016
109 if use python ; then
110 rm "${ED}/usr/$(get_libdir)"/python*/site-packages/_unbound.*a || die
111 fi
112
113 newinitd "${FILESDIR}/unbound.initd" unbound || die "newinitd failed"
114 newconfd "${FILESDIR}/unbound.confd" unbound || die "newconfd failed"
115
116 dodoc doc/{README,CREDITS,TODO,Changelog,FEATURES} || die "dodoc failed"
117 # bug #315519
118 dodoc contrib/unbound_munin_ || die "dodoc failed"
119
120 exeinto /usr/share/${PN}
121 doexe contrib/{update-anchor,update-itar,split-itar}.sh || die "doexe failed"
122 }