diff options
Diffstat (limited to 'app-admin/lsat/lsat-0.9.0.ebuild')
-rw-r--r-- | app-admin/lsat/lsat-0.9.0.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
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 +} |