summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2004-01-11 01:10:46 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2004-01-11 01:10:46 +0000
commit2c4b7c0b1f2a438b7de10b58dd7f329d47db12c3 (patch)
tree840a80db55f1234c4e8547053871330cd7059ef6 /app-admin/lsat
parentVersion bumped (diff)
downloadgentoo-2-2c4b7c0b1f2a438b7de10b58dd7f329d47db12c3.tar.gz
gentoo-2-2c4b7c0b1f2a438b7de10b58dd7f329d47db12c3.tar.bz2
gentoo-2-2c4b7c0b1f2a438b7de10b58dd7f329d47db12c3.zip
Version bumped
Diffstat (limited to 'app-admin/lsat')
-rw-r--r--app-admin/lsat/ChangeLog9
-rw-r--r--app-admin/lsat/Manifest4
-rw-r--r--app-admin/lsat/files/digest-lsat-0.9.01
-rw-r--r--app-admin/lsat/lsat-0.9.0.ebuild31
4 files changed, 41 insertions, 4 deletions
diff --git a/app-admin/lsat/ChangeLog b/app-admin/lsat/ChangeLog
index d3a3686e69a6..75ce374e27e5 100644
--- a/app-admin/lsat/ChangeLog
+++ b/app-admin/lsat/ChangeLog
@@ -1,6 +1,11 @@
# 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.4 2003/11/02 00:35:34 matsuu Exp $
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/lsat/ChangeLog,v 1.5 2004/01/11 01:10:28 matsuu Exp $
+
+*lsat-0.9.0 (11 Jan 2004)
+
+ 11 Jan 2004; MATSUU Takuto <matsuu@gentoo.org> lsat-0.9.0.ebuild:
+ Version bumped. Added ~amd64 to KEYWORDS.
*lsat-0.8.8 (02 Nov 2003)
diff --git a/app-admin/lsat/Manifest b/app-admin/lsat/Manifest
index cec1047f88b5..8824801d9271 100644
--- a/app-admin/lsat/Manifest
+++ b/app-admin/lsat/Manifest
@@ -1,8 +1,8 @@
-MD5 b6bb1e038290b8c2fefa82bd7ef646ca ChangeLog 765
+MD5 2ac5beb9f97fa9345890481b827cbd60 ChangeLog 905
MD5 281d68f9a2d64dc220d451ca194b4bd6 lsat-0.8.1.ebuild 691
MD5 24ab4b927637b8cf4881de695d1d355b metadata.xml 505
MD5 ed575d0cdd43ba63b47a2abeabd8dbaf lsat-0.8.8.ebuild 732
-MD5 a9078e6737b0355e2386420eb6d71d2e lsat-0.9.0.ebuild 739
+MD5 c4970f961ba929091fdfd5b4af40f93b lsat-0.9.0.ebuild 739
MD5 dddbb8931b8f0694e9fc18660ee32957 files/digest-lsat-0.8.1 58
MD5 1ece52d641717216919734cc2d14ae21 files/digest-lsat-0.8.8 58
MD5 fd6ed97b538ace9614ec49bb7862ee3e files/digest-lsat-0.9.0 58
diff --git a/app-admin/lsat/files/digest-lsat-0.9.0 b/app-admin/lsat/files/digest-lsat-0.9.0
new file mode 100644
index 000000000000..cf7be4a7b14d
--- /dev/null
+++ b/app-admin/lsat/files/digest-lsat-0.9.0
@@ -0,0 +1 @@
+MD5 5ad46f15cff30f875a966b3aba3479f7 lsat-0.9.0.tgz 71128
diff --git a/app-admin/lsat/lsat-0.9.0.ebuild b/app-admin/lsat/lsat-0.9.0.ebuild
new file mode 100644
index 000000000000..f2911224e480
--- /dev/null
+++ b/app-admin/lsat/lsat-0.9.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/lsat/lsat-0.9.0.ebuild,v 1.1 2004/01/11 01:10:28 matsuu 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 ~ppc ~amd64"
+IUSE=""
+
+RDEPEND="virtual/glibc
+ dev-libs/popt"
+DEPEND="${RDEPEND}
+ dev-lang/perl"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+ econf || die
+ emake CFLAGS="${CFLAGS}" SLIBS="-lpopt" all manpage || die
+}
+
+src_install() {
+ dobin lsat || die
+ doman lsat.1
+ dodoc INSTALL README* *.txt
+ dohtml modules.html changelog/changelog.html
+}