diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2017-11-07 14:21:35 +0100 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2017-11-07 14:21:35 +0100 |
commit | d22c09edfa32fdd7f21c4690ce4fd3fafc9f6790 (patch) | |
tree | 6bdce588815d4474f54b48fa0ccdbc8afdfa30b5 /app-admin/lsat | |
parent | app-admin/lsat: Stable on amd64 (diff) | |
download | gentoo-d22c09edfa32fdd7f21c4690ce4fd3fafc9f6790.tar.gz gentoo-d22c09edfa32fdd7f21c4690ce4fd3fafc9f6790.tar.bz2 gentoo-d22c09edfa32fdd7f21c4690ce4fd3fafc9f6790.zip |
app-admin/lsat: Remove old
Package-Manager: Portage-2.3.12, Repoman-2.3.4
Diffstat (limited to 'app-admin/lsat')
-rw-r--r-- | app-admin/lsat/lsat-0.9.7.1-r1.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/app-admin/lsat/lsat-0.9.7.1-r1.ebuild b/app-admin/lsat/lsat-0.9.7.1-r1.ebuild deleted file mode 100644 index 2df288ba1a6e..000000000000 --- a/app-admin/lsat/lsat-0.9.7.1-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit eutils toolchain-funcs - -DESCRIPTION="The Linux Security Auditing Tool" -HOMEPAGE="http://usat.sourceforge.net/" -SRC_URI="http://usat.sourceforge.net/code/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="minimal" - -DEPEND="dev-lang/perl" # pod2man -RDEPEND="!minimal? ( - app-portage/portage-utils - net-analyzer/nmap - sys-apps/iproute2 - sys-apps/which - sys-process/lsof - )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-gentoo.patch - - # patch for segmentation fault see bug #184488 - epatch "${FILESDIR}"/${P}-segfault-fix.patch - sed -i Makefile.in \ - -e '/^LDFLAGS=/d' \ - -e '/^CFLAGS=/d' \ - || die "sed Makefile.in" -} - -src_compile() { - tc-export CC - econf - emake CFLAGS="${CFLAGS}" all manpage || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install installman || die "emake install failed" - dodoc README* *.txt - dohtml modules.html changelog/changelog.html -} |