Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dns/knot: knot-1.0.0.ebuild ChangeLog knot-0.9.ebuild
Date: Wed, 29 Feb 2012 19:14:12
Message-Id: 20120229191402.7FE7E2004B@flycatcher.gentoo.org
1 scarabeus 12/02/29 19:14:02
2
3 Modified: ChangeLog
4 Added: knot-1.0.0.ebuild
5 Removed: knot-0.9.ebuild
6 Log:
7 Version bump to 1.0.0 final.
8
9 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.4 net-dns/knot/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 16 Jan 2012 09:14:49 -0000 1.3
25 +++ ChangeLog 29 Feb 2012 19:14:02 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-dns/knot
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v 1.3 2012/01/16 09:14:49 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v 1.4 2012/02/29 19:14:02 scarabeus Exp $
31 +
32 +*knot-1.0.0 (29 Feb 2012)
33 +
34 + 29 Feb 2012; Tomáš Chvátal <scarabeus@g.o> +knot-1.0.0.ebuild,
35 + -knot-0.9.ebuild:
36 + Version bump to 1.0.0 final.
37
38 *knot-0.9 (16 Jan 2012)
39
40
41
42
43 1.1 net-dns/knot/knot-1.0.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-1.0.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-1.0.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: knot-1.0.0.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-dns/knot/knot-1.0.0.ebuild,v 1.1 2012/02/29 19:14:02 scarabeus Exp $
53
54 EAPI=4
55
56 inherit autotools
57
58 DESCRIPTION="High-performance authoritative-only DNS server"
59 HOMEPAGE="http://www.knot-dns.cz/"
60 SRC_URI="http://public.nic.cz/files/knot-dns/${P}.tar.gz"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug"
66
67 RDEPEND="
68 dev-libs/openssl
69 dev-libs/userspace-rcu
70 "
71 # sys-libs/glibc
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 sys-devel/flex
75 virtual/yacc
76 "
77
78 src_prepare() {
79 sed -i \
80 -e 's:-Werror::g' \
81 configure.ac || die
82 eautoreconf
83 }
84
85 src_configure() {
86 econf \
87 --sysconfdir="${EPREFIX}/etc/${PN}" \
88 --libexecdir="${EPREFIX}/usr/libexec/${PN}" \
89 --enable-recvmmsg \
90 $(use_enable debug debug verbose)
91 }
92
93 src_install() {
94 default
95
96 newinitd "${FILESDIR}/knot.init" knot-dns
97 }