blob: bbafc66ebfeeb5cb63327bfa48f98973f3c82b2e (
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
50
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $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 $
EAPI="3"
inherit base eutils
DESCRIPTION="Advanced command line hexadecimal editor and more"
HOMEPAGE="http://www.radare.org"
SRC_URI="http://www.radare.org/get/radare-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="gui lua readline"
RDEPEND="
dev-lang/python
dev-lang/perl
gui? (
x11-libs/gtk+:2
x11-libs/vte:0 )
lua? ( dev-lang/lua )
readline? ( sys-libs/readline )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
gui? ( >=dev-lang/vala-0.5:0.10 )"
src_prepare() {
base_src_prepare
epatch "${FILESDIR}"/${PN}-1.5-ldflags.patch \
"${FILESDIR}"/${PN}-1.5-more-ldflags.patch \
# fix documentation installation
sed -i "s:doc/${PN}:doc/${PF}:g" \
Makefile.acr global.h.acr src/Makefile.acr wscript dist/maemo/Makefile
}
src_configure() {
VALAC=$(type -P valac-0.10) econf \
$(use_with readline) \
$(use_with gui)
}
src_compile() {
emake -j1 || die "compile failed"
}
src_install() {
emake DESTDIR="${ED}" install || die "install failed"
}
|