diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-01-05 17:34:45 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-01-05 17:34:45 +0000 |
commit | 4fb366b14b72f6b721843b767ae63b7bf19c59ec (patch) | |
tree | 25375effb33efb2e6a3caa853ad313f9ddf05bec /app-forensics/foremost | |
parent | Stable for HPPA (bug #253663). (diff) | |
download | gentoo-2-4fb366b14b72f6b721843b767ae63b7bf19c59ec.tar.gz gentoo-2-4fb366b14b72f6b721843b767ae63b7bf19c59ec.tar.bz2 gentoo-2-4fb366b14b72f6b721843b767ae63b7bf19c59ec.zip |
Bump to 1.5.5. SRC_URI changed to Sourceforge. Where did the manpagego to?
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'app-forensics/foremost')
-rw-r--r-- | app-forensics/foremost/ChangeLog | 10 | ||||
-rw-r--r-- | app-forensics/foremost/foremost-1.5.5.ebuild | 35 |
2 files changed, 43 insertions, 2 deletions
diff --git a/app-forensics/foremost/ChangeLog b/app-forensics/foremost/ChangeLog index 0f80efabaa66..364e44a3df9a 100644 --- a/app-forensics/foremost/ChangeLog +++ b/app-forensics/foremost/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-forensics/foremost -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/foremost/ChangeLog,v 1.12 2008/03/24 22:11:34 ikelos Exp $ +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/foremost/ChangeLog,v 1.13 2009/01/05 17:34:45 patrick Exp $ + +*foremost-1.5.5 (05 Jan 2009) + + 05 Jan 2009; Patrick Lauer <patrick@gentoo.org> +foremost-1.5.5.ebuild: + Bump to 1.5.5. SRC_URI changed to Sourceforge. Where did the manpage go + to? *foremost-1.5.3 (24 Mar 2008) diff --git a/app-forensics/foremost/foremost-1.5.5.ebuild b/app-forensics/foremost/foremost-1.5.5.ebuild new file mode 100644 index 000000000000..0276b4094a55 --- /dev/null +++ b/app-forensics/foremost/foremost-1.5.5.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/foremost/foremost-1.5.5.ebuild,v 1.1 2009/01/05 17:34:45 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" + +KEYWORDS="~ppc ~x86 ~amd64" +IUSE="" +LICENSE="public-domain" +SLOT="0" + +RDEPEND="virtual/libc" + +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 +} |