* [gentoo-commits] repo/gentoo:master commit in: games-action/openlierox/
@ 2016-10-23 15:36 Sebastian Pipping
0 siblings, 0 replies; 6+ messages in thread
From: Sebastian Pipping @ 2016-10-23 15:36 UTC (permalink / raw
To: gentoo-commits
commit: 7e051432426490904bb7961e1a1d30b4a55d06f2
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 23 15:36:00 2016 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sun Oct 23 15:36:33 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e051432
games-action/openlierox: Drop myself as a maintainer
games-action/openlierox/metadata.xml | 3 ---
1 file changed, 3 deletions(-)
diff --git a/games-action/openlierox/metadata.xml b/games-action/openlierox/metadata.xml
index 8b3f552..67c11cf 100644
--- a/games-action/openlierox/metadata.xml
+++ b/games-action/openlierox/metadata.xml
@@ -1,9 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>sping@gentoo.org</email>
- </maintainer>
<maintainer type="project">
<email>games@gentoo.org</email>
<name>Gentoo Games Project</name>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-action/openlierox/
@ 2016-11-04 19:39 Sebastian Pipping
0 siblings, 0 replies; 6+ messages in thread
From: Sebastian Pipping @ 2016-11-04 19:39 UTC (permalink / raw
To: gentoo-commits
commit: 24201d5609fc8a8a953ca57ae6e7d96c25224365
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 4 19:38:02 2016 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Nov 4 19:39:25 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24201d56
games-action/openlierox: Resolve use of games eclass, EAPI 6
Package-Manager: portage-2.3.2
.../openlierox/openlierox-0.58_rc3-r1.ebuild | 72 ++++++++++++++++++++++
1 file changed, 72 insertions(+)
diff --git a/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild b/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
new file mode 100644
index 00000000..2f7457b
--- /dev/null
+++ b/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils eutils
+
+MY_PN="OpenLieroX"
+MY_P="${MY_PN}_${PV}"
+DESCRIPTION="Real-time excessive Worms-clone"
+HOMEPAGE="http://openlierox.sourceforge.net/"
+SRC_URI="mirror://sourceforge/openlierox/${MY_P}.src.tar.bz2"
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="X breakpad debug joystick"
+
+RDEPEND="media-libs/sdl-mixer
+ media-libs/sdl-image
+ media-libs/gd[jpeg,png]
+ dev-libs/libxml2
+ dev-libs/libzip
+ net-misc/curl
+ joystick? ( media-libs/libsdl[joystick] )
+ !joystick? ( media-libs/libsdl )
+ X? ( x11-libs/libX11
+ media-libs/libsdl[X] )
+ !X? ( media-libs/libsdl )"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_PN}"
+
+src_prepare() {
+ epatch "${FILESDIR}"/${PN}-0.58_rc1-icu.patch \
+ "${FILESDIR}"/${PN}-0.58_rc1-curl.patch
+ eapply_user
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -D DEBUG=$(usex debug)
+ -D X11=$(usex X)
+ -D BREAKPAD=$(usex breakpad Yes No)
+ -D DISABLE_JOYSTICK=$(usex joystick No Yes)
+ -D SYSTEM_DATA_DIR=/usr/share
+ -D VERSION=${PV}
+ )
+
+ cmake-utils_src_configure
+}
+
+src_compile() {
+ cmake-utils_src_compile
+}
+
+src_install() {
+ # NOTE: App uses case-insensitive file-handling
+ insinto /usr/share/${PN}/
+ doins -r share/gamedir/*
+
+ dodoc doc/{README,ChangeLog,Development,TODO}
+ insinto /usr/share/doc/"${PF}"
+ doins -r doc/original_lx_docs
+
+ doicon share/OpenLieroX.*
+ make_desktop_entry openlierox OpenLieroX OpenLieroX \
+ "Game;ActionGame;ArcadeGame;"
+
+ dobin "${CMAKE_BUILD_DIR}"/bin/openlierox
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-action/openlierox/
@ 2016-12-21 11:28 Tobias Klausmann
0 siblings, 0 replies; 6+ messages in thread
From: Tobias Klausmann @ 2016-12-21 11:28 UTC (permalink / raw
To: gentoo-commits
commit: 24b96ee1f412273dee39d713898078c5fd4ed7c8
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 21 11:10:18 2016 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Wed Dec 21 11:28:18 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24b96ee1
games-action/openlierox-0.58_rc3-r1: stable on amd64
Gentoo-Bug: 598962
games-action/openlierox/openlierox-0.58_rc3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild b/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
index 2f7457b..6fbeec0 100644
--- a/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
+++ b/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/openlierox/${MY_P}.src.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="X breakpad debug joystick"
RDEPEND="media-libs/sdl-mixer
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-action/openlierox/
@ 2017-01-04 17:09 Agostino Sarubbo
0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo @ 2017-01-04 17:09 UTC (permalink / raw
To: gentoo-commits
commit: f45494f9d1e6777efd33346f87f49b575ccc629f
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 4 17:07:27 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jan 4 17:07:27 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f45494f9
games-action/openlierox: x86 stable wrt bug #598962
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
games-action/openlierox/openlierox-0.58_rc3-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild b/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
index 6fbeec0..a9fd8f9 100644
--- a/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
+++ b/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/openlierox/${MY_P}.src.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="X breakpad debug joystick"
RDEPEND="media-libs/sdl-mixer
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-action/openlierox/
@ 2017-01-29 21:44 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2017-01-29 21:44 UTC (permalink / raw
To: gentoo-commits
commit: e2492750bb646daaf5c6aea958eb6ae543c3c8ac
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 29 21:44:26 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jan 29 21:44:26 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2492750
games-action/openlierox: Remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
games-action/openlierox/openlierox-0.58_rc3.ebuild | 72 ----------------------
1 file changed, 72 deletions(-)
diff --git a/games-action/openlierox/openlierox-0.58_rc3.ebuild b/games-action/openlierox/openlierox-0.58_rc3.ebuild
deleted file mode 100644
index 836a03b..00000000
--- a/games-action/openlierox/openlierox-0.58_rc3.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit cmake-utils eutils games
-
-MY_PN="OpenLieroX"
-MY_P="${MY_PN}_${PV}"
-DESCRIPTION="Real-time excessive Worms-clone"
-HOMEPAGE="http://openlierox.sourceforge.net/"
-SRC_URI="mirror://sourceforge/openlierox/${MY_P}.src.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="X breakpad debug joystick"
-
-RDEPEND="media-libs/sdl-mixer
- media-libs/sdl-image
- media-libs/gd[jpeg,png]
- dev-libs/libxml2
- dev-libs/libzip
- net-misc/curl
- joystick? ( media-libs/libsdl[joystick] )
- !joystick? ( media-libs/libsdl )
- X? ( x11-libs/libX11
- media-libs/libsdl[X] )
- !X? ( media-libs/libsdl )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_PN}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-0.58_rc1-icu.patch \
- "${FILESDIR}"/${PN}-0.58_rc1-curl.patch
-}
-
-src_configure() {
- local mycmakeargs="
- $(cmake-utils_use debug DEBUG)
- $(cmake-utils_use X X11)
- -D BREAKPAD=$(use breakpad && echo "Yes" || echo "No")
- -D DISABLE_JOYSTICK=$(use joystick && echo "No" || echo "Yes")
- -D SYSTEM_DATA_DIR=${GAMES_DATADIR}
- -D VERSION=${PV}"
-
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-}
-
-src_install() {
- # NOTE: App uses case-insensitive file-handling
- insinto "${GAMES_DATADIR}"/${PN}/
- doins -r share/gamedir/*
-
- dodoc doc/{README,ChangeLog,Development,TODO}
- insinto /usr/share/doc/"${PF}"
- doins -r doc/original_lx_docs
-
- doicon share/OpenLieroX.*
- make_desktop_entry openlierox OpenLieroX OpenLieroX \
- "Game;ActionGame;ArcadeGame;"
-
- dogamesbin "${CMAKE_BUILD_DIR}"/bin/openlierox
-
- prepgamesdirs
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-action/openlierox/
@ 2017-02-12 9:56 Michael Palimaka
0 siblings, 0 replies; 6+ messages in thread
From: Michael Palimaka @ 2017-02-12 9:56 UTC (permalink / raw
To: gentoo-commits
commit: a9ea5c01b91884e36c3be6bb4d754cb4179898b0
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 12 09:56:37 2017 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Feb 12 09:56:50 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9ea5c01
games-action/openlierox: restrict mirroring
This package is being masked for removal due to potential licensing issues,
so restrict mirroring to get this off the mirrors ASAP.
Gentoo-bug: 609052
Package-Manager: Portage-2.3.3, Repoman-2.3.1
games-action/openlierox/openlierox-0.58_rc3-r1.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild b/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
index b820b7e642..59c2009ed3 100644
--- a/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
+++ b/games-action/openlierox/openlierox-0.58_rc3-r1.ebuild
@@ -32,6 +32,8 @@ DEPEND="${RDEPEND}
S="${WORKDIR}/${MY_PN}"
+RESTRICT="mirror"
+
PATCHES=(
"${FILESDIR}"/${PN}-0.58_rc1-icu.patch
"${FILESDIR}"/${PN}-0.58_rc1-curl.patch
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-02-12 9:57 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-12 9:56 [gentoo-commits] repo/gentoo:master commit in: games-action/openlierox/ Michael Palimaka
-- strict thread matches above, loose matches on Subject: below --
2017-01-29 21:44 David Seifert
2017-01-04 17:09 Agostino Sarubbo
2016-12-21 11:28 Tobias Klausmann
2016-11-04 19:39 Sebastian Pipping
2016-10-23 15:36 Sebastian Pipping
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox