summaryrefslogtreecommitdiff
path: root/app-admin/lsat/lsat-0.9.7.1-r2.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-admin/lsat/lsat-0.9.7.1-r2.ebuild
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-admin/lsat/lsat-0.9.7.1-r2.ebuild')
-rw-r--r--app-admin/lsat/lsat-0.9.7.1-r2.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/app-admin/lsat/lsat-0.9.7.1-r2.ebuild b/app-admin/lsat/lsat-0.9.7.1-r2.ebuild
deleted file mode 100644
index c1285e7e6de2..000000000000
--- a/app-admin/lsat/lsat-0.9.7.1-r2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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="
- ${DEPEND}
- !minimal? (
- app-portage/portage-utils
- net-analyzer/nmap
- sys-apps/iproute2
- sys-apps/which
- sys-process/lsof
- )"
-
-PATCHES=(
- "${FILESDIR}/${P}-gentoo.patch"
- "${FILESDIR}/${P}-segfault-fix.patch"
-)
-
-HTML_DOCS=( modules.html changelog/changelog.html )
-
-src_prepare() {
- default
-
- # patch for segmentation fault see bug #184488
- sed -i Makefile.in \
- -e '/^LDFLAGS=/d' \
- -e '/^CFLAGS=/d' \
- || die "sed Makefile.in"
-}
-
-src_compile() {
- tc-export CC
- emake CFLAGS="${CFLAGS}" all manpage
-}
-
-src_install() {
- emake DESTDIR="${D}" install installman
- dodoc README* *.txt
- einstalldocs
-}