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 345831382C5 for ; Sun, 29 Nov 2020 09:56:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34D7EE088B; Sun, 29 Nov 2020 09:56:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 1EE3FE088B for ; Sun, 29 Nov 2020 09:56:13 +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 38722340E78 for ; Sun, 29 Nov 2020 09:56:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E639C478 for ; Sun, 29 Nov 2020 09:56:08 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1606643733.848c47e37703c6bae0b7dec1030eeb907a635c8f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnids/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libnids/libnids-1.24-r6.ebuild X-VCS-Directories: net-libs/libnids/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 848c47e37703c6bae0b7dec1030eeb907a635c8f X-VCS-Branch: master Date: Sun, 29 Nov 2020 09:56:08 +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: 2588e812-19a4-438c-9163-0814463156e4 X-Archives-Hash: e3970b3301edb1cf6b17b440f5be4785 commit: 848c47e37703c6bae0b7dec1030eeb907a635c8f Author: David Seifert gentoo org> AuthorDate: Sun Nov 29 09:55:33 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Nov 29 09:55:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=848c47e3 net-libs/libnids: Remove old Package-Manager: Portage-3.0.10, Repoman-3.0.2 Signed-off-by: David Seifert gentoo.org> net-libs/libnids/libnids-1.24-r6.ebuild | 53 --------------------------------- 1 file changed, 53 deletions(-) diff --git a/net-libs/libnids/libnids-1.24-r6.ebuild b/net-libs/libnids/libnids-1.24-r6.ebuild deleted file mode 100644 index d4a4fe94a92..00000000000 --- a/net-libs/libnids/libnids-1.24-r6.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="an implementation of an E-component of Network Intrusion Detection System" -HOMEPAGE="http://libnids.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="1.2" -KEYWORDS="amd64 ppc x86" -IUSE="+glib +libnet static-libs" - -RDEPEND=" - !net-libs/libnids:1.1 - glib? ( dev-libs/glib:2 ) - libnet? ( >=net-libs/libnet-1.1.0-r3 ) - net-libs/libpcap -" -DEPEND=" - ${RDEPEND} - glib? ( virtual/pkgconfig ) -" - -src_prepare() { - epatch "${FILESDIR}/${P}-ldflags.patch" - epatch "${FILESDIR}/${P}-static-libs.patch" -} - -src_configure() { - tc-export AR - append-flags -fno-strict-aliasing - - econf \ - --enable-shared \ - $(usex glib '' --disable-libglib) \ - $(use_enable libnet) -} - -src_compile() { - emake shared $(usex static-libs static '') -} - -src_install() { - local tgt - for tgt in _installshared $(usex static-libs _install ''); do - emake install_prefix="${D}" ${tgt} - done - - dodoc CHANGES CREDITS MISC README doc/* -}