games-fps/freedoom-data: Drop old 0.11.3-r2
authorJames Le Cuirot <chewi@gentoo.org>
Sat, 12 Oct 2019 14:27:53 +0000 (15:27 +0100)
committerJames Le Cuirot <chewi@gentoo.org>
Sat, 12 Oct 2019 14:27:53 +0000 (15:27 +0100)
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
games-fps/freedoom-data/Manifest
games-fps/freedoom-data/files/ImageMagick/policy.xml [deleted file]
games-fps/freedoom-data/files/freedoom-data-0.11.3-Set-DOOMWADPATH.patch [deleted file]
games-fps/freedoom-data/freedoom-data-0.11.3-r2.ebuild [deleted file]

index faed28aff0401496e17599d3ed78c673969e2a60..e3e6ec23b70af3a846f610ff3646a5b24f493730 100644 (file)
@@ -1,2 +1 @@
-DIST freedoom-0.11.3.tar.gz 17010131 BLAKE2B a0b601575da8516cf9f83466fe2146b708aa3cb21a3df2f7cbcd018a560f65b9b89c85907115050c4985b64eff29a3a9d2cfb7d31e93043e9d3c35fe7749d749 SHA512 51e0d5f7ca7c846c556fcba36b0f9c815090bfc76a80200aebd1526291da16b71145fbe254100cc5ad37ffc044d4380ef07b8bd4bdb811f00b9150e7b34dd636
 DIST freedoom-0.12.0.tar.gz 18409554 BLAKE2B 01ae58c8edb12a8453f6026f09f45d54b19949d38f0668ddc6d4a6ee5fee4cc62c3926af0fb8e30e5f574b46ad1990fb20b57369821562851ae0cef0a6a5e5f1 SHA512 055cae8d16cc7ca2017eeabcaca9436da044def5f630ab46fb0c4cd7d36b9db3b416f9ddeb855e79f21f7c5337d25fb82625ac987712910daec448b49ef9c41e
diff --git a/games-fps/freedoom-data/files/ImageMagick/policy.xml b/games-fps/freedoom-data/files/ImageMagick/policy.xml
deleted file mode 100644 (file)
index ffacb92..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<policymap>
-  <policy domain="coder" rights="read | write" pattern="PS" />
-</policymap>
diff --git a/games-fps/freedoom-data/files/freedoom-data-0.11.3-Set-DOOMWADPATH.patch b/games-fps/freedoom-data/files/freedoom-data-0.11.3-Set-DOOMWADPATH.patch
deleted file mode 100644 (file)
index 0998cc4..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-From 19b8fe33843b1e431fb0737a57087f58c168952c Mon Sep 17 00:00:00 2001
-From: William Breathitt Gray <vilhelm.gray@gmail.com>
-Date: Fri, 6 Sep 2019 16:20:49 +0900
-Subject: [PATCH] dist/freedoom: Set DOOMWADPATH with sensible default value if
- unset
-
-Engines such as Odamex may not have a default search path and simply
-search for freedoom1.wad relative to the current directory. This can
-cause an unexpected WAD file not found error when executing the freedoom
-script.
-
-This issue is mitigated by setting a default DOOMWADPATH environment
-variable with sensible search paths, if it is not already set. All
-engines listed in the PORTS variable support the DOOMWADPATH environment
-variable, which makes it a simple and convenient way of helping prevent
-this error.
----
- dist/freedoom | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/dist/freedoom b/dist/freedoom
-index 62e3c4d5..0c0961a5 100755
---- a/dist/freedoom
-+++ b/dist/freedoom
-@@ -31,6 +31,10 @@ case "$(basename "$0")" in
-         ;;
- esac
-+if [ -z "$DOOMWADPATH" ]; then
-+    export DOOMWADPATH="/usr/share/doom:/usr/share/games/doom:/usr/local/share/doom:/usr/local/share/games/doom"
-+fi
-+
- if [ -z "$PORT" ] && [ -h "$HOME"/.doomport ]; then
-     if [ -f "$(readlink -f "$HOME"/.doomport)" ] \
-         && [ -x "$(readlink -f "$HOME"/.doomport)" ]; then
--- 
-2.23.0
-
diff --git a/games-fps/freedoom-data/freedoom-data-0.11.3-r2.ebuild b/games-fps/freedoom-data/freedoom-data-0.11.3-r2.ebuild
deleted file mode 100644 (file)
index ca3b54b..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
-
-inherit prefix python-any-r1 xdg
-
-DESCRIPTION="Game resources for Freedoom: Phase 1+2"
-HOMEPAGE="https://freedoom.github.io"
-SRC_URI="https://github.com/freedoom/freedoom/archive/v${PV}.tar.gz -> freedoom-${PV}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-
-BDEPEND="
-       $(python_gen_any_dep 'dev-python/pillow[${PYTHON_USEDEP}]')
-       app-text/asciidoc
-       games-util/deutex
-       virtual/imagemagick-tools[png]"
-
-S="${WORKDIR}/freedoom-${PV}"
-
-PATCHES="${FILESDIR}/${P}-Set-DOOMWADPATH.patch"
-
-DOOMWADPATH=share/doom
-
-python_check_deps() {
-       has_version -b "dev-python/pillow[${PYTHON_USEDEP}]"
-}
-
-src_prepare() {
-       # This is to enable usage of the 'PS' coder, which is
-       # disabled by default (https://bugs.gentoo.org/664236)
-       install -D -t ~/.config/ImageMagick "${FILESDIR}"/ImageMagick/policy.xml || die
-
-       xdg_src_prepare
-       eapply_user
-
-       hprefixify dist/freedoom
-}
-
-src_compile() {
-       emake wads/freedoom{1,2}.wad
-}
-
-src_install() {
-       emake install-freedoom{1,2} \
-               prefix="${ED}/usr/" \
-               bindir="bin/" \
-               mandir="share/man/" \
-               waddir="${DOOMWADPATH}/"
-}
-
-pkg_postinst() {
-       xdg_pkg_postinst
-
-       elog "Freedoom WAD files installed into ${EPREFIX}/usr/${DOOMWADPATH} directory."
-}