diff options
Diffstat (limited to 'games-fps/quake3-excessiveplus')
-rw-r--r-- | games-fps/quake3-excessiveplus/Manifest | 3 | ||||
-rw-r--r-- | games-fps/quake3-excessiveplus/metadata.xml | 20 | ||||
-rw-r--r-- | games-fps/quake3-excessiveplus/quake3-excessiveplus-2.3.ebuild | 22 |
3 files changed, 45 insertions, 0 deletions
diff --git a/games-fps/quake3-excessiveplus/Manifest b/games-fps/quake3-excessiveplus/Manifest new file mode 100644 index 000000000000..8af1764d4705 --- /dev/null +++ b/games-fps/quake3-excessiveplus/Manifest @@ -0,0 +1,3 @@ +DIST xp-2.3.zip 17266975 BLAKE2B e5cfaba73ac82316a3ba19b778b9c31da24dbffd0e76d2b14b6f3991285853a1f26d8473d78129d5bc4b77fac08b7b18da508dbd8ae610691487b9330b705d04 SHA512 80a8663c8d42139661ccd5333f9c543854ad82ae38f7838139c78413f7fa3e163c27a66aed4014e56ca756cabf2fd835179cba2336ada7158fdbde1e2841535b +EBUILD quake3-excessiveplus-2.3.ebuild 518 BLAKE2B 762790669935b626ba0d3aadcbdf2182d1150a716362c954ec717fb7f793605ae12519377f68d31ae225874aa8b0f9b00255042d2d07f33452e36b1208d0997c SHA512 55ea13902ac4cc764761003fe728f53f321b425d0d8265070c3db411e96ba0e3f1671c7124da35d72795d434768fe8afbf4aa1c803751831426e8b288ef8ff67 +MISC metadata.xml 800 BLAKE2B bd7941cbdea7443be6aa914a839100fa264f45fa69f848fe1d5985ae6241f03cbf8ca8f236a4022c94d56df9edf9d1593c3618ee9081ee1064d3a7791c269595 SHA512 4320259a818af53b8d6034ec82e6a329113365e0ca7e0465897fc8cef064089154e37db00a92b8c1ffbc53307f9ea6033ec002923e0b53b29672f1ee531b085f diff --git a/games-fps/quake3-excessiveplus/metadata.xml b/games-fps/quake3-excessiveplus/metadata.xml new file mode 100644 index 000000000000..dd6f510a8e43 --- /dev/null +++ b/games-fps/quake3-excessiveplus/metadata.xml @@ -0,0 +1,20 @@ +<?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> +<longdescription> +Excessive Plus is a Quake III Arena modification. It is a remake of the +ingenious Mr. Pants' Excessive Overkill for Quake III Arena +(www.planetquake.com/excessive/). + +Well, what's then the difference? +Excessive Plus can either be used server-side only but also as a client-server +mod which brings you tons of advantages. The whole mod is based on a scripting +engine which can be used to create your very own settings. It is fully +customizable with tons of options. Read the "docs/index.html" for more +information. +</longdescription> +</pkgmetadata> diff --git a/games-fps/quake3-excessiveplus/quake3-excessiveplus-2.3.ebuild b/games-fps/quake3-excessiveplus/quake3-excessiveplus-2.3.ebuild new file mode 100644 index 000000000000..ac2472d83781 --- /dev/null +++ b/games-fps/quake3-excessiveplus/quake3-excessiveplus-2.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +MOD_DESC="Makes the weapons much faster and stronger" +MOD_NAME="Excessive Plus" +MOD_DIR="excessiveplus" +MOD_ICON="excessiveplus.ico" + +inherit games games-mods + +HOMEPAGE="https://www.excessiveplus.net" +SRC_URI="https://www.excessiveplus.net/files/release/xp-${PV}.zip" + +LICENSE="all-rights-reserved" +KEYWORDS="~amd64 ~x86" +IUSE="dedicated opengl" + +src_prepare() { + rm -f *.bat + rm -rf ${MOD_DIR}/tools +} |