diff options
author | Patrick Lauer <patrick@gentoo.org> | 2010-02-27 00:34:00 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2010-02-27 00:34:00 +0000 |
commit | cc33d743959c40606773d1f5ba7fb3ca42c0cee2 (patch) | |
tree | e464610e0b6bf89829e25e8254a65b36a66ae563 /app-forensics/samhain | |
parent | Bump (diff) | |
download | gentoo-2-cc33d743959c40606773d1f5ba7fb3ca42c0cee2.tar.gz gentoo-2-cc33d743959c40606773d1f5ba7fb3ca42c0cee2.tar.bz2 gentoo-2-cc33d743959c40606773d1f5ba7fb3ca42c0cee2.zip |
Fixing silly RESTRICT and patching Makefile
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'app-forensics/samhain')
-rw-r--r-- | app-forensics/samhain/ChangeLog | 5 | ||||
-rw-r--r-- | app-forensics/samhain/samhain-2.6.2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-forensics/samhain/ChangeLog b/app-forensics/samhain/ChangeLog index 85df8717fa57..956d43c76ec0 100644 --- a/app-forensics/samhain/ChangeLog +++ b/app-forensics/samhain/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-forensics/samhain # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/samhain/ChangeLog,v 1.15 2010/02/26 20:49:18 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-forensics/samhain/ChangeLog,v 1.16 2010/02/27 00:34:00 patrick Exp $ + + 27 Feb 2010; Patrick Lauer <patrick@gentoo.org> samhain-2.6.2.ebuild: + Fixing silly RESTRICT and patching Makefile *samhain-2.6.2 (26 Feb 2010) diff --git a/app-forensics/samhain/samhain-2.6.2.ebuild b/app-forensics/samhain/samhain-2.6.2.ebuild index bef6bdeffd39..676d1e993def 100644 --- a/app-forensics/samhain/samhain-2.6.2.ebuild +++ b/app-forensics/samhain/samhain-2.6.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/samhain/samhain-2.6.2.ebuild,v 1.1 2010/02/26 20:49:18 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-forensics/samhain/samhain-2.6.2.ebuild,v 1.2 2010/02/27 00:34:00 patrick Exp $ KEYWORDS="~amd64 ~x86" DESCRIPTION="Advanced file integrity and intrusion detection tool." @@ -10,8 +10,6 @@ LICENSE="GPL-2" SLOT="0" IUSE="crypt debug login-watch mounts-check mysql netclient netserver postgres prelude static suidcheck userfiles xml" -RESTRICT="strip" - DEPEND="crypt? ( >=app-crypt/gnupg-1.2 ) mysql? ( virtual/mysql ) postgres? ( >=virtual/postgresql-server-7.2 ) @@ -71,6 +69,8 @@ pkg_setup() { src_unpack() { unpack ${A} tar -xzf "samhain-${PV}.tar.gz" + cd ${S} + sed -i -e 's/INSTALL_PROGRAM = @INSTALL@ -s/INSTALL_PROGRAM = @INSTALL@/' Makefile.in || die "Failed to patch Makefile" } src_compile() { |