diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 21:03:06 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 21:03:06 +0100 |
commit | 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 (patch) | |
tree | 7681bbd4e8b05407772df40a4bf04cbbc8afc3fa /games-action/phobiaii | |
parent | 30a9caf154332f12ca60756e1b75d2f0e3e1822d (diff) |
gentoo resync : 14.07.2018
Diffstat (limited to 'games-action/phobiaii')
-rw-r--r-- | games-action/phobiaii/Manifest | 3 | ||||
-rw-r--r-- | games-action/phobiaii/metadata.xml | 8 | ||||
-rw-r--r-- | games-action/phobiaii/phobiaii-1.1-r1.ebuild | 36 |
3 files changed, 47 insertions, 0 deletions
diff --git a/games-action/phobiaii/Manifest b/games-action/phobiaii/Manifest new file mode 100644 index 000000000000..bca4aa793750 --- /dev/null +++ b/games-action/phobiaii/Manifest @@ -0,0 +1,3 @@ +DIST linuxphobia-1.1-i386.tar.bz2 7709686 BLAKE2B 67325f1a8dd7b9e06c1c54866f2fbea4c032c069a595582a9ed720bd8d34deb312fd79a71c1d2c4233368d8d63904e7d86fbb7aa89ddf1c0f437d3e02d5bf773 SHA512 c8a799eb1e9b25781ef37487951b4213be29a60613bb2455df44e484e3553f153e5872aa97c70286eaf64ba78c621941318f702e5dc680a5442728866d2f7a1d +EBUILD phobiaii-1.1-r1.ebuild 968 BLAKE2B 20ad83937a34e9f34810806966882c8bc5535a6702448935f96994203c931eec2c9e1218989ee0adbb618d4936f4ac96f130e018130ad41fd641ae066cbc08a5 SHA512 b7ad3f9ef90c2e898d77391943d20b558081536e65d0aef6adb98c51e0176ec4a121653218ddfd82d9228bc4c1df854d72a7d6db692cc760475fddb71dd05d5d +MISC metadata.xml 249 BLAKE2B 7113a758d7abc93accec998a8843d8ef51ca8b72d72e659e224d5cec2a1a6a63e6c0605958091532ac6e51fa0d501ca4fd9f3f4a9e55baeb31519a02971b465f SHA512 895577c3a805c40581da03057b94e3f28f05f23012bf350c1e3575847d1a0fe40bb044a46f909012a200d991a400f6389358a60e9c2b5bef0da01fb26f846118 diff --git a/games-action/phobiaii/metadata.xml b/games-action/phobiaii/metadata.xml new file mode 100644 index 000000000000..78274e0fa550 --- /dev/null +++ b/games-action/phobiaii/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="project"> + <email>games@gentoo.org</email> + <name>Gentoo Games Project</name> +</maintainer> +</pkgmetadata> diff --git a/games-action/phobiaii/phobiaii-1.1-r1.ebuild b/games-action/phobiaii/phobiaii-1.1-r1.ebuild new file mode 100644 index 000000000000..4a1a879bf68a --- /dev/null +++ b/games-action/phobiaii/phobiaii-1.1-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils + +MY_P="linuxphobia-${PV}" +DESCRIPTION="Just a moment ago, you were safe inside your ship, behind five inch armour" +HOMEPAGE="http://www.lynxlabs.com/games/linuxphobia/index.html" +SRC_URI="http://www.lynxlabs.com/games/linuxphobia/${MY_P}-i386.tar.bz2" + +LICENSE="freedist" #505612 +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + media-libs/libsdl[abi_x86_32(-)] + media-libs/sdl-mixer[abi_x86_32(-)] + sys-libs/lib-compat" + +S=${WORKDIR}/${MY_P} + +QA_PRESTRIPPED="opt/phobiaii/linuxphobia" +QA_FLAGS_IGNORED="opt/phobiaii/linuxphobia" + +src_install() { + local dir=/opt/${PN} + make_wrapper phobiaII ./linuxphobia "${dir}" + newicon phobia2.ico ${PN}.ico + make_desktop_entry phobiaII "Phobia II" /usr/share/pixmaps/${PN}.ico + insinto "${dir}" + doins -r * + rm -rf "${D}/${dir}"/{*.desktop,*.sh,/pics/.xvpics} + fperms 775 "${dir}"/linuxphobia +} |