Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-fps/doom-data/
Date: Sun, 29 Apr 2018 17:13:26
Message-Id: 1525021991.6ab29e7be35fd3cf5c6e4885aa2f1e4f896ed9c5.pacho@gentoo
1 commit: 6ab29e7be35fd3cf5c6e4885aa2f1e4f896ed9c5
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 29 17:02:13 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 29 17:13:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ab29e7b
7
8 games-fps/doom-data: Drop old
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 games-fps/doom-data/doom-data-1-r1.ebuild | 43 -------------------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/games-fps/doom-data/doom-data-1-r1.ebuild b/games-fps/doom-data/doom-data-1-r1.ebuild
16 deleted file mode 100644
17 index a17ee253c24..00000000000
18 --- a/games-fps/doom-data/doom-data-1-r1.ebuild
19 +++ /dev/null
20 @@ -1,43 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -inherit eutils games
26 -
27 -DESCRIPTION="collection of doom wad files from id"
28 -HOMEPAGE="http://www.idsoftware.com/"
29 -SRC_URI="mirror://gentoo/doom1.wad.bz2"
30 -
31 -LICENSE="freedist"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~arm ~x86"
34 -IUSE="doomsday"
35 -
36 -DEPEND="doomsday? ( games-fps/doomsday )
37 - !<=games-fps/freedoom-0.4.1"
38 -RDEPEND="${DEPEND}"
39 -
40 -S=${WORKDIR}
41 -
42 -src_install() {
43 - insinto "${GAMES_DATADIR}"/doom-data
44 - doins *.wad
45 - if use doomsday; then
46 - # Make wrapper for doomsday
47 - games_make_wrapper doomsday-demo "jdoom -file \
48 - ${GAMES_DATADIR}/doom-data/doom1.wad"
49 - make_desktop_entry doomsday-demo "Doomsday - Demo"
50 - fi
51 - prepgamesdirs
52 -}
53 -
54 -pkg_postinst() {
55 - games_pkg_postinst
56 - if use doomsday; then
57 - elog "To use the doomsday engine, run doomsday-demo"
58 - else
59 - elog "A Doom engine is required to play the wad"
60 - elog "Enable the doomsday use flag if you want to use"
61 - elog " the doomsday engine"
62 - fi
63 -}