mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-19 21:31:10 +02:00
valabind: version bump
This commit is contained in:
parent
5a45a48574
commit
cdae414cf5
2 changed files with 41 additions and 0 deletions
|
|
@ -1,2 +1,4 @@
|
|||
DIST valabind-0.8.0.tar.gz 42151 SHA256 75c4ed49f1624d8dee75facd4067f0e7de60a477b47f7981c4d7921c65e06a5b SHA512 5f8ba59665df7e1a9f2e2ab21e9aa1d1aae977b4eedad2c46ebc5b246daace704ebc6d5f346d5e5a1540c115ba1c83dbb6b9e8fa994539e0f881bb5c7e414a23 WHIRLPOOL f0a0531d733240a93569779f2b2fa6221a7a822e94147dd8803d37232540c726aa12b88fe81a8dedc61a0b63b60c228298e5e002412278099945ac971aa592ac
|
||||
DIST valabind-0.9.0.tar.gz 50981 SHA256 9ea8c7fdf2aa41d235859f30d202dc58220f3040488a2b3ae0e45ee32fac9598 SHA512 9c730a5c843533680c061a5df060e08f06a52219a1893e80440fc9276bc250257810c934a2171d0bea025f79a06eaada71be8110d33fe137e99a6714320a76bd WHIRLPOOL 5b98ccf506e2cc80d0734cccb13a49e1d4448403b0dac3f16fcfef5290ee981b0755cc4fd9200326688fbf977d771abf171b88ee7e119c7727d861156bf36f2d
|
||||
EBUILD valabind-0.8.0.ebuild 960 SHA256 fd97fa8f2e3e57c41b6864c707a6702210ee06c40f21291bab613988b14bf195 SHA512 62ac1697390867d1eacd2511c82fb602bc9843066303f65a7d0702b45d977c8f6b79932073bbefbb1c003afd6810eb268930b7570337a9a43ced383cb996110b WHIRLPOOL 83aab986f2444eb9cf87e5fb48be129fb9dada421c2d2d29090391f6f2dce4e6176e3d358b25f0c82fa3ed561992c02145c84801b1a82854e24e733068717bfb
|
||||
EBUILD valabind-0.9.0.ebuild 960 SHA256 fd97fa8f2e3e57c41b6864c707a6702210ee06c40f21291bab613988b14bf195 SHA512 62ac1697390867d1eacd2511c82fb602bc9843066303f65a7d0702b45d977c8f6b79932073bbefbb1c003afd6810eb268930b7570337a9a43ced383cb996110b WHIRLPOOL 83aab986f2444eb9cf87e5fb48be129fb9dada421c2d2d29090391f6f2dce4e6176e3d358b25f0c82fa3ed561992c02145c84801b1a82854e24e733068717bfb
|
||||
|
|
|
|||
39
dev-util/valabind/valabind-0.9.0.ebuild
Normal file
39
dev-util/valabind/valabind-0.9.0.ebuild
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
VALA_MIN_API_VERSION=0.18
|
||||
VALA_USE_DEPEND=vapigen
|
||||
inherit vala
|
||||
|
||||
DESCRIPTION="Valabind is a tool to parse vala or vapi files to transform them into swig files"
|
||||
HOMEPAGE="https://github.com/radare/valabind"
|
||||
SRC_URI="https://github.com/radare/valabind/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-lang/vala
|
||||
dev-lang/swig"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
src_prepare() {
|
||||
#upstream smoked something here
|
||||
sed -i -e "s:^GIT_TIP:#GIT_TIP:" Makefile || die
|
||||
#they don't detect version properly either
|
||||
sed -i -e "s:=valac:=valac-$(vala_best_api_version):" Makefile || die
|
||||
sed -i -e "s:\$(shell ./getvv):libvala-$(vala_best_api_version):" Makefile || die
|
||||
}
|
||||
|
||||
#src_compile() {
|
||||
# emake -j1 || die "compile failed"
|
||||
#}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${ED}" install
|
||||
}
|
||||
Loading…
Reference in a new issue