diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-01-08 20:06:34 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-01-08 20:06:34 +0000 |
commit | 40bae0385aac51cbf214e1c6b5283970dce2693e (patch) | |
tree | e70194409d31bf147a401b5c5dc01f1ee1e11cab /app-forensics/sleuthkit | |
parent | Dont install init.d/conf.d files that are installed by openrc (diff) | |
download | gentoo-2-40bae0385aac51cbf214e1c6b5283970dce2693e.tar.gz gentoo-2-40bae0385aac51cbf214e1c6b5283970dce2693e.tar.bz2 gentoo-2-40bae0385aac51cbf214e1c6b5283970dce2693e.zip |
Small fixes
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'app-forensics/sleuthkit')
-rw-r--r-- | app-forensics/sleuthkit/ChangeLog | 5 | ||||
-rw-r--r-- | app-forensics/sleuthkit/sleuthkit-3.0.0.ebuild | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/app-forensics/sleuthkit/ChangeLog b/app-forensics/sleuthkit/ChangeLog index af2b4b6db741..9bc74d475304 100644 --- a/app-forensics/sleuthkit/ChangeLog +++ b/app-forensics/sleuthkit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-forensics/sleuthkit # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.34 2009/01/04 23:38:20 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.35 2009/01/08 20:06:34 patrick Exp $ + + 08 Jan 2009; Patrick Lauer <patrick@gentoo.org> sleuthkit-3.0.0.ebuild: + Small fixes *sleuthkit-3.0.0 (04 Jan 2009) diff --git a/app-forensics/sleuthkit/sleuthkit-3.0.0.ebuild b/app-forensics/sleuthkit/sleuthkit-3.0.0.ebuild index 1936e37b73c8..b85dba32956a 100644 --- a/app-forensics/sleuthkit/sleuthkit-3.0.0.ebuild +++ b/app-forensics/sleuthkit/sleuthkit-3.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.0.0.ebuild,v 1.1 2009/01/04 23:38:20 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.0.0.ebuild,v 1.2 2009/01/08 20:06:34 patrick Exp $ inherit eutils flag-o-matic autotools @@ -18,6 +18,8 @@ KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86" # aff? ( app-forensics/afflib )" RDEPEND="dev-perl/DateManip" +IUSE="" + src_unpack() { unpack "${A}" cd "${S}" @@ -26,12 +28,11 @@ src_unpack() { } src_compile() { - use hfs && append-flags "-DTSK_USE_HFS" econf || die "configure failed" emake || die "make failed" } src_install() { - emake install DESTDIR="${D}" + emake install DESTDIR="${D}" || die dodoc docs/*.txt README.txt CHANGES.txt TODO.txt } |