You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/lsat/lsat-0.9.5.ebuild

39 lines
836 B

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/lsat/lsat-0.9.5.ebuild,v 1.4 2007/05/03 18:58:57 beandog Exp $
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=""
RDEPEND="virtual/libc
dev-libs/popt"
DEPEND="${RDEPEND}
dev-lang/perl"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gentoo.patch
}
src_compile() {
tc-export CC
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
}