diff options
Diffstat (limited to 'games-misc/dont-starve/dont-starve-1.ebuild')
-rw-r--r-- | games-misc/dont-starve/dont-starve-1.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/games-misc/dont-starve/dont-starve-1.ebuild b/games-misc/dont-starve/dont-starve-1.ebuild deleted file mode 100644 index da8a8fe1b85d..000000000000 --- a/games-misc/dont-starve/dont-starve-1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/dont-starve/dont-starve-1.ebuild,v 1.2 2013/12/01 23:08:40 hasufell Exp $ - -EAPI=5 - -inherit eutils games - -DESCRIPTION="Wilderness survival game full of science and magic" -HOMEPAGE="http://www.dontstarvegame.com/" -SRC_URI="amd64? ( dontstarve_x64_1383879308.tar.gz ) - x86? ( dontstarve_x32_1383879308.tar.gz )" - -LICENSE="all-rights-reserved" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -RESTRICT="fetch bindist splitdebug" - -MYGAMEDIR=${GAMES_PREFIX_OPT}/${PN} -QA_PREBUILT="${MYGAMEDIR#/}/bin/dontstarve" -if [[ $ARCH == amd64 ]] ; then - QA_PREBUILT="${QA_PREBUILT} - ${MYGAMEDIR#/}/bin/lib64/*" -elif [[ ${ARCH} == x86 ]] ; then - QA_PREBUILT="${QA_PREBUILT} - ${MYGAMEDIR#/}/bin/lib32/*" -fi - -RDEPEND="net-misc/curl - virtual/opengl" - -S=${WORKDIR}/dontstarve - -pkg_nofetch() { - einfo - einfo "Please buy & download \"${SRC_URI}\" from:" - einfo " ${HOMEPAGE}" - einfo "and move/link it to \"${DISTDIR}\"" - einfo -} - -src_install() { - local libdir=lib$(usex amd64 "64" "32") - - insinto "${MYGAMEDIR}" - doins -r data mods - - exeinto "${MYGAMEDIR}"/bin - doexe bin/dontstarve - exeinto "${MYGAMEDIR}"/bin/${libdir} - doexe bin/${libdir}/libfmod* - # unbundling libsdl2 breaks the menu, so you cannot start the game - doexe bin/${libdir}/libSDL2* - - games_make_wrapper ${PN} "./dontstarve" "${MYGAMEDIR}/bin" "${MYGAMEDIR}/bin/${libdir}" - make_desktop_entry ${PN} - - doicon dontstarve.xpm - - prepgamesdirs -} |