diff options
Diffstat (limited to 'net-dns/knot/knot-1.1.1.ebuild')
-rw-r--r-- | net-dns/knot/knot-1.1.1.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/net-dns/knot/knot-1.1.1.ebuild b/net-dns/knot/knot-1.1.1.ebuild deleted file mode 100644 index 7ae394e5be1b..000000000000 --- a/net-dns/knot/knot-1.1.1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/knot-1.1.1.ebuild,v 1.1 2012/11/19 13:11:19 scarabeus Exp $ - -EAPI=4 - -inherit eutils autotools - -DESCRIPTION="High-performance authoritative-only DNS server" -HOMEPAGE="http://www.knot-dns.cz/" -SRC_URI="http://public.nic.cz/files/knot-dns/${P/_/-}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug" - -RDEPEND=" - dev-libs/openssl - dev-libs/userspace-rcu -" -# sys-libs/glibc -DEPEND="${RDEPEND} - virtual/pkgconfig - sys-devel/flex - virtual/yacc -" - -S="${WORKDIR}/${P/_/-}" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-move-pidfile-to-var.patch - sed -i \ - -e 's:-Werror::g' \ - configure.ac || die - eautoreconf -} - -src_configure() { - econf \ - --sysconfdir="${EPREFIX}/etc/${PN}" \ - --libexecdir="${EPREFIX}/usr/libexec/${PN}" \ - --disable-lto \ - --enable-recvmmsg \ - $(use_enable debug debug server,zones,xfr,packet,dname,rr,ns,hash,compiler) \ - $(use_enable debug debuglevel details) -} - -src_install() { - default - - newinitd "${FILESDIR}/knot.init" knot-dns -} - -pkg_postinst() { - if [[ -n ${REPLACING_VERSIONS} ]] ; then - elog "Remember to recompile all zones after update. Run:" - elog " # knotc stop" - elog " # knotc compile" - elog " # knotc start" - fi -} |