From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1925F1382C5 for ; Thu, 10 May 2018 08:01:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 357BDE0A5A; Thu, 10 May 2018 08:01:39 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 10F7AE0A5A for ; Thu, 10 May 2018 08:01:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E13D335C87 for ; Thu, 10 May 2018 08:01:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2C1C287 for ; Thu, 10 May 2018 08:01:36 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1525939269.b0db2c017d233ffd19b58354608b0e226988c06c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild X-VCS-Directories: net-dns/dnssec-tools/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b0db2c017d233ffd19b58354608b0e226988c06c X-VCS-Branch: master Date: Thu, 10 May 2018 08:01:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7227a6af-dec4-46f1-8a38-6ef5c061da2d X-Archives-Hash: f928da8281cae92a29a7939cf727237c commit: b0db2c017d233ffd19b58354608b0e226988c06c Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu May 10 07:45:46 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu May 10 08:01:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0db2c01 net-dns/dnssec-tools: EAPI 6, bogus qt4-r2, drop ltprune Bug: https://bugs.gentoo.org/645418 Package-Manager: Portage-2.3.36, Repoman-2.3.9 net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild | 69 +++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild new file mode 100644 index 00000000000..6b83d1c27fd --- /dev/null +++ b/net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit readme.gentoo-r1 systemd + +DESCRIPTION="Tools to ease the deployment of DNSSEC related technologies" +HOMEPAGE="https://www.dnssec-tools.org/" +SRC_URI="https://www.dnssec-tools.org/download/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +RDEPEND=" + dev-lang/perl + dev-perl/Crypt-OpenSSL-Random + dev-perl/Getopt-GUI-Long + dev-perl/GraphViz + dev-perl/MailTools + dev-perl/Net-DNS + dev-perl/Net-DNS-SEC + dev-perl/XML-Simple" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${PN}-2.0-dtinitconf.patch ) + +src_prepare() { + default + sed -e '/^maninstall:/,+3s:$(MKPATH) $(mandir)/$(man1dir):$(MKPATH) $(DESTDIR)/$(mandir)/$(man1dir):' \ + -i Makefile.in || die + sed -e 's:/usr/local/etc:/etc:g' \ + -e 's:/usr/local:/usr:g' \ + -i tools/donuts/donuts \ + -i tools/etc/dnssec-tools/dnssec-tools.conf \ + -i tools/scripts/genkrf || die +} + +src_configure() { + econf \ + --disable-bind-checks \ + --without-validator \ + --with-perl-build-args=INSTALLDIRS=vendor \ + $(use_enable static-libs static) +} + +src_install() { + emake DESTDIR="${D}" install + + newinitd "${FILESDIR}"/rollerd.initd rollerd + newconfd "${FILESDIR}"/rollerd.confd rollerd + systemd_dounit "${FILESDIR}"/rollerd.service + + newinitd "${FILESDIR}"/donutsd.initd donutsd + newconfd "${FILESDIR}"/donutsd.confd donutsd + systemd_dounit "${FILESDIR}"/donutsd.service + + find "${ED}" -name "*.la" -delete || die + readme.gentoo_create_doc +} + +DISABLE_AUTOFORMATTING=1 +DOC_CONTENTS="Please run 'dtinitconf' in order to set up the required +/etc/dnssec-tools/dnssec-tools.conf file + +DNSSEC Validator has been split into net-dns/dnssec-validator +"