diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:32 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:55:07 +0100 |
commit | 5148c03f7fb40bf10bf8359cb239f31997ecb3c7 (patch) | |
tree | 376ecebd83435ed7f67020dc1cb416f4fbf520a7 /games-strategy | |
parent | games-strategy/darwinia-demo: Remove old (diff) | |
download | gentoo-5148c03f7fb40bf10bf8359cb239f31997ecb3c7.tar.gz gentoo-5148c03f7fb40bf10bf8359cb239f31997ecb3c7.tar.bz2 gentoo-5148c03f7fb40bf10bf8359cb239f31997ecb3c7.zip |
games-strategy/defcon-demo: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/defcon-demo/defcon-demo-1.60.ebuild | 98 |
1 files changed, 0 insertions, 98 deletions
diff --git a/games-strategy/defcon-demo/defcon-demo-1.60.ebuild b/games-strategy/defcon-demo/defcon-demo-1.60.ebuild deleted file mode 100644 index 8dde409344d1..000000000000 --- a/games-strategy/defcon-demo/defcon-demo-1.60.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils toolchain-funcs gnome2-utils games - -MY_PN=defcon -MY_PV=${PV:0:3} -MY_PVR=1 -MY_P=defcon_${MY_PV}-${MY_PVR} - -DESCRIPTION="Global thermonuclear war simulation with multiplayer support" -HOMEPAGE="http://www.introversion.co.uk/defcon/" -SRC_URI="x86? ( http://www.introversion.co.uk/defcon/downloads/${MY_P}_i386.deb ) - amd64? ( http://www.introversion.co.uk/defcon/downloads/${MY_P}_amd64.deb )" - -LICENSE="Introversion" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86" -IUSE="+system-libs" -RESTRICT="mirror strip" - -# glibc discussion: -# http://forums.introversion.co.uk/defcon/viewtopic.php?t=4016 -RDEPEND=" - media-libs/libogg - media-libs/libvorbis - >=sys-libs/glibc-2.3 - x11-libs/libX11 - x11-libs/libXau - x11-libs/libXext - x11-libs/libXdmcp - system-libs? ( media-libs/libsdl[sound,video] )" -DEPEND="" - -QA_PREBUILT="${GAMES_PREFIX_OPT:1}/${PN}/lib/${MY_PN}.bin.x86" - -S=${WORKDIR}/usr/local/games/${MY_PN} - -src_unpack() { - default - unpack ./data.tar.gz - - cd "${S}" || die - # maintain compatibility with old installation/script - [[ -e lib64 ]] && { mv lib64 lib || die ;} - [[ -e ${MY_PN}.bin.x86_64 ]] && { mv ${MY_PN}.bin.x86_64 ${MY_PN}.bin.x86 || die ;} -} - -src_prepare() { - # FindPath scripts are ugly and unnecessary - if use system-libs ; then - rm -f lib/lib* - fi - sed \ - -e "s:GAMEDIR:${GAMES_PREFIX_OPT}/${PN}:g" \ - "${FILESDIR}"/${MY_PN} > "${T}"/${MY_PN} || die - echo "int chdir(const char *d) { return 0; }" > chdir.c || die -} - -src_compile() { - echo "$(tc-getCC) ${CFLAGS} ${LDFLAGS} -fPIC -shared -o lib/chdir.so chdir.c" - $(tc-getCC) ${CFLAGS} ${LDFLAGS} -fPIC -shared -o lib/chdir.so chdir.c || die -} - -src_install() { - local dir=${GAMES_PREFIX_OPT}/${PN} - - insinto "${dir}/lib" - doins *.dat - - exeinto "${dir}"/lib - doexe lib/*.so - doexe ${MY_PN}.bin.x86 - - doicon -s 128 ${MY_PN}.png - - # Can be upgraded to full version, so is not installed as "demo" - dogamesbin "${T}"/${MY_PN} - make_desktop_entry ${MY_PN} "Defcon" - - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - gnome2_icon_cache_update - elog "Screenshots will appear in ~/.${MY_PN}/lib" -} - -pkg_postrm() { - gnome2_icon_cache_update -} |