summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2017-05-27 11:20:14 -0400
committerDavid Seifert <soap@gentoo.org>2017-06-01 09:09:53 +0200
commit03f20d7a7b3761e06c33c813050814694a4ebc42 (patch)
tree9fde383110b40481d92d2f2775a0cfad9e3599e3
parentgames-rpg/runescape-launcher: version bump 2.2.4 (diff)
downloadgentoo-03f20d7a7b3761e06c33c813050814694a4ebc42.tar.gz
gentoo-03f20d7a7b3761e06c33c813050814694a4ebc42.tar.bz2
gentoo-03f20d7a7b3761e06c33c813050814694a4ebc42.zip
games-rpg/runescape-launcher: Remove old
Package-Manager: Portage-2.3.5, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/4779
-rw-r--r--games-rpg/runescape-launcher/runescape-launcher-2.2.3.ebuild83
1 files changed, 0 insertions, 83 deletions
diff --git a/games-rpg/runescape-launcher/runescape-launcher-2.2.3.ebuild b/games-rpg/runescape-launcher/runescape-launcher-2.2.3.ebuild
deleted file mode 100644
index b1049fa39eea..000000000000
--- a/games-rpg/runescape-launcher/runescape-launcher-2.2.3.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit unpacker xdg gnome2-utils
-
-DESCRIPTION="Official RuneScape NXT client launcher"
-HOMEPAGE="http://www.runescape.com"
-
-SRC_URI="http://content.runescape.com/downloads/ubuntu/pool/non-free/r/${PN}/${PN}_${PV}_amd64.deb"
-
-QA_PREBUILT="/opt/runescape-launcher/runescape"
-
-SLOT="0"
-
-IUSE="kde"
-
-KEYWORDS="-* ~amd64"
-
-LICENSE="RuneScape-EULA"
-RESTRICT="bindist mirror strip"
-
-S="${WORKDIR}"
-
-RDEPEND="
- media-libs/libpng:1.2
- >=media-libs/libsdl2-2.0.2
- >=media-libs/glew-1.10.0:0/1.10
- >=media-libs/libvorbis-1.3.2
- >=net-libs/webkit-gtk-2.4.8:2
- >=net-misc/curl-7.35.0
-"
-
-src_prepare() {
- # Fix path in launcher script
- sed -i "s:/usr/share/games/$PN:/opt/$PN:" usr/bin/$PN || die
-
- # Add missing trailing semicolon to .desktop MimeType entry
- sed -i '/MimeType=/{/;$/!{s/$/;/}}' usr/share/applications/${PN}.desktop || die
-
- # Fix path to launcher script
- sed -i "s:/usr/bin/$PN:/opt/bin/$PN:" usr/share/applications/${PN}.desktop || die
-
- xdg_src_prepare
-
- eapply_user
-}
-
-src_install() {
- into /opt
- dobin usr/bin/$PN
- dodoc usr/share/doc/$PN/*
-
- exeinto /opt/$PN
- doexe usr/share/games/$PN/runescape
-
- insinto /usr/share/applications
- doins usr/share/applications/${PN}.desktop
-
- insinto /usr/share/icons
- doins -r usr/share/icons/hicolor
-
- if use kde ; then
- insinto /usr/share/kde4
- doins -r usr/share/kde4/services
- fi
-}
-
-pkg_preinst() {
- xdg_pkg_preinst
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- xdg_pkg_postinst
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- xdg_pkg_postrm
- gnome2_icon_cache_update
-}