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-analyzer/ippl/
Date: Sat, 18 Jan 2020 17:36:57
Message-Id: 1579368928.e246806e0d662a571929c46920fb5113dc4799fd.soap@gentoo
1 commit: e246806e0d662a571929c46920fb5113dc4799fd
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 18 17:35:28 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 18 17:35:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e246806e
7
8 net-analyzer/ippl: Remove old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 net-analyzer/ippl/ippl-1.4.14-r3.ebuild | 54 ---------------------------------
14 1 file changed, 54 deletions(-)
15
16 diff --git a/net-analyzer/ippl/ippl-1.4.14-r3.ebuild b/net-analyzer/ippl/ippl-1.4.14-r3.ebuild
17 deleted file mode 100644
18 index 9f807cd264a..00000000000
19 --- a/net-analyzer/ippl/ippl-1.4.14-r3.ebuild
20 +++ /dev/null
21 @@ -1,54 +0,0 @@
22 -# Copyright 1999-2013 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="4"
26 -
27 -inherit eutils toolchain-funcs user
28 -
29 -DESCRIPTION="A daemon which logs TCP/UDP/ICMP packets"
30 -HOMEPAGE="http://pltplp.net/ippl/"
31 -SRC_URI="http://pltplp.net/ippl/archive/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~ppc x86"
36 -IUSE=""
37 -
38 -DEPEND="virtual/yacc
39 - >=sys-devel/flex-2.5.4a-r4"
40 -RDEPEND=""
41 -
42 -src_prepare() {
43 - epatch \
44 - "${FILESDIR}"/ippl-1.4.14-noportresolve.patch \
45 - "${FILESDIR}"/ippl-1.4.14-manpage.patch \
46 - "${FILESDIR}"/ippl-1.4.14-privilege-drop.patch \
47 - "${FILESDIR}"/ippl-1.4.14-includes.patch
48 - sed -i Source/Makefile.in \
49 - -e 's|^LDFLAGS=|&@LDFLAGS@|g' \
50 - || die "sed Source/Makefile.in"
51 - sed -i Makefile.in \
52 - -e 's|make |$(MAKE) |g' \
53 - || die "sed Makefile.in"
54 - # fix for bug #351287
55 - sed -i -e '/lex.yy.c/s/ippl.l/& y.tab.c/' Source/Makefile.in \
56 - || die "sed src/Makefile.in"
57 - tc-export CC
58 -}
59 -
60 -src_install() {
61 - dosbin Source/ippl
62 -
63 - insinto "/etc"
64 - doins ippl.conf
65 -
66 - doman Docs/{ippl.8,ippl.conf.5}
67 -
68 - dodoc BUGS CREDITS HISTORY README TODO
69 -
70 - newinitd "${FILESDIR}"/ippl.rc ippl
71 -}
72 -
73 -pkg_postinst() {
74 - enewuser ippl
75 -}