summaryrefslogtreecommitdiff
blob: 705f85ca8f08be4564253c56bd7348d10352f431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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.2 2003/10/27 10:27:45 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

}