Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/lsat/
Date: Tue, 07 Nov 2017 13:21:54
Message-Id: 1510060895.d22c09edfa32fdd7f21c4690ce4fd3fafc9f6790.mrueg@gentoo
1 commit: d22c09edfa32fdd7f21c4690ce4fd3fafc9f6790
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 7 13:21:35 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 7 13:21:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d22c09ed
7
8 app-admin/lsat: Remove old
9
10 Package-Manager: Portage-2.3.12, Repoman-2.3.4
11
12 app-admin/lsat/lsat-0.9.7.1-r1.ebuild | 47 -----------------------------------
13 1 file changed, 47 deletions(-)
14
15 diff --git a/app-admin/lsat/lsat-0.9.7.1-r1.ebuild b/app-admin/lsat/lsat-0.9.7.1-r1.ebuild
16 deleted file mode 100644
17 index 2df288ba1a6..00000000000
18 --- a/app-admin/lsat/lsat-0.9.7.1-r1.ebuild
19 +++ /dev/null
20 @@ -1,47 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -inherit eutils toolchain-funcs
25 -
26 -DESCRIPTION="The Linux Security Auditing Tool"
27 -HOMEPAGE="http://usat.sourceforge.net/"
28 -SRC_URI="http://usat.sourceforge.net/code/${P}.tgz"
29 -
30 -LICENSE="GPL-2"
31 -SLOT="0"
32 -KEYWORDS="amd64 ppc x86"
33 -IUSE="minimal"
34 -
35 -DEPEND="dev-lang/perl" # pod2man
36 -RDEPEND="!minimal? (
37 - app-portage/portage-utils
38 - net-analyzer/nmap
39 - sys-apps/iproute2
40 - sys-apps/which
41 - sys-process/lsof
42 - )"
43 -
44 -src_unpack() {
45 - unpack ${A}
46 - cd "${S}"
47 - epatch "${FILESDIR}"/${P}-gentoo.patch
48 -
49 - # patch for segmentation fault see bug #184488
50 - epatch "${FILESDIR}"/${P}-segfault-fix.patch
51 - sed -i Makefile.in \
52 - -e '/^LDFLAGS=/d' \
53 - -e '/^CFLAGS=/d' \
54 - || die "sed Makefile.in"
55 -}
56 -
57 -src_compile() {
58 - tc-export CC
59 - econf
60 - emake CFLAGS="${CFLAGS}" all manpage || die "emake failed"
61 -}
62 -
63 -src_install() {
64 - emake DESTDIR="${D}" install installman || die "emake install failed"
65 - dodoc README* *.txt
66 - dohtml modules.html changelog/changelog.html
67 -}