mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-04 18:40:19 +02:00
27 lines
756 B
Bash
27 lines
756 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/radare/radare-1.2.2.ebuild,v 1.1 2009/03/20 16:28:46 deathwing00 Exp $
|
|
|
|
DESCRIPTION="Advanced command line hexadecimail editor and more"
|
|
HOMEPAGE="http://radare.nopcode.org"
|
|
SRC_URI="http://radare.nopcode.org/get/radare-${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE="+gui +java lua"
|
|
|
|
DEPEND="sys-libs/readline
|
|
dev-lang/python
|
|
gui? ( x11-libs/vte )
|
|
lua? ( dev-lang/lua )"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
econf --with-sysproxy $(use_with java) || die "configure failed"
|
|
emake || die "compile failed"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "install failed"
|
|
}
|