Gentoo Archives: gentoo-commits

From: Naohiro Aota <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: sys-fs/extcarve/
Date: Mon, 28 Nov 2011 07:49:22
Message-Id: e7e6147c8a980468ac29ac171c9e2441625acda7.naota@gentoo
1 commit: e7e6147c8a980468ac29ac171c9e2441625acda7
2 Author: Naohiro Aota <naota <AT> elisp <DOT> net>
3 AuthorDate: Mon Nov 28 07:46:26 2011 +0000
4 Commit: Naohiro Aota <naota <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 28 07:46:26 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=e7e6147c
7
8 Version bumped.
9
10 (Portage version: 2.2.0_alpha75/git/Linux x86_64, signed Manifest commit with key F8551514)
11
12 ---
13 sys-fs/extcarve/ChangeLog | 5 ++++
14 sys-fs/extcarve/extcarve-1.3.ebuild | 36 +++++++++++++++++++++++++++++++++++
15 2 files changed, 41 insertions(+), 0 deletions(-)
16
17 diff --git a/sys-fs/extcarve/ChangeLog b/sys-fs/extcarve/ChangeLog
18 index 7c9fa66..d6acc2b 100644
19 --- a/sys-fs/extcarve/ChangeLog
20 +++ b/sys-fs/extcarve/ChangeLog
21 @@ -2,6 +2,11 @@
22 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
23 # $Header: $
24
25 +*extcarve-1.3 (28 Nov 2011)
26 +
27 + 28 Nov 2011; Naohiro Aota <naota@g.o> +extcarve-1.3.ebuild:
28 + Version bumped.
29 +
30 *extcarve-1.2 (10 Nov 2011)
31
32 10 Nov 2011; Naohiro Aota <naota@g.o> +extcarve-1.2.ebuild:
33
34 diff --git a/sys-fs/extcarve/extcarve-1.3.ebuild b/sys-fs/extcarve/extcarve-1.3.ebuild
35 new file mode 100644
36 index 0000000..f101d7f
37 --- /dev/null
38 +++ b/sys-fs/extcarve/extcarve-1.3.ebuild
39 @@ -0,0 +1,36 @@
40 +# Copyright 1999-2011 Gentoo Foundation
41 +# Distributed under the terms of the GNU General Public License v2
42 +# $Header: $
43 +
44 +EAPI=4
45 +
46 +inherit toolchain-funcs
47 +
48 +MY_P=${P/-/_}
49 +
50 +DESCRIPTION="Tool to recover deleted files"
51 +HOMEPAGE="http://www.giis.co.in/giis/"
52 +SRC_URI="http://www.giis.co.in/giis/${MY_P}.tar"
53 +
54 +LICENSE="GPL-3"
55 +SLOT="0"
56 +KEYWORDS="~amd64 ~x86"
57 +IUSE=""
58 +
59 +RDEPEND="sys-fs/e2fsprogs"
60 +DEPEND="${RDEPEND}
61 + dev-util/pkgconfig"
62 +
63 +src_prepare() {
64 + sed -i \
65 + -e '/^CFLAGS/d' \
66 + -e 's/LDFLAGS =/LDFLAGS +=/' \
67 + -e "s:gcc:$(tc-getCC):" \
68 + -e 's:$(LDFLAGS) src/extcarve.c:src/extcarve.c $(LDFLAGS):' \
69 + Makefile || die
70 +}
71 +
72 +src_install() {
73 + dobin extcarve
74 + dodoc README HOWTO_CUSTOMIZE
75 +}