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.1.2.ebuild ChangeLog knot-1.1.1.ebuild knot-1.1.0.ebuild
Date: Thu, 22 Nov 2012 13:40:45
Message-Id: 20121122134032.35A1220C65@flycatcher.gentoo.org
1 scarabeus 12/11/22 13:40:32
2
3 Modified: ChangeLog
4 Added: knot-1.1.2.ebuild
5 Removed: knot-1.1.1.ebuild knot-1.1.0.ebuild
6 Log:
7 Version bump to latest
8
9 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
10
11 Revision Changes Path
12 1.15 net-dns/knot/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?rev=1.15&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?rev=1.15&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/ChangeLog?r1=1.14&r2=1.15
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v
21 retrieving revision 1.14
22 retrieving revision 1.15
23 diff -u -r1.14 -r1.15
24 --- ChangeLog 19 Nov 2012 13:11:19 -0000 1.14
25 +++ ChangeLog 22 Nov 2012 13:40:31 -0000 1.15
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.14 2012/11/19 13:11:19 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/ChangeLog,v 1.15 2012/11/22 13:40:31 scarabeus Exp $
31 +
32 +*knot-1.1.2 (22 Nov 2012)
33 +
34 + 22 Nov 2012; Tomáš Chvátal <scarabeus@g.o> +knot-1.1.2.ebuild,
35 + -knot-1.1.0.ebuild, -knot-1.1.1.ebuild:
36 + Version bump to latest
37
38 *knot-1.1.1 (19 Nov 2012)
39
40
41
42
43 1.1 net-dns/knot/knot-1.1.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-1.1.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/knot/knot-1.1.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: knot-1.1.2.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.1.2.ebuild,v 1.1 2012/11/22 13:40:31 scarabeus Exp $
53
54 EAPI=4
55
56 inherit eutils 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 virtual/pkgconfig
74 sys-devel/flex
75 virtual/yacc
76 "
77
78 S="${WORKDIR}/${P/_/-}"
79
80 src_prepare() {
81 epatch "${FILESDIR}"/${PN}-move-pidfile-to-var.patch
82 sed -i \
83 -e 's:-Werror::g' \
84 configure.ac || die
85 eautoreconf
86 }
87
88 src_configure() {
89 econf \
90 --sysconfdir="${EPREFIX}/etc/${PN}" \
91 --libexecdir="${EPREFIX}/usr/libexec/${PN}" \
92 --disable-lto \
93 --enable-recvmmsg \
94 $(use_enable debug debug server,zones,xfr,packet,dname,rr,ns,hash,compiler) \
95 $(use_enable debug debuglevel details)
96 }
97
98 src_install() {
99 default
100
101 newinitd "${FILESDIR}/knot.init" knot-dns
102 }
103
104 pkg_postinst() {
105 if [[ -n ${REPLACING_VERSIONS} ]] ; then
106 elog "Remember to recompile all zones after update. Run:"
107 elog " # knotc stop"
108 elog " # knotc compile"
109 elog " # knotc start"
110 fi
111 }