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

Collapse All | Expand All

(-)radare.orig/radare-1.5.2-r1.ebuild (-2 / +10 lines)
Lines 3-8 Link Here
3
# $Header: /var/cvsroot/gentoo-x86/dev-util/radare/radare-1.5.2-r1.ebuild,v 1.2 2011/03/23 06:20:21 ssuominen Exp $
3
# $Header: /var/cvsroot/gentoo-x86/dev-util/radare/radare-1.5.2-r1.ebuild,v 1.2 2011/03/23 06:20:21 ssuominen Exp $
4
4
5
EAPI="3"
5
EAPI="3"
6
PYTHON_DEPEND="*:2.6"
7
6
inherit base eutils
8
inherit base eutils
7
9
8
DESCRIPTION="Advanced command line hexadecimal editor and more"
10
DESCRIPTION="Advanced command line hexadecimal editor and more"
Lines 15-21 Link Here
15
IUSE="gui lua readline"
17
IUSE="gui lua readline"
16
18
17
RDEPEND="
19
RDEPEND="
18
	dev-lang/python
19
	dev-lang/perl
20
	dev-lang/perl
20
	gui? (
21
	gui? (
21
		x11-libs/gtk+:2
22
		x11-libs/gtk+:2
Lines 26-31 Link Here
26
	dev-util/pkgconfig
27
	dev-util/pkgconfig
27
	gui? ( >=dev-lang/vala-0.5:0.10 )"
28
	gui? ( >=dev-lang/vala-0.5:0.10 )"
28
29
30
31
pkg_setup() {
32
	python_set_active_version 2
33
	python_pkg_setup
34
}
35
29
src_prepare() {
36
src_prepare() {
30
	base_src_prepare
37
	base_src_prepare
31
	epatch "${FILESDIR}"/${PN}-1.5-ldflags.patch \
38
	epatch "${FILESDIR}"/${PN}-1.5-ldflags.patch \
Lines 42-50 Link Here
42
}
48
}
43
49
44
src_compile() {
50
src_compile() {
45
	emake -j1 || die "compile failed"
51
	emake || die "compile failed"
46
}
52
}
47
53
48
src_install() {
54
src_install() {
49
	emake DESTDIR="${ED}" install || die "install failed"
55
	emake DESTDIR="${ED}" install || die "install failed"
56
	python_convert_shebangs -r 2 "${ED}"
50
}
57
}

Return to bug 326113