1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-06 13:52:40 +01:00

- Add dev-util/radare2-0.9.7

This commit is contained in:
2014-08-02 23:27:26 +02:00
parent fcbf54a1bf
commit a55531aa44
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST radare2-0.9.7.tar.xz 2190916 SHA256 f4e88398487b6a24b10219908a4a4f71899989787a00d954f61f87be97d54d07 SHA512 b3879bba89aa2f0892f7c45fd9b6e3a655f3dc7a1c01895cd4f56ca6f8e804a5ba63becbbec8edd7ebaec05aab794ad7985abb800ad6b7e6cce3ec4fbcc3b470 WHIRLPOOL 8a0c72ab3d0c9e144760adbf8a67572bc46805b140e7c3fcdfe422005cade950c65ea1bd3b0efd653c96c2bdde07002d82e90da35304fa8ffcd81ace75c61361
EBUILD radare2-0.9.7.ebuild 727 SHA256 4f42bdfa07d26898260d256ddc8547c3adf352f710b8631583288edc3fc99d58 SHA512 8ab3030850b2bdcfb6fc0f50a5894dc4128a105a2eca0f1b3b46b3ad449f3aaccb29579461a4b61fa5c87de595d61611227714c9917bf0656c220181a4abc998 WHIRLPOOL 7151067ff2a59e81f9db075eadcbaa379d483b588d7957b4aea01ec6990b2fe5343ee71357f78c3e84f11783f2e00ad995b7c51cc8dc1cdfa75d67d38a13b5bf

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit base eutils
DESCRIPTION="Advanced command line hexadecimal editor and more"
HOMEPAGE="http://www.radare.org"
SRC_URI="http://www.radare.org/get/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug ewf gmp ssl"
RDEPEND="gmp? ( dev-libs/gmp:= )
ssl? ( dev-libs/openssl:= )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
econf $(use ssl || echo --without-ssl ) \
$(use gmp || echo --without-gmp ) \
$(use ewf || echo --without-ewf ) \
$(use debug || echo --without-debug )
}
src_install() {
emake DESTDIR="${D}" INSTALL_PROGRAM="install" install
}