games-rpg/runescape-launcher: new ebuild, (binary) initial vn. 2.2.2
authorIan Delaney <idella4@gentoo.org>
Fri, 20 May 2016 13:20:52 +0000 (21:20 +0800)
committerIan Delaney <idella4@gentoo.org>
Fri, 20 May 2016 13:22:43 +0000 (21:22 +0800)
To be maintained by user Jack Coulter under the Proxy Maintainers Project
initial ebuild supplied as attachment via the gentoo bug.
This package required a new license, added under the group 'EULA'

Gnetoo-bug: #580486

Package-Manager: portage-2.3.0_rc1

games-rpg/runescape-launcher/Manifest [new file with mode: 0644]
games-rpg/runescape-launcher/metadata.xml [new file with mode: 0644]
games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild [new file with mode: 0644]

diff --git a/games-rpg/runescape-launcher/Manifest b/games-rpg/runescape-launcher/Manifest
new file mode 100644 (file)
index 0000000..9695dc1
--- /dev/null
@@ -0,0 +1 @@
+DIST runescape-launcher_2.2.2_amd64.deb 2069098 SHA256 d13051e277ad89b788252b08d4d2c7a3b060f87f41457232638d6f2b19b4cfe9 SHA512 be24aaf661fb89725c19675ea8626dc2cdac64254c7fd9e892b82e038033657dfd5dfc58537e5131fad524d11717e3b20cc824ced6e1940ce7925daaef043df5 WHIRLPOOL fca1fc4e5e0cabb3871290b8033342ba2e0d9e323038158ba9c5654113a248d90f5ca01d3394f0cd047e7c29f3593bbeba3ba0f3eb76d4a2c8d06d39104289aa
diff --git a/games-rpg/runescape-launcher/metadata.xml b/games-rpg/runescape-launcher/metadata.xml
new file mode 100644 (file)
index 0000000..d030cf3
--- /dev/null
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="person">
+               <email>jscinoz@jscinoz.so</email>
+               <name>Jack Coulter</name>
+       </maintainer>
+       <maintainer type="project">
+               <email>proxy-maint@gentoo.org</email>
+               <name>Proxy Maintainers</name>
+       </maintainer>
+</pkgmetadata>
diff --git a/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild b/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild
new file mode 100644 (file)
index 0000000..10267d6
--- /dev/null
@@ -0,0 +1,84 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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
+
+       # Add missing trailing semicolon to .desktop MimeType entry
+       sed -i '/MimeType=/{/;$/!{s/$/;/}}' usr/share/applications/${PN}.desktop
+
+       # Fix path to launcher script
+       sed -i "s:/usr/bin/$PN:/opt/bin/$PN:" usr/share/applications/${PN}.desktop
+
+       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
+}