summaryrefslogtreecommitdiff
blob: 7973f167078e73bb06e7d994b1d7a8739ba8ce98 (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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/rdd/rdd-2.0.7.ebuild,v 1.3 2011/03/27 10:35:16 nirbheek Exp $

EAPI="1"

inherit autotools

DESCRIPTION="Rdd is a forensic copy program"
HOMEPAGE="http://www.sf.net/projects/rdd"
SRC_URI="mirror://sourceforge/rdd/rdd-2.0.7.tar.gz"

KEYWORDS="~x86 ~amd64"
IUSE="debug rawio gtk"
LICENSE="BSD"
SLOT="0"

DEPEND="gtk? (	x11-libs/gtk+:2
		gnome-base/libglade:2.0 )"

RDEPEND="${DEPEND}"

src_unpack() {
	unpack ${A}
	cd "${S}"
	use gtk || sed -i 's/AM_PATH_GTK_2_0//' configure.ac
	AT_M4DIR=m4 eautoreconf
}

src_compile() {
	econf \
		$(use_enable debug tracing)\
		$(use_enable gtk gui)\
		$(use_enable rawio raw-device)
	emake
}

src_install() {
	# emake install has a sandbox violation in src/Makefile
	dobin src/rdd-copy
	dobin src/rdd-verify
	dobin src/rddi.py
	doman src/*.1
	dodoc doc/*.txt
	dosym rdd-copy /usr/bin/rdd
	dosym rddi.py /usr/bin/rddi
}