Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/openlierox/
Date: Sun, 29 Jan 2017 21:44:43
Message-Id: 1485726266.e2492750bb646daaf5c6aea958eb6ae543c3c8ac.soap@gentoo
1 commit: e2492750bb646daaf5c6aea958eb6ae543c3c8ac
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 21:44:26 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 21:44:26 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2492750
7
8 games-action/openlierox: Remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 games-action/openlierox/openlierox-0.58_rc3.ebuild | 72 ----------------------
13 1 file changed, 72 deletions(-)
14
15 diff --git a/games-action/openlierox/openlierox-0.58_rc3.ebuild b/games-action/openlierox/openlierox-0.58_rc3.ebuild
16 deleted file mode 100644
17 index 836a03b..00000000
18 --- a/games-action/openlierox/openlierox-0.58_rc3.ebuild
19 +++ /dev/null
20 @@ -1,72 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=4
26 -
27 -inherit cmake-utils eutils games
28 -
29 -MY_PN="OpenLieroX"
30 -MY_P="${MY_PN}_${PV}"
31 -DESCRIPTION="Real-time excessive Worms-clone"
32 -HOMEPAGE="http://openlierox.sourceforge.net/"
33 -SRC_URI="mirror://sourceforge/openlierox/${MY_P}.src.tar.bz2"
34 -
35 -LICENSE="LGPL-2"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~x86"
38 -IUSE="X breakpad debug joystick"
39 -
40 -RDEPEND="media-libs/sdl-mixer
41 - media-libs/sdl-image
42 - media-libs/gd[jpeg,png]
43 - dev-libs/libxml2
44 - dev-libs/libzip
45 - net-misc/curl
46 - joystick? ( media-libs/libsdl[joystick] )
47 - !joystick? ( media-libs/libsdl )
48 - X? ( x11-libs/libX11
49 - media-libs/libsdl[X] )
50 - !X? ( media-libs/libsdl )"
51 -DEPEND="${RDEPEND}"
52 -
53 -S="${WORKDIR}/${MY_PN}"
54 -
55 -src_prepare() {
56 - epatch "${FILESDIR}"/${PN}-0.58_rc1-icu.patch \
57 - "${FILESDIR}"/${PN}-0.58_rc1-curl.patch
58 -}
59 -
60 -src_configure() {
61 - local mycmakeargs="
62 - $(cmake-utils_use debug DEBUG)
63 - $(cmake-utils_use X X11)
64 - -D BREAKPAD=$(use breakpad && echo "Yes" || echo "No")
65 - -D DISABLE_JOYSTICK=$(use joystick && echo "No" || echo "Yes")
66 - -D SYSTEM_DATA_DIR=${GAMES_DATADIR}
67 - -D VERSION=${PV}"
68 -
69 - cmake-utils_src_configure
70 -}
71 -
72 -src_compile() {
73 - cmake-utils_src_compile
74 -}
75 -
76 -src_install() {
77 - # NOTE: App uses case-insensitive file-handling
78 - insinto "${GAMES_DATADIR}"/${PN}/
79 - doins -r share/gamedir/*
80 -
81 - dodoc doc/{README,ChangeLog,Development,TODO}
82 - insinto /usr/share/doc/"${PF}"
83 - doins -r doc/original_lx_docs
84 -
85 - doicon share/OpenLieroX.*
86 - make_desktop_entry openlierox OpenLieroX OpenLieroX \
87 - "Game;ActionGame;ArcadeGame;"
88 -
89 - dogamesbin "${CMAKE_BUILD_DIR}"/bin/openlierox
90 -
91 - prepgamesdirs
92 -}