Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 311209 | Differences between
and this patch

Collapse All | Expand All

(-)afflib.orig/afflib-3.6.12.ebuild (-2 / +3 lines)
Lines 3-10 Link Here
3
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild,v 1.2 2011/07/24 18:23:44 armin76 Exp $
3
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild,v 1.2 2011/07/24 18:23:44 armin76 Exp $
4
4
5
EAPI="4"
5
EAPI="4"
6
PYTHON_DEPEND="2"
6
7
7
inherit eutils autotools
8
inherit eutils autotools python
9
PYTHON_DEPEND="3::3.2"
8
10
9
DESCRIPTION="Library that implements the AFF image standard"
11
DESCRIPTION="Library that implements the AFF image standard"
10
HOMEPAGE="http://www.afflib.org/"
12
HOMEPAGE="http://www.afflib.org/"
Lines 20-26 Link Here
20
	sys-libs/zlib
22
	sys-libs/zlib
21
	fuse? ( sys-fs/fuse )
23
	fuse? ( sys-fs/fuse )
22
	ncurses? ( sys-libs/ncurses )
24
	ncurses? ( sys-libs/ncurses )
23
	python? ( dev-lang/python )
24
	readline? ( sys-libs/readline )
25
	readline? ( sys-libs/readline )
25
	s3? ( net-misc/curl )"
26
	s3? ( net-misc/curl )"
26
DEPEND="${RDEPEND}"
27
DEPEND="${RDEPEND}"
(-)afflib.orig/afflib-3.6.8.ebuild (-6 / +11 lines)
Lines 2-8 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.8.ebuild,v 1.5 2011/10/11 17:10:05 jer Exp $
3
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.8.ebuild,v 1.5 2011/10/11 17:10:05 jer Exp $
4
4
5
inherit eutils
5
EAPI="4"
6
PYTHON_DEPEND="*::3.2"
7
8
inherit eutils python
6
9
7
DESCRIPTION="Library that implements the AFF image standard"
10
DESCRIPTION="Library that implements the AFF image standard"
8
HOMEPAGE="http://www.afflib.org/"
11
HOMEPAGE="http://www.afflib.org/"
Lines 17-30 Link Here
17
	ewf? ( app-forensics/libewf )
20
	ewf? ( app-forensics/libewf )
18
	fuse? ( sys-fs/fuse )
21
	fuse? ( sys-fs/fuse )
19
	ncurses? ( sys-libs/ncurses )
22
	ncurses? ( sys-libs/ncurses )
20
	python? ( dev-lang/python )
21
	readline? ( sys-libs/readline )
23
	readline? ( sys-libs/readline )
22
	s3? ( net-misc/curl dev-libs/expat )
24
	s3? ( net-misc/curl dev-libs/expat )
23
	sys-libs/zlib
25
	sys-libs/zlib
24
	dev-libs/openssl"
26
	dev-libs/openssl"
25
RDEPEND=${DEPEND}
27
RDEPEND=${DEPEND}
26
28
27
src_compile() {
29
src_configure() {
28
	econf \
30
	econf \
29
		$(use_enable fuse) \
31
		$(use_enable fuse) \
30
		$(use_enable ewf libewf) \
32
		$(use_enable ewf libewf) \
Lines 32-43 Link Here
32
		$(use_enable qemu) \
34
		$(use_enable qemu) \
33
		$(use_enable s3) \
35
		$(use_enable s3) \
34
		$(use_enable threads threading)
36
		$(use_enable threads threading)
35
	emake || die "build failed"
37
}
38
39
compile() {
40
	emake || die
36
}
41
}
37
42
38
src_install() {
43
src_install() {
39
	emake install DESTDIR="${D}" || die "install failed"
44
	emake install DESTDIR="${ED}"
40
	use s3 || {
45
	use s3 || {
41
		rm -f "${D}/usr/bin/s3"
46
		rm -f "${ED}/usr/bin/s3"
42
	}
47
	}
43
}
48
}

Return to bug 311209