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 D8AD6138359 for ; Sun, 27 Sep 2020 13:30:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0A2CE080E; Sun, 27 Sep 2020 13:30:35 +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 B8911E080E for ; Sun, 27 Sep 2020 13:30:35 +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 52E7E335DB0 for ; Sun, 27 Sep 2020 13:30:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2E64339 for ; Sun, 27 Sep 2020 13:30:32 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1601213431.01662c892aee64170e8b344d96d279d4f70fa374.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/labrea/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/labrea/labrea-2.5_p1.ebuild X-VCS-Directories: net-analyzer/labrea/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 01662c892aee64170e8b344d96d279d4f70fa374 X-VCS-Branch: master Date: Sun, 27 Sep 2020 13:30:32 +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: da79ee32-cd61-49d7-9c45-1a0001fe4805 X-Archives-Hash: 85e8125f7c1f6d6757e5f50533a639bc commit: 01662c892aee64170e8b344d96d279d4f70fa374 Author: Jeroen Roovers gentoo org> AuthorDate: Sun Sep 27 13:24:53 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sun Sep 27 13:30:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01662c89 net-analyzer/labrea: Move INSTALL out of the way After running autoreconf, the INSTALL file will be magically replaced by the generic GNU version. Move it before calling eautoreconf. Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Jeroen Roovers gentoo.org> net-analyzer/labrea/labrea-2.5_p1.ebuild | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/net-analyzer/labrea/labrea-2.5_p1.ebuild b/net-analyzer/labrea/labrea-2.5_p1.ebuild new file mode 100644 index 00000000000..5c375b86225 --- /dev/null +++ b/net-analyzer/labrea/labrea-2.5_p1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools + +DESCRIPTION="'Sticky' Honeypot and IDS" +HOMEPAGE="http://labrea.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P/_p*}-stable-${PV/*_p}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND=" + net-libs/libpcap + >=dev-libs/libdnet-1.7 +" +RDEPEND=" + ${DEPEND} +" +DOCS=( AUTHORS ChangeLog README{,.first} TODO NEWS ) +PATCHES=( + "${FILESDIR}"/${P/_p/-stable-}-incdir.patch + "${FILESDIR}"/${P/_p*}-pcap_open.patch +) +S=${WORKDIR}/${P/_p/-stable-} + +src_prepare() { + default + + # autotools will overwrite this with the generic version + mv INSTALL README.first || die + + eautoreconf +} + +pkg_postinst() { + ewarn "Before using this package please read the README.first and README as" + ewarn "the author states that it can cause serious problems on your network" +}