summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2003-09-18 12:35:56 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2003-09-18 12:35:56 +0000
commit439aa7cafd0111d1d3771645bdea16d84fb119a8 (patch)
treec1de4372dea03561e1237b82273b0dc26fa94e77 /app-admin/lsat
parentinitial import (diff)
downloadgentoo-2-439aa7cafd0111d1d3771645bdea16d84fb119a8.tar.gz
gentoo-2-439aa7cafd0111d1d3771645bdea16d84fb119a8.tar.bz2
gentoo-2-439aa7cafd0111d1d3771645bdea16d84fb119a8.zip
initial import
Diffstat (limited to 'app-admin/lsat')
-rw-r--r--app-admin/lsat/ChangeLog10
-rw-r--r--app-admin/lsat/Manifest3
-rw-r--r--app-admin/lsat/files/digest-lsat-0.8.11
-rw-r--r--app-admin/lsat/lsat-0.8.1.ebuild31
4 files changed, 44 insertions, 1 deletions
diff --git a/app-admin/lsat/ChangeLog b/app-admin/lsat/ChangeLog
new file mode 100644
index 000000000000..84a61e19c296
--- /dev/null
+++ b/app-admin/lsat/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for app-admin/lsat
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/lsat/ChangeLog,v 1.1 2003/09/18 12:35:52 aliz Exp $
+
+*lsat-0.8.1 (18 Sep 2003)
+
+ 18 Sep 2003; Daniel Ahlberg <aliz@gentoo.org> lsat-0.8.1.ebuild:
+ Initial import. Closing #6013. Ebuild contributed by Paul Belt <gaarde@yahoo.com> and
+ Matsuu Takuto <matsuu@gentoo.org.
+
diff --git a/app-admin/lsat/Manifest b/app-admin/lsat/Manifest
index bb27a87c6db4..436452eab512 100644
--- a/app-admin/lsat/Manifest
+++ b/app-admin/lsat/Manifest
@@ -1,2 +1,3 @@
-MD5 039c796fa2ea6634933e0e2315f1926c lsat-0.8.1.ebuild 599
+MD5 db1547b9b9eb43ac2512be4430cbbae9 lsat-0.8.1.ebuild 692
+MD5 305cb7b1735e8c9f376b16de08adea8b ChangeLog 427
MD5 dddbb8931b8f0694e9fc18660ee32957 files/digest-lsat-0.8.1 58
diff --git a/app-admin/lsat/files/digest-lsat-0.8.1 b/app-admin/lsat/files/digest-lsat-0.8.1
new file mode 100644
index 000000000000..99c2140609ad
--- /dev/null
+++ b/app-admin/lsat/files/digest-lsat-0.8.1
@@ -0,0 +1 @@
+MD5 14ffe29f893d8a25ae1cf275805f76db lsat-0.8.1.tgz 58416
diff --git a/app-admin/lsat/lsat-0.8.1.ebuild b/app-admin/lsat/lsat-0.8.1.ebuild
new file mode 100644
index 000000000000..f3cc6b460cb0
--- /dev/null
+++ b/app-admin/lsat/lsat-0.8.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/lsat/lsat-0.8.1.ebuild,v 1.1 2003/09/18 12:35:52 aliz Exp $
+
+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="~x86"
+IUSE=""
+
+RDEPEND="virtual/glibc"
+DEPEND="${RDEPEND}
+ dev-lang/perl"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+ econf || die
+ emake all manpage || die
+}
+
+src_install() {
+ dobin lsat
+ doman lsat.1
+ dodoc INSTALL README* changelog securitylinks.txt
+ dohtml modules.html changelog/changelog.html
+
+}