summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2010-03-02 11:44:46 +0000
committerPatrick Lauer <patrick@gentoo.org>2010-03-02 11:44:46 +0000
commit80c25a17f81c8a969cd8520eed53e0668f180157 (patch)
tree97deb44ab682f52929fa5d5e1cabf2b2afd5ea30 /app-forensics/foremost
parentx86 stable wrt bug #303483 (diff)
downloadgentoo-2-80c25a17f81c8a969cd8520eed53e0668f180157.tar.gz
gentoo-2-80c25a17f81c8a969cd8520eed53e0668f180157.tar.bz2
gentoo-2-80c25a17f81c8a969cd8520eed53e0668f180157.zip
Bump for #307473
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'app-forensics/foremost')
-rw-r--r--app-forensics/foremost/ChangeLog9
-rw-r--r--app-forensics/foremost/foremost-1.5.7.ebuild35
2 files changed, 42 insertions, 2 deletions
diff --git a/app-forensics/foremost/ChangeLog b/app-forensics/foremost/ChangeLog
index 521117692ae7..abada3c04c96 100644
--- a/app-forensics/foremost/ChangeLog
+++ b/app-forensics/foremost/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-forensics/foremost
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/foremost/ChangeLog,v 1.19 2009/11/26 10:40:01 maekke Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/foremost/ChangeLog,v 1.20 2010/03/02 11:44:46 patrick Exp $
+
+*foremost-1.5.7 (02 Mar 2010)
+
+ 02 Mar 2010; Patrick Lauer <patrick@gentoo.org> +foremost-1.5.7.ebuild:
+ Bump for #307473
26 Nov 2009; Markus Meier <maekke@gentoo.org> foremost-0.69.ebuild:
add ~amd64, bug #286881
diff --git a/app-forensics/foremost/foremost-1.5.7.ebuild b/app-forensics/foremost/foremost-1.5.7.ebuild
new file mode 100644
index 000000000000..f0650c6c1bae
--- /dev/null
+++ b/app-forensics/foremost/foremost-1.5.7.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/foremost/foremost-1.5.7.ebuild,v 1.1 2010/03/02 11:44:46 patrick Exp $
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="A console program to recover files based on their headers and footers"
+HOMEPAGE="http://foremost.sourceforge.net/"
+#SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+# starting to hate sf.net ...
+SRC_URI="http://foremost.sourceforge.net/pkg/${P}.tar.gz"
+
+KEYWORDS="~ppc ~x86 ~amd64"
+IUSE=""
+LICENSE="public-domain"
+SLOT="0"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}/${PN}-1.4-config-location.patch"
+}
+
+src_compile() {
+ emake RAW_FLAGS="${CFLAGS} -Wall" RAW_CC="$(tc-getCC) -DVERSION=\\\"${PV}\\\"" \
+ CONF=/etc || die "emake failed"
+}
+
+src_install() {
+ dobin foremost
+ #doman foremost.1
+ insinto /etc
+ doins foremost.conf
+ dodoc README CHANGES
+}