From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7BF1913826A for ; Tue, 24 May 2016 19:28:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4240F21C028; Tue, 24 May 2016 19:28:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8DBC21C028 for ; Tue, 24 May 2016 19:28:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EDC3F340CCF for ; Tue, 24 May 2016 19:28:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B86D7968 for ; Tue, 24 May 2016 19:28:09 +0000 (UTC) From: "Michael Weber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Weber" Message-ID: <1464118082.4be5d5a2bea026d64eae4170c4f54a62c15c2075.xmw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ndisc6/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/ndisc6/ndisc6-1.0.2-r1.ebuild X-VCS-Directories: net-misc/ndisc6/ X-VCS-Committer: xmw X-VCS-Committer-Name: Michael Weber X-VCS-Revision: 4be5d5a2bea026d64eae4170c4f54a62c15c2075 X-VCS-Branch: master Date: Tue, 24 May 2016 19:28:09 +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: 5bca9243-4421-4e16-971d-8d264bf09113 X-Archives-Hash: eeb37287d7fe8cbf4f1a523d201102a5 commit: 4be5d5a2bea026d64eae4170c4f54a62c15c2075 Author: Michael Weber gentoo org> AuthorDate: Tue May 24 19:27:05 2016 +0000 Commit: Michael Weber gentoo org> CommitDate: Tue May 24 19:28:02 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4be5d5a2 net-misc/ndisc6: remove debug output with USE=-debug (bug 583826, thanks David Klaftenegger). Package-Manager: portage-2.2.28 net-misc/ndisc6/ndisc6-1.0.2-r1.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/net-misc/ndisc6/ndisc6-1.0.2-r1.ebuild b/net-misc/ndisc6/ndisc6-1.0.2-r1.ebuild new file mode 100644 index 0000000..fe41f0c --- /dev/null +++ b/net-misc/ndisc6/ndisc6-1.0.2-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="Recursive DNS Servers discovery Daemon (rdnssd) for IPv6" +HOMEPAGE="http://www.remlab.net/ndisc6/" +SRC_URI="http://www.remlab.net/files/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="debug" + +DEPEND="dev-lang/perl + sys-devel/gettext" +RDEPEND="" + +src_configure() { + econf $(use_enable debug assert) +} + +src_install() { + emake DESTDIR="${D}" install || die + newinitd "${FILESDIR}"/rdnssd.rc-1 rdnssd || die + newconfd "${FILESDIR}"/rdnssd.conf rdnssd || die + exeinto /etc/rdnssd + newexe "${FILESDIR}"/resolvconf-1 resolvconf || die + dodoc AUTHORS ChangeLog NEWS README || die +}