diff options
author | Michael Palimaka <kensington@gentoo.org> | 2017-10-05 23:10:55 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-10-05 23:11:32 +1100 |
commit | a35bb4318245bba8ed4a16a9f7678f9bece8cfb9 (patch) | |
tree | bcaf40a79864f025a67d843beea36ed2b20e613c /games-emulation | |
parent | games-emulation/virtualjaguar: stabilise 2.1.2-r2 for amd64/x86 (diff) | |
download | gentoo-a35bb4318245bba8ed4a16a9f7678f9bece8cfb9.tar.gz gentoo-a35bb4318245bba8ed4a16a9f7678f9bece8cfb9.tar.bz2 gentoo-a35bb4318245bba8ed4a16a9f7678f9bece8cfb9.zip |
games-emulation/virtualjaguar: remove 2.1.2-r1
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/virtualjaguar/virtualjaguar-2.1.2-r1.ebuild | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/games-emulation/virtualjaguar/virtualjaguar-2.1.2-r1.ebuild b/games-emulation/virtualjaguar/virtualjaguar-2.1.2-r1.ebuild deleted file mode 100644 index 19d093aa8760..000000000000 --- a/games-emulation/virtualjaguar/virtualjaguar-2.1.2-r1.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils versionator qt4-r2 gnome2-utils toolchain-funcs games - -DESCRIPTION="an Atari Jaguar emulator" -HOMEPAGE="http://www.icculus.org/virtualjaguar/" -SRC_URI="http://www.icculus.org/virtualjaguar/tarballs/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="media-libs/libsdl[joystick,opengl,sound,video] - sys-libs/zlib - virtual/opengl - dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-qt/qtopengl:4[-egl] - dev-libs/libcdio" -DEPEND="${RDEPEND} - >=sys-devel/gcc-4.4" - -S=${WORKDIR}/${PN} - -pkg_pretend() { - local ver=4.4 - - if ! version_is_at_least ${ver} $(gcc-version); then - die "${PN} needs at least gcc ${ver} selected to compile." - fi -} - -src_prepare() { - sed -i \ - -e '/^Categories/s/$/;/' \ - virtualjaguar.desktop || die -} - -src_configure() { - eqmake4 virtualjaguar.pro -o makefile-qt -} - -src_compile() { - emake -j1 libs - emake -} - -src_install() { - dogamesbin ${PN} - dodoc README docs/{TODO,WHATSNEW} - doman docs/virtualjaguar.1 - domenu virtualjaguar.desktop - newicon -s 128 res/vj-icon.png ${PN}.png - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - elog "The ${PN} ROM path is no-longer hardcoded, " - elog "set it from within, the ${PN} GUI." - elog - elog "The ROM extension supported by ${PN} is .j64, " - elog ".jag files will be interpreted as Jaguar Server executables." - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} |