diff options
author | Ioannis Aslanidis <deathwing00@gentoo.org> | 2009-02-12 14:00:05 +0000 |
---|---|---|
committer | Ioannis Aslanidis <deathwing00@gentoo.org> | 2009-02-12 14:00:05 +0000 |
commit | 53511446d610883f2286eb0cfc7cd81372dc440c (patch) | |
tree | 4eb6045a74df90d65ee70d0b0e6b39878d7262c7 /dev-util/radare/radare-1.2.1.ebuild | |
parent | renamed CVE patch to match the publication number - bug #257075 (diff) | |
download | gentoo-2-53511446d610883f2286eb0cfc7cd81372dc440c.tar.gz gentoo-2-53511446d610883f2286eb0cfc7cd81372dc440c.tar.bz2 gentoo-2-53511446d610883f2286eb0cfc7cd81372dc440c.zip |
Version bump. Several ebuild improvements and fixes.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/radare/radare-1.2.1.ebuild')
-rw-r--r-- | dev-util/radare/radare-1.2.1.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-util/radare/radare-1.2.1.ebuild b/dev-util/radare/radare-1.2.1.ebuild new file mode 100644 index 000000000000..5323a4ad2fe4 --- /dev/null +++ b/dev-util/radare/radare-1.2.1.ebuild @@ -0,0 +1,27 @@ +# 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.1.ebuild,v 1.1 2009/02/12 14:00:05 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" + +DEPEND="sys-libs/readline + dev-lang/python + " +RDEPEND="${DEPEND}" + +src_compile() { + econf $(use_with gui) || die "configure failed" + emake -j1 || die "compile failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" +} + |