diff options
Diffstat (limited to 'dev-games/ps2-packer/ps2-packer-0.4.4.ebuild')
-rw-r--r-- | dev-games/ps2-packer/ps2-packer-0.4.4.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-games/ps2-packer/ps2-packer-0.4.4.ebuild b/dev-games/ps2-packer/ps2-packer-0.4.4.ebuild new file mode 100644 index 000000000000..4d5d1c4a76cc --- /dev/null +++ b/dev-games/ps2-packer/ps2-packer-0.4.4.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit games + +DESCRIPTION="another ELF packer for the PS2" +HOMEPAGE="https://github.com/ps2dev/ps2-packer" +SRC_URI="mirror://gentoo/${P}-linux.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="-* amd64 x86" +IUSE="" +RESTRICT="strip" + +QA_TEXTRELS=" + ${GAMES_PREFIX_OPT:1}/ps2-packer/n2e-packer.so + ${GAMES_PREFIX_OPT:1}/ps2-packer/n2d-packer.so + ${GAMES_PREFIX_OPT:1}/ps2-packer/n2b-packer.so" + +QA_WX_LOAD=" + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/n2e-0088-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/lzo-0088-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/n2e-asm-1d00-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/null-0088-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/n2e-asm-one-1d00-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/n2e-1d00-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/zlib-1d00-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/n2b-0088-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/n2d-1d00-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/null-1d00-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/n2b-1d00-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/zlib-0088-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/lzo-1d00-stub + ${GAMES_PREFIX_OPT:1}/ps2-packer/stub/n2d-0088-stub" + +RDEPEND="sys-libs/glibc" + +S=${WORKDIR} + +src_install() { + insinto "${GAMES_PREFIX_OPT}"/${PN} + doins -r README.txt stub + exeinto "${GAMES_PREFIX_OPT}"/${PN} + doexe *.so ps2-packer + games_make_wrapper ${PN} "${GAMES_PREFIX_OPT}"/${PN}/${PN} + prepgamesdirs +} |