diff options
Diffstat (limited to 'app-forensics/yasat/yasat-700.ebuild')
-rw-r--r-- | app-forensics/yasat/yasat-700.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-forensics/yasat/yasat-700.ebuild b/app-forensics/yasat/yasat-700.ebuild new file mode 100644 index 000000000000..9cee894166c1 --- /dev/null +++ b/app-forensics/yasat/yasat-700.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/yasat/yasat-700.ebuild,v 1.1 2013/07/11 15:46:03 tomwij Exp $ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Security and system auditing tool" +HOMEPAGE="http://yasat.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" + +S=${WORKDIR}/${PN} + +src_prepare() { + epatch "${FILESDIR}"/${P}-remove-absent-tests.patch +} + +src_compile() { :; } + +src_install() { + emake install DESTDIR="${D}" PREFIX="/usr" SYSCONFDIR="/etc" + + dodoc README CHANGELOG + doman man/yasat.8 +} |