radare2-bindings: ruby binding temp fix

This commit is contained in:
Anton Bolshakov 2015-06-11 13:25:15 +00:00
parent 6aa3759492
commit 27d1475812
2 changed files with 9 additions and 3 deletions

View file

@ -4,4 +4,4 @@ DIST radare2-bindings-0.9.9.tar.gz 734300 SHA256 edd1f171831088b042105f6df13c6c6
EBUILD radare2-bindings-0.9.7-r1.ebuild 1369 SHA256 6055c97c2ff773bea59222ad097330e4c01e5f89f5fc3e2bc49e7cda3224ffbd SHA512 60444c06d402fa59465e0139c828605c9d4691dc541ded98b9dbe46273b491ef35c71f79a2633b25683cb35663e2c0a3308bfce45e9f1c59865a5dba621fd319 WHIRLPOOL 09db581bbcb74e0d8f546b300900f73d8f23ec21fd74d78227625db2f29d23fa2ea442f9e7960dfc7ee5fdbf0b7d6158a0c3af7c1389fe91262e283dd5abef53
EBUILD radare2-bindings-0.9.7.ebuild 2202 SHA256 d353fe1f7e5bec8e2282203b4bb3152b321e58be88cd496eeca085088d45361f SHA512 454ed366a59742330225b15f9893a2320aa66e7174ad3d62b83d132a1f10eb064b069e7236797f64bc6342df0c617aaae2aa60c9a2908a3e77334008a69346b4 WHIRLPOOL c4d13e37b0ae6790023f443700d253bc6831fb0a4262cec8a602f66050af348819f9878b62e087648d942bea59c9c89a65346f9715fbccf16463ff59f668e837
EBUILD radare2-bindings-0.9.7_p20140722.ebuild 1382 SHA256 bb3da268aaf63e94d47b148724891e3ca10cf5d6a238876b9e8d48126a6a501a SHA512 0ec0e495042023569c7597bca06851f91258afaadfa8d38f6cd67229d83cc412e287bc5558c6a07d8be893ff128cfbbab7f0630f368ffc59c74069ece35625b5 WHIRLPOOL dea5cf6b967894ca9738081e8c485a8ec6dec92664a6419726230ca2a6e5c3e58af541ed3c610b167aeda73826c50f51e4f032287fd3d66523908c9dbd2b949c
EBUILD radare2-bindings-0.9.9.ebuild 1268 SHA256 1d599917de205e63cb278f0217676ac7bfdc93956ecd06d7d1d8bc9b75d3401a SHA512 4737a5c288d670af4d5f812ddf16cc006fe2d8dc2c582056f6673cf67452c06f59e0919f30589fc64bef9ef4d20091f20fdb77f8893dff92dc6f951c07ec8462 WHIRLPOOL 64f5bd2722a89dbe75683ac94ecbb714e493efd56e124477ab1d03fa33c208262161a90ef397dc07cc839823d275c21bfe9d7a03b37cdbc3179d321c32acfff3
EBUILD radare2-bindings-0.9.9-r1.ebuild 1407 SHA256 a5a51a9125c7deedf11810dc03321d447065d79abd690632dab87a10fcaa6d55 SHA512 1ffda6be91e62089ae5055090632e833d41ab8491ea6de4e2c2cda2885c1c1ef3a62874362ffc529ed98526fe389838b276dfe44344cc42167b703cbff0fecba WHIRLPOOL 1dc4f2edcb38131f4f46c5e0544691b7225cba127d5e3a318e3852a2896ecfa90bb8e71b602270d617e9544f5ba2627b878e94c91eb230f1be0e19f770f33524

View file

@ -1,4 +1,4 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@ -18,6 +18,8 @@ KEYWORDS="~x86 ~amd64"
#full set: "ctypes cxx guile java lua node-ffi perl php5 python ruby"
IUSE="ctypes cxx guile lua perl php5 python ruby"
#QA_MULTILIB_PATHS="usr/lib/ruby/1.9.1/r2/.*"
RDEPEND="
cxx? ( sys-devel/gcc[cxx] )
perl? ( dev-lang/perl )
@ -45,7 +47,7 @@ src_configure(){
use php5 && myconf="php"
# FIXME: add python support
for mylang in ctypes cxx guile lua perl python ruby ; do
for mylang in ctypes cxx guile lua perl python ruby; do
if use $mylang; then
[ -z "$myconf" ] || myconf+=","
myconf+="$mylang"
@ -55,3 +57,7 @@ src_configure(){
#not included languages are disabled
econf --enable="$myconf"
}
#src_install(){
# emake DESTDIR="${D}" LIBDIR="usr/$(get_libdir)" LIBPATH="test" install
#}