diff options
author | James Le Cuirot <chewi@gentoo.org> | 2020-12-10 17:29:36 +0000 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2020-12-10 17:29:36 +0000 |
commit | 377a4f55ca08275038f4314a852bb2cef9653886 (patch) | |
tree | 75de7f07b1b548ae7a1a85805748d6a75c61288d /games-rpg/dungeon-defenders/dungeon-defenders-20130305-r1.ebuild | |
parent | dev-php/pecl-apcu_bc: Drop 7.1 target; Update deps for unknown targets (diff) | |
download | gentoo-377a4f55ca08275038f4314a852bb2cef9653886.tar.gz gentoo-377a4f55ca08275038f4314a852bb2cef9653886.tar.bz2 gentoo-377a4f55ca08275038f4314a852bb2cef9653886.zip |
games-rpg/dungeon-defenders: Use system SDL2, no bundled libs, EAPI 7
This was packaged before SDL2 was released. The bundled version no
longer works properly for me so just drop the bundled-libs flag.
Package-Manager: Portage-3.0.12, Repoman-3.0.1
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-rpg/dungeon-defenders/dungeon-defenders-20130305-r1.ebuild')
-rw-r--r-- | games-rpg/dungeon-defenders/dungeon-defenders-20130305-r1.ebuild | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/games-rpg/dungeon-defenders/dungeon-defenders-20130305-r1.ebuild b/games-rpg/dungeon-defenders/dungeon-defenders-20130305-r1.ebuild new file mode 100644 index 000000000000..e6bbd621a3e8 --- /dev/null +++ b/games-rpg/dungeon-defenders/dungeon-defenders-20130305-r1.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit check-reqs desktop unpacker wrapper xdg + +TIMESTAMP="${PV:4:2}${PV:6:2}${PV:0:4}" +DESCRIPTION="A hybrid of two hot genres: Tower Defense and cooperative online Action-RPG" +HOMEPAGE="https://www.humblebundle.com/store/dungeon-defenders-collection" +SRC_URI="dundef-linux-${TIMESTAMP}.mojo.run" + +LICENSE="all-rights-reserved" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +RESTRICT="bindist fetch splitdebug" + +BDEPEND=" + app-arch/unzip +" +RDEPEND=" + media-libs/libsdl2[abi_x86_32,opengl,video] + media-libs/openal[abi_x86_32] + virtual/opengl[abi_x86_32] + x11-misc/xdg-utils +" + +DIR="/opt/${PN}" +QA_PREBUILT="${DIR#/}/*" + +CHECKREQS_DISK_BUILD="5916M" +S="${WORKDIR}/data" + +pkg_nofetch() { + einfo "Please buy and download ${SRC_URI} from:" + einfo " ${HOMEPAGE}" + einfo "and move it to your distfiles directory." +} + +src_unpack() { + unpack_zip ${A} +} + +src_prepare() { + default + + # https://bugzilla.icculus.org/show_bug.cgi?id=5894 + sed -i 's/LobbyLevel_Valentines2013\.udk/LobbyLevel.udk/' UDKGame/Config/DefaultDunDef.ini || die + + # Remove bundled binaries. + rm -v UDKGame/Binaries/{*.so*,xdg-open} || die +} + +src_install() { + # Move the data rather than copying. The game consumes over 5GB so a + # needless copy should really be avoided! + dodir "${DIR}" + mv -v Engine/ UDKGame/ "${ED}${DIR}" || die + + # Use system xdg-open script, location is hardcoded. + dosym ../../../../usr/bin/xdg-open "${DIR}"/UDKGame/Binaries/xdg-open + + make_wrapper ${PN} ./DungeonDefenders-x86 "${DIR}"/UDKGame/Binaries + newicon -s 48 DunDefIcon.png ${PN}.png + make_desktop_entry ${PN} "Dungeon Defenders" + + dodoc README-linux.txt +} |