Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnids/
Date: Sun, 29 Nov 2020 09:56:32
Message-Id: 1606643733.848c47e37703c6bae0b7dec1030eeb907a635c8f.soap@gentoo
1 commit: 848c47e37703c6bae0b7dec1030eeb907a635c8f
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 29 09:55:33 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 09:55:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=848c47e3
7
8 net-libs/libnids: Remove old
9
10 Package-Manager: Portage-3.0.10, Repoman-3.0.2
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 net-libs/libnids/libnids-1.24-r6.ebuild | 53 ---------------------------------
14 1 file changed, 53 deletions(-)
15
16 diff --git a/net-libs/libnids/libnids-1.24-r6.ebuild b/net-libs/libnids/libnids-1.24-r6.ebuild
17 deleted file mode 100644
18 index d4a4fe94a92..00000000000
19 --- a/net-libs/libnids/libnids-1.24-r6.ebuild
20 +++ /dev/null
21 @@ -1,53 +0,0 @@
22 -# Copyright 1999-2015 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -inherit eutils flag-o-matic toolchain-funcs
27 -
28 -DESCRIPTION="an implementation of an E-component of Network Intrusion Detection System"
29 -HOMEPAGE="http://libnids.sourceforge.net/"
30 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="1.2"
34 -KEYWORDS="amd64 ppc x86"
35 -IUSE="+glib +libnet static-libs"
36 -
37 -RDEPEND="
38 - !net-libs/libnids:1.1
39 - glib? ( dev-libs/glib:2 )
40 - libnet? ( >=net-libs/libnet-1.1.0-r3 )
41 - net-libs/libpcap
42 -"
43 -DEPEND="
44 - ${RDEPEND}
45 - glib? ( virtual/pkgconfig )
46 -"
47 -
48 -src_prepare() {
49 - epatch "${FILESDIR}/${P}-ldflags.patch"
50 - epatch "${FILESDIR}/${P}-static-libs.patch"
51 -}
52 -
53 -src_configure() {
54 - tc-export AR
55 - append-flags -fno-strict-aliasing
56 -
57 - econf \
58 - --enable-shared \
59 - $(usex glib '' --disable-libglib) \
60 - $(use_enable libnet)
61 -}
62 -
63 -src_compile() {
64 - emake shared $(usex static-libs static '')
65 -}
66 -
67 -src_install() {
68 - local tgt
69 - for tgt in _installshared $(usex static-libs _install ''); do
70 - emake install_prefix="${D}" ${tgt}
71 - done
72 -
73 - dodoc CHANGES CREDITS MISC README doc/*
74 -}