diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-12-21 20:47:17 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-12-21 20:47:17 +0000 |
commit | 4ab6db5717ef23f29320d4c6fb9ebdb8dec1f193 (patch) | |
tree | f7640b8b96a04499f1ce44a2cad122d45a8373bd /games-action/trine-bin | |
parent | 48bdeb0db9c7ffed22c6eb859ee40b55ba598b86 (diff) |
gentoo resync : 21.12.2017
Diffstat (limited to 'games-action/trine-bin')
-rw-r--r-- | games-action/trine-bin/Manifest | 1 | ||||
-rw-r--r-- | games-action/trine-bin/trine-bin-1.08.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/games-action/trine-bin/Manifest b/games-action/trine-bin/Manifest index cbceb0b6f079..c94e5079070a 100644 --- a/games-action/trine-bin/Manifest +++ b/games-action/trine-bin/Manifest @@ -1,4 +1,3 @@ DIST Trine.64.run 648471997 SHA256 1c9067cb19e3c954b460b4df27e6ca5d80b31c7ead49bd5779dcbce5528177db SHA512 400200a3ebc6003545df460f9a8af7fe4f6f370655432c66ca8a5ceb10e40bf205e81f70cfbe3fe7386de9ec0aeb5e23f02590776c2b0f35a32f9fbc1012ea3a WHIRLPOOL b6610f53e8e4079383de9a664b8cb019fbe9daa7cdbb204116c3e34b27327325dfdc39649185076524429f8ba2fc1a0889f9006e6873db65c3f73784f440e1e9 EBUILD trine-bin-1.08-r1.ebuild 1625 BLAKE2B 4a666d9cb47809ac783efffbb7ccd6b41151b441cfa95d29ff25f293e6a1579c8afb8cf68d59404cd6983142077723227eb2424f09fad976fc6ca5a6ece6b158 SHA512 a5af36f86b67b8f70fc0e68e2bdfc2ba046b55b76787e67ab31074d2bd3f6213d543e21db027cf738793d351270a8dc8c2f31420c7f1ce444a65302bef30fe9b -EBUILD trine-bin-1.08.ebuild 1659 BLAKE2B bec557808e25da8fcce681ad73cb02bf62f622eeb15aabbe2de24b443ff11264c736bf22ce24a7282348376e1529419fed8351eacea1ef25ab82555dc2d70f6b SHA512 08bbd25f90b6583965c66a08dafc19d87d3830c408554670f70db3864845cb152ce145acff569c5eceabc62cb4d81b118adac0bd517cac8717da8fa4950afb67 MISC metadata.xml 249 BLAKE2B 7113a758d7abc93accec998a8843d8ef51ca8b72d72e659e224d5cec2a1a6a63e6c0605958091532ac6e51fa0d501ca4fd9f3f4a9e55baeb31519a02971b465f SHA512 895577c3a805c40581da03057b94e3f28f05f23012bf350c1e3575847d1a0fe40bb044a46f909012a200d991a400f6389358a60e9c2b5bef0da01fb26f846118 diff --git a/games-action/trine-bin/trine-bin-1.08.ebuild b/games-action/trine-bin/trine-bin-1.08.ebuild deleted file mode 100644 index 0a3658bb2562..000000000000 --- a/games-action/trine-bin/trine-bin-1.08.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -# these are ELFs that include a ZIP (504b0304) appended to it -# dd if=Trine.64.run of=Trine.64.zip ibs=$((0x342a8)) skip=1 -# dd if=Trine.32.run of=Trine.32.zip ibs=$((0x31c24)) skip=1 -# but `unzip` will skip the ELF at the start. both ELFs contain -# the same zip appended, so only need to hash one of them. - -EAPI=5 -inherit unpacker eutils games - -DESCRIPTION="A physics-based action game with character-dependent solutions to challenges" -HOMEPAGE="http://trine-thegame.com/" -SRC_URI="Trine.64.run" - -LICENSE="frozenbyte-eula" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86" -IUSE="" -RESTRICT="fetch strip" - -DEPEND="app-arch/unzip" -RDEPEND=">=sys-libs/glibc-2.4 - >=sys-devel/gcc-4.3.0 - dev-libs/libx86 - gnome-base/libglade" - -S=${WORKDIR} - -d=${GAMES_PREFIX_OPT}/${PN} -QA_PREBUILT="${d#/}/trine-launcher ${d#/}/trine-bin ${d#/}/lib*/lib*.so*" - -pkg_nofetch() { - einfo "Fetch ${SRC_URI} and put it into ${DISTDIR}" - einfo "See http://www.humblebundle.com/ for more info." -} - -src_unpack() { - # manually run unzip as the initial seek causes it to exit(1) - unpack_zip ${A} - rm lib*/lib{gcc_s,m,rt,selinux}.so.? -} - -src_install() { - local b bb - local sfx=$(usex x86 32 64) - - doicon Trine.xpm - for b in bin launcher ; do - bb="trine-${b}" - exeinto ${d} - newexe ${bb}${sfx} ${bb} - games_make_wrapper ${bb} "./${bb}" "${d}" - make_desktop_entry ${bb} "Trine ${b}" Trine - done - - exeinto ${d}/lib${sfx} - doexe lib${sfx}/* - - insinto ${d} - doins -r binds config data dev profiles *.fbz *.glade trine-logo.png - - dodoc Trine_Manual_linux.pdf Trine_updates.txt - - prepgamesdirs -} |