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 529D31382C5 for ; Sun, 21 Jun 2020 18:49:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6184E08C8; Sun, 21 Jun 2020 18:49:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 CD5BEE08C8 for ; Sun, 21 Jun 2020 18:49:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9E6A934FEA9 for ; Sun, 21 Jun 2020 18:49:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B55692AB for ; Sun, 21 Jun 2020 18:49:42 +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: <1592765260.15c5ce385b135d4dfb5b1883510450f2df9fcbe8.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/knock/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/knock/knock-0.7.ebuild X-VCS-Directories: net-misc/knock/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 15c5ce385b135d4dfb5b1883510450f2df9fcbe8 X-VCS-Branch: master Date: Sun, 21 Jun 2020 18:49:42 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 83b14a39-ea4c-4a01-bc00-3d7a94f655a8 X-Archives-Hash: f64cde160bb284013cad2f3d6941eb2e commit: 15c5ce385b135d4dfb5b1883510450f2df9fcbe8 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 21 18:47:40 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 21 18:47:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15c5ce38 net-misc/knock: Drop 0.7 (r0) Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> net-misc/knock/knock-0.7.ebuild | 46 ----------------------------------------- 1 file changed, 46 deletions(-) diff --git a/net-misc/knock/knock-0.7.ebuild b/net-misc/knock/knock-0.7.ebuild deleted file mode 100644 index 2b61ae365f3..00000000000 --- a/net-misc/knock/knock-0.7.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -DESCRIPTION="A simple port-knocking daemon" -HOMEPAGE="http://www.zeroflux.org/projects/knock" -SRC_URI="http://www.zeroflux.org/proj/knock/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" -IUSE="+server" - -DEPEND="server? ( net-libs/libpcap )" -RDEPEND="${DEPEND}" - -src_prepare() { - sed -e "/^AM_CFLAGS/s: -g : :" \ - -e "/dist_doc_DATA/s:COPYING::" \ - -i Makefile.in || die - sed -e "s:/usr/sbin/iptables:/sbin/iptables:g" \ - -i knockd.conf || die -} - -src_configure() { - econf $(use_enable server knockd) -} - -src_install() { - emake DESTDIR="${D}" docdir="${EROOT}/usr/share/doc/${PF}" install - - if use server ; then - newinitd "${FILESDIR}"/knockd.initd.2 knock - newconfd "${FILESDIR}"/knockd.confd.2 knock - fi -} - -pkg_postinst() { - if use server && ! has_version net-firewall/iptables ; then - einfo - elog "You're really encouraged to install net-firewall/iptables to" - elog "actually modify your firewall and use the example configuration." - einfo - fi -}