diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2004-01-11 01:10:46 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2004-01-11 01:10:46 +0000 |
commit | c267a6b92ba01ed9070bea1a23d72baed99f263a (patch) | |
tree | efbc923212f3af9f65f3f801de8e5ea4ceb6f6e7 /app-admin | |
parent | Version bumped (diff) | |
download | historical-c267a6b92ba01ed9070bea1a23d72baed99f263a.tar.gz historical-c267a6b92ba01ed9070bea1a23d72baed99f263a.tar.bz2 historical-c267a6b92ba01ed9070bea1a23d72baed99f263a.zip |
Version bumped
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/lsat/Manifest | 4 | ||||
-rw-r--r-- | app-admin/lsat/files/digest-lsat-0.9.0 | 1 | ||||
-rw-r--r-- | app-admin/lsat/lsat-0.9.0.ebuild | 31 |
3 files changed, 34 insertions, 2 deletions
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 +} |