net-dns/maradns: use #!/sbin/openrc-run instead of #!/sbin/runscript
authorAustin English <wizardedit@gentoo.org>
Thu, 28 Apr 2016 22:42:00 +0000 (17:42 -0500)
committerAustin English <wizardedit@gentoo.org>
Thu, 28 Apr 2016 22:42:00 +0000 (17:42 -0500)
Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

net-dns/maradns/files/deadwood
net-dns/maradns/files/maradns2
net-dns/maradns/files/zoneserver2
net-dns/maradns/maradns-2.0.09-r1.ebuild [new file with mode: 0644]

index d9e8175ad5ebae839a260e4e54c57d2e5883a5fb..69fe0a434c89df52f91a80b5521659a2efc9e570 100644 (file)
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
index cc6915f5b8e205dcafcf3702c9064c369224d595..a6fb9e479af39aee253ecd29dfb5702f9d5862d8 100644 (file)
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
index 6c6486d5e9baec2582e33400246bf07d9effc496..b2abe26110f56361e7a8201e8b28b7f8b2f3b524 100644 (file)
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
diff --git a/net-dns/maradns/maradns-2.0.09-r1.ebuild b/net-dns/maradns/maradns-2.0.09-r1.ebuild
new file mode 100644 (file)
index 0000000..42c2d00
--- /dev/null
@@ -0,0 +1,98 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils systemd toolchain-funcs user
+
+DEADWOOD_VER="3.2.05"
+
+DESCRIPTION="A security-aware DNS server"
+HOMEPAGE="http://www.maradns.org/"
+SRC_URI="http://www.maradns.org/download/${PV%.*}/${PV}/${P}.tar.bz2"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="amd64 ~mips ppc x86"
+IUSE="authonly ipv6"
+
+DEPEND=""
+RDEPEND=""
+
+pkg_setup() {
+       ebegin "Creating group and users"
+       enewgroup maradns 99
+       enewuser duende 66 -1 -1 maradns
+       enewuser maradns 99 -1 -1 maradns
+       eend ${?}
+}
+
+src_prepare() {
+       # Apply some minor patches from Debian. Last one - from Gentoo
+       epatch "${FILESDIR}/${PN}-2.0.06-askmara-tcp.patch" \
+               "${FILESDIR}/${PN}-2.0.06-duende-man.patch" \
+               "${FILESDIR}/${P}-build.patch"
+       epatch_user
+}
+
+src_configure() {
+       # Use duende-ng.c.
+       cp  "${S}/tools/duende-ng.c" "${S}/tools/duende.c" || die
+
+       tc-export CC
+       ./configure $(use ipv6 && echo "--ipv6") || die "Failed to configure ${PN}"
+}
+
+src_install() {
+       # Install the MaraDNS binaries.
+       dosbin server/maradns
+       dosbin tcp/zoneserver
+       dobin tcp/getzone tcp/fetchzone
+       dobin tools/askmara tools/askmara-tcp tools/duende
+       dobin tools/bind2csv2.py tools/csv1tocsv2.pl
+
+       # MaraDNS docs, manpages, misc.
+       dodoc doc/en/{QuickStart,README,*.txt}
+       dodoc doc/en/text/*.txt
+       doman doc/en/man/*.[1-9]
+       dodoc maradns.gpg.key
+       dohtml doc/en/*.html
+       dohtml -r doc/en/webpage
+       dohtml -r doc/en/tutorial
+       docinto examples
+       dodoc doc/en/examples/example_*
+
+       # Deadwood binary, docs, manpages, etc.
+       if ! use authonly; then
+               dosbin deadwood-${DEADWOOD_VER}/src/Deadwood
+               doman deadwood-${DEADWOOD_VER}/doc/{Deadwood,Duende}.1
+               docinto deadwood
+               dodoc deadwood-${DEADWOOD_VER}/doc/{Deadwood,Duende,FAQ}.txt
+               dohtml deadwood-${DEADWOOD_VER}/doc/{Deadwood,FAQ}.html
+               docinto deadwood/internals
+               dodoc deadwood-${DEADWOOD_VER}/doc/internals/*
+               insinto /etc/maradns
+               newins deadwood-${DEADWOOD_VER}/doc/dwood3rc-all dwood3rc_all.dist
+       fi
+
+       # Example configurations.
+       insinto /etc/maradns
+       newins doc/en/examples/example_full_mararc mararc_full.dist
+       newins doc/en/examples/example_csv2 example_csv2.dist
+       keepdir /etc/maradns/logger
+
+       # Init scripts.
+       newinitd "${FILESDIR}"/maradns2 maradns
+       newinitd "${FILESDIR}"/zoneserver2 zoneserver
+       if ! use authonly; then
+               newinitd "${FILESDIR}"/deadwood deadwood
+       fi
+
+       # systemd unit
+       # please keep paths in sync!
+       sed -e "s^@bindir@^${EPREFIX}/usr/sbin^" \
+               -e "s^@sysconfdir@^${EPREFIX}/etc/maradns^" \
+               "${FILESDIR}"/maradns.service.in > "${T}"/maradns.service
+       systemd_dounit "${T}"/maradns.service
+}