diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 20:58:29 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 20:58:29 +0100 |
commit | 0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch) | |
tree | 07815070629c7c11000a7f51ceb8ccbccb49a809 /games-fps/quake1-demodata | |
parent | 1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff) |
gentoo resync : 14.07.2018
Diffstat (limited to 'games-fps/quake1-demodata')
-rw-r--r-- | games-fps/quake1-demodata/Manifest | 3 | ||||
-rw-r--r-- | games-fps/quake1-demodata/metadata.xml | 8 | ||||
-rw-r--r-- | games-fps/quake1-demodata/quake1-demodata-1.06.ebuild | 81 |
3 files changed, 0 insertions, 92 deletions
diff --git a/games-fps/quake1-demodata/Manifest b/games-fps/quake1-demodata/Manifest deleted file mode 100644 index 42a818047274..000000000000 --- a/games-fps/quake1-demodata/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST quake106.zip 9094045 BLAKE2B 39d639a7c4daf48bacfed3d8f7488131cabd61eba3d1969b23958f4f35ac7f693a165500a4a1cf2b917bb8d363d360a402c7100ba8f6b7083c7eaba1fe16756a SHA512 8960c48d9c3c8bb142fd812968d29f05304384bd559b5cdb1d2cb8b6faac84d30ebf9cdf5e5e4eb3739907d9b599ca2ba34035647c58a8ed1874bdc7f0b75e1d -EBUILD quake1-demodata-1.06.ebuild 1649 BLAKE2B 0cb318c5343cec04bc601b03b08ce00c31f28ea67757e6ea066a1786b30399ebe0e5ad1f4df8ebb0f260b0d9fd63f204f5813676900cb93841022f73b3a787d7 SHA512 5e54e5e87fbe59ba0a08ffdeea300958ec4c7246fc984ef72e565028c328a4420ec4a51f55e181755e28a8f1572182a4a77badd225b04f45ca6b3dcafe88e98b -MISC metadata.xml 249 BLAKE2B 7113a758d7abc93accec998a8843d8ef51ca8b72d72e659e224d5cec2a1a6a63e6c0605958091532ac6e51fa0d501ca4fd9f3f4a9e55baeb31519a02971b465f SHA512 895577c3a805c40581da03057b94e3f28f05f23012bf350c1e3575847d1a0fe40bb044a46f909012a200d991a400f6389358a60e9c2b5bef0da01fb26f846118 diff --git a/games-fps/quake1-demodata/metadata.xml b/games-fps/quake1-demodata/metadata.xml deleted file mode 100644 index 78274e0fa550..000000000000 --- a/games-fps/quake1-demodata/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?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-fps/quake1-demodata/quake1-demodata-1.06.ebuild b/games-fps/quake1-demodata/quake1-demodata-1.06.ebuild deleted file mode 100644 index 7b8a34815e89..000000000000 --- a/games-fps/quake1-demodata/quake1-demodata-1.06.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils versionator games - -MY_PV=$(delete_all_version_separators) -MY_PN="quake" - -DESCRIPTION="Demo data for Quake 1" -HOMEPAGE="https://en.wikipedia.org/wiki/Quake_I" -SRC_URI="mirror://idsoftware/${MY_PN}/${MY_PN}${MY_PV}.zip" - -# See licinfo.txt -LICENSE="quake1-demodata" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="symlink" - -RDEPEND="" -DEPEND="app-arch/lha - app-arch/unzip" - -S=${WORKDIR} -dir=${GAMES_DATADIR}/${MY_PN}1 - -pkg_setup() { - games_pkg_setup - - if has_version "games-fps/quake1-data" ; then - ewarn "games-fps/quake1-data already includes the demo data," - ewarn "so this installation is not very useful." - echo - if use symlink ; then - eerror "The symlink for the demo data conflicts with the cdinstall data" - die "Remove the 'symlink' USE flag for this package" - fi - ebeep - epause - fi -} - -src_unpack() { - unpack ${A} - - # File rename for bug #159100 - mv resource.{1,x} - - lha xfq resource.x || die "lha failed" - # Don't want to conflict with the cdinstall files - mv id1 demo -} - -src_install() { - insinto "${dir}" - doins -r demo - - dodoc *.txt - - if use symlink ; then - # Make the demo the default, so that people can just run it, - # without having to mess with command-line options. - cd "${D}/${dir}" && ln -sfn demo id1 - fi - - prepgamesdirs -} - -pkg_postinst() { - games_pkg_postinst - - elog "This is just the demo data." - elog "You will still need a Quake 1 client, to play, such as darkplaces." - echo - - if use symlink ; then - elog "id1 has been symlinked to demo, for convenience, within:" - elog "${dir}" - echo - fi -} |