1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-01-05 21:34:14 +01:00

new ebuilds: screenkey, ppsspp, azpainterb, primus, apktool

This commit is contained in:
root
2016-08-08 16:35:52 +02:00
parent 1f1ccf379d
commit 6847cc1089
14 changed files with 374 additions and 0 deletions

1
x11-misc/primus/Manifest Normal file
View File

@@ -0,0 +1 @@
EBUILD primus-20150328.ebuild 943 SHA256 bbe30e80f7bfd86cacfed97e6647d7144ce900d75ab2388bf73b57412decd114 SHA512 832cd17ec000727634185363d5259bd91d931539fbf4e9ea7b783ee757523dfb3309edeb2a8a99633661e503b714a6177077d8650937d3e37bc20edffc5ef41f WHIRLPOOL 436c036a059c3f67f89e452980b3064c2eedfc092a40ff6952209f41766ade3e1dc1ecf3fa669a644e24e4500a51495af5172896dd8418c6e8e53c97b3f313cb

View File

@@ -0,0 +1,41 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit multilib-build git-r3
DESCRIPTION="Faster OpenGL offloading for Bumblebee"
HOMEPAGE="https://github.com/amonakov/primus"
SRC_URI=""
EGIT_REPO_URI="git://github.com/amonakov/primus.git https://github.com/amonakov/primus.git"
EGIT_COMMIT="d1afbf6fce2778c0751eddf19db9882e04f18bfd"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND="x11-misc/bumblebee[video_cards_nvidia]
"
DEPEND="virtual/opengl"
src_compile() {
export PRIMUS_libGLa='/usr/$$LIB/opengl/nvidia/lib/libGL.so.1'
mymake() {
emake LIBDIR=$(get_libdir)
}
multilib_parallel_foreach_abi mymake
}
src_install() {
sed -i -e "s#^PRIMUS_libGL=.*#PRIMUS_libGL='/usr/\$LIB/primus'#" primusrun
dobin primusrun
myinst() {
insinto /usr/$(get_libdir)/primus
doins ${S}/$(get_libdir)/libGL.so.1
}
multilib_foreach_abi myinst
}