blob: 6de95ec38d001f4ea92ad9022ce4627645eef9ce (
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
32
33
34
35
36
37
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/lsat/lsat-0.9.2.ebuild,v 1.1 2005/06/11 06:09:34 matsuu Exp $
inherit eutils
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/libc
dev-libs/popt"
DEPEND="${RDEPEND}
dev-lang/perl"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.patch
}
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
}
|