diff options
author | Hanno Böck <hanno@gentoo.org> | 2010-07-07 21:43:01 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2010-07-07 21:43:01 +0000 |
commit | 886a3f8afbe31550f1b346f60945643f6bcc0925 (patch) | |
tree | 13ff1dfa384d482af746ebf9a8d1794dfc4a9b2f /sys-fs/ext3grep | |
parent | Last rites for some gnustep packages, bugs #318137, #327371, #327389 (diff) | |
download | gentoo-2-886a3f8afbe31550f1b346f60945643f6bcc0925.tar.gz gentoo-2-886a3f8afbe31550f1b346f60945643f6bcc0925.tar.bz2 gentoo-2-886a3f8afbe31550f1b346f60945643f6bcc0925.zip |
ext3grep version bump
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs/ext3grep')
-rw-r--r-- | sys-fs/ext3grep/ChangeLog | 9 | ||||
-rw-r--r-- | sys-fs/ext3grep/ext3grep-0.10.2.ebuild | 25 |
2 files changed, 32 insertions, 2 deletions
diff --git a/sys-fs/ext3grep/ChangeLog b/sys-fs/ext3grep/ChangeLog index 50487a302ba5..49a1eebd30ff 100644 --- a/sys-fs/ext3grep/ChangeLog +++ b/sys-fs/ext3grep/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/ext3grep -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ext3grep/ChangeLog,v 1.2 2009/09/23 20:50:19 patrick Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ext3grep/ChangeLog,v 1.3 2010/07/07 21:43:01 hanno Exp $ + +*ext3grep-0.10.2 (07 Jul 2010) + + 07 Jul 2010; Hanno Boeck <hanno@gentoo.org> +ext3grep-0.10.2.ebuild: + Version bump. 23 Sep 2009; Patrick Lauer <patrick@gentoo.org> ext3grep-0.10.1.ebuild: Remove virtual/libc diff --git a/sys-fs/ext3grep/ext3grep-0.10.2.ebuild b/sys-fs/ext3grep/ext3grep-0.10.2.ebuild new file mode 100644 index 000000000000..71fd202b2c81 --- /dev/null +++ b/sys-fs/ext3grep/ext3grep-0.10.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ext3grep/ext3grep-0.10.2.ebuild,v 1.1 2010/07/07 21:43:01 hanno Exp $ + +EAPI=3 + +DESCRIPTION="Recover deleted files on an ext3 file system" +HOMEPAGE="http://code.google.com/p/ext3grep/" +SRC_URI="http://ext3grep.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug pch" +DEPEND="" + +src_configure() { + econf $(use_enable debug) \ + $(use_enable pch) || die "econd failed" +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc NEWS README || die +} |