blob: ebbb7b8f23fb84b70520a1d3fd3cf4ed0369de2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.3.4.ebuild,v 1.7 2011/07/24 18:23:44 armin76 Exp $
inherit eutils
DESCRIPTION="Library that implements the AFF image standard"
HOMEPAGE="http://www.afflib.org/"
SRC_URI="http://www.afflib.org/downloads/${P}.tar.gz"
LICENSE="BSD-4"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
IUSE="ewf fuse ncurses python qemu readline s3 threads"
DEPEND="
ewf? ( app-forensics/libewf )
fuse? ( sys-fs/fuse )
ncurses? ( sys-libs/ncurses )
python? ( dev-lang/python )
readline? ( sys-libs/readline )
s3? ( net-misc/curl dev-libs/expat )
sys-libs/zlib
dev-libs/openssl"
RDEPEND=${DEPEND}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-glibc-2.10.patch
}
src_compile() {
econf \
$(use_enable fuse) \
$(use_enable ewf libewf) \
$(use_enable python) \
$(use_enable qemu) \
$(use_enable s3) \
$(use_enable threads threading)
emake || die "build failed"
}
src_install() {
emake install DESTDIR="${D}" || die "install failed"
use s3 || {
rm -f "${D}/usr/bin/s3"
}
}
|