public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/tuxanci/
@ 2017-05-26  9:37 David Seifert
  0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2017-05-26  9:37 UTC (permalink / raw
  To: gentoo-commits

commit:     131f5e3f0227725681da9fb3b65dacb309a1b049
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu May 25 18:58:56 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri May 26 09:37:45 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=131f5e3f

games-arcade/tuxanci: Port to EAPI 6

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 games-arcade/tuxanci/tuxanci-20110429-r1.ebuild | 59 ++++++++++++++++++++
 games-arcade/tuxanci/tuxanci-20110429.ebuild    | 72 -------------------------
 games-arcade/tuxanci/tuxanci-99999999.ebuild    | 59 ++++++++------------
 3 files changed, 82 insertions(+), 108 deletions(-)

diff --git a/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild b/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild
new file mode 100644
index 00000000000..3d55994e39e
--- /dev/null
+++ b/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="Tuxanci is first tux shooter inspired by game Bulanci"
+HOMEPAGE="http://www.tuxanci.org/"
+
+if [[ ${PV} = *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="git://repo.or.cz/tuxanci.git"
+else
+	SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.xz"
+	KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="debug dedicated +ipv6 nls opengl physfs +sound"
+
+# >=x11-libs/cairo-1.8.8[X,svg]
+RDEPEND="
+	!dedicated? (
+		>=media-libs/fontconfig-2.7.0
+		media-libs/libsdl[X,opengl?]
+		media-libs/sdl-ttf[X]
+		>=media-libs/sdl-image-1.2.10[png]
+		sound? (
+			>=media-libs/sdl-mixer-1.2.11[vorbis]
+		)
+	)
+	physfs? ( dev-games/physfs[zip] )
+	!physfs? ( >=dev-libs/libzip-0.9 )
+"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+	nls? ( sys-devel/gettext )
+"
+
+src_configure() {
+	local mycmakeargs=(
+		-DWITH_AUDIO=$(usex sound)
+		-DBUILD_SERVER=$(usex dedicated)
+		-DWITH_NLS=$(usex nls)
+		-DWITH_PHYSFS=$(usex physfs)
+		-DWITH_OPENGL=$(usex opengl)
+		-DENABLE_IPV6=$(usex ipv6)
+		-DDEVELOPER=$(usex debug)
+		-DCMAKE_INSTALL_ICONDIR="${EPREFIX}"/usr/pixmaps/
+		-DCMAKE_INSTALL_DESKTOPDIR="${EPREFIX}"/usr/applications/
+		-DCMAKE_DATA_PATH="${EPREFIX}"/usr/share/
+		-DCMAKE_LOCALE_PATH="${EPREFIX}"/usr/share/locale/
+		-DCMAKE_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF}
+		-DCMAKE_CONF_PATH="${EPREFIX}"/etc
+	)
+	cmake-utils_src_configure
+}

diff --git a/games-arcade/tuxanci/tuxanci-20110429.ebuild b/games-arcade/tuxanci/tuxanci-20110429.ebuild
deleted file mode 100644
index 0a18633e815..00000000000
--- a/games-arcade/tuxanci/tuxanci-20110429.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-[[ ${PV} = 9999* ]] && GIT="git-2"
-EGIT_REPO_URI="git://repo.or.cz/tuxanci.git"
-
-inherit games cmake-utils ${GIT}
-
-DESCRIPTION="Tuxanci is first tux shooter inspired by game Bulanci"
-HOMEPAGE="http://www.tuxanci.org/"
-if [[ ${PV} = 9999* ]]; then
-	SRC_URI=""
-	KEYWORDS=""
-else
-	SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.xz"
-	KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-fi
-LICENSE="GPL-2"
-
-SLOT="0"
-IUSE="debug dedicated +ipv6 nls opengl physfs +sound"
-
-# >=x11-libs/cairo-1.8.8[X,svg]
-RDEPEND="
-	!dedicated? (
-		>=media-libs/fontconfig-2.7.0
-		media-libs/libsdl[X,opengl?]
-		media-libs/sdl-ttf[X]
-		>=media-libs/sdl-image-1.2.10[png]
-		sound? (
-			>=media-libs/sdl-mixer-1.2.11[vorbis]
-		)
-	)
-	physfs? ( dev-games/physfs[zip] )
-	!physfs? ( >=dev-libs/libzip-0.9 )
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	nls? ( sys-devel/gettext )
-"
-
-src_configure() {
-	local mycmakeargs+=(
-		$(cmake-utils_use_with sound AUDIO)
-		$(cmake-utils_use_build dedicated SERVER)
-		$(cmake-utils_use_with nls)
-		$(cmake-utils_use_with physfs)
-		$(cmake-utils_use_with opengl)
-		$(cmake-utils_use_enable ipv6)
-		$(cmake-utils_use debug DEVELOPER)
-	)
-
-	mycmakeargs+=(
-		"-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
-		"-DCMAKE_INSTALL_ICONDIR=${GAMES_DATADIR_BASE}/pixmaps/"
-		"-DCMAKE_INSTALL_DESKTOPDIR=${GAMES_DATADIR_BASE}/applications/"
-		"-DCMAKE_DATA_PATH=${GAMES_DATADIR}"
-		"-DCMAKE_LOCALE_PATH=${GAMES_DATADIR_BASE}/locale/"
-		"-DCMAKE_DOC_PATH=${GAMES_DATADIR_BASE}/doc/${PF}"
-		"-DCMAKE_CONF_PATH=${GAMES_SYSCONFDIR}"
-	)
-
-	cmake-utils_src_configure
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	prepgamesdirs
-}

diff --git a/games-arcade/tuxanci/tuxanci-99999999.ebuild b/games-arcade/tuxanci/tuxanci-99999999.ebuild
index 8d85ddeeebb..3d55994e39e 100644
--- a/games-arcade/tuxanci/tuxanci-99999999.ebuild
+++ b/games-arcade/tuxanci/tuxanci-99999999.ebuild
@@ -1,24 +1,22 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-[[ ${PV} = 9999* ]] && GIT="git-2"
-EGIT_REPO_URI="git://repo.or.cz/tuxanci.git"
-
-inherit games cmake-utils ${GIT}
+inherit cmake-utils
 
 DESCRIPTION="Tuxanci is first tux shooter inspired by game Bulanci"
 HOMEPAGE="http://www.tuxanci.org/"
-if [[ ${PV} = 9999* ]]; then
-	SRC_URI=""
-	KEYWORDS=""
+
+if [[ ${PV} = *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="git://repo.or.cz/tuxanci.git"
 else
-	SRC_URI="http://download.${PN}.org/${P}.tar.bz2"
+	SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.xz"
 	KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 fi
-LICENSE="GPL-2"
 
+LICENSE="GPL-2"
 SLOT="0"
 IUSE="debug dedicated +ipv6 nls opengl physfs +sound"
 
@@ -42,31 +40,20 @@ DEPEND="${RDEPEND}
 "
 
 src_configure() {
-	local mycmakeargs+=(
-		$(cmake-utils_use_with sound AUDIO)
-		$(cmake-utils_use_build dedicated SERVER)
-		$(cmake-utils_use_with nls)
-		$(cmake-utils_use_with physfs)
-		$(cmake-utils_use_with opengl)
-		$(cmake-utils_use_enable ipv6)
-		$(cmake-utils_use debug DEVELOPER)
-	)
-
-	mycmakeargs+=(
-		"-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
-		"-DCMAKE_INSTALL_ICONDIR=${GAMES_DATADIR_BASE}/pixmaps/"
-		"-DCMAKE_INSTALL_DESKTOPDIR=${GAMES_DATADIR_BASE}/applications/"
-		"-DCMAKE_DATA_PATH=${GAMES_DATADIR}"
-		"-DCMAKE_LOCALE_PATH=${GAMES_DATADIR_BASE}/locale/"
-		"-DCMAKE_DOC_PATH=${GAMES_DATADIR_BASE}/doc/${PF}"
-		"-DCMAKE_CONF_PATH=${GAMES_SYSCONFDIR}"
+	local mycmakeargs=(
+		-DWITH_AUDIO=$(usex sound)
+		-DBUILD_SERVER=$(usex dedicated)
+		-DWITH_NLS=$(usex nls)
+		-DWITH_PHYSFS=$(usex physfs)
+		-DWITH_OPENGL=$(usex opengl)
+		-DENABLE_IPV6=$(usex ipv6)
+		-DDEVELOPER=$(usex debug)
+		-DCMAKE_INSTALL_ICONDIR="${EPREFIX}"/usr/pixmaps/
+		-DCMAKE_INSTALL_DESKTOPDIR="${EPREFIX}"/usr/applications/
+		-DCMAKE_DATA_PATH="${EPREFIX}"/usr/share/
+		-DCMAKE_LOCALE_PATH="${EPREFIX}"/usr/share/locale/
+		-DCMAKE_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF}
+		-DCMAKE_CONF_PATH="${EPREFIX}"/etc
 	)
-
 	cmake-utils_src_configure
 }
-
-src_install() {
-	cmake-utils_src_install
-
-	prepgamesdirs
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/tuxanci/
@ 2017-06-22 12:10 Tomas Chvatal
  0 siblings, 0 replies; 4+ messages in thread
From: Tomas Chvatal @ 2017-06-22 12:10 UTC (permalink / raw
  To: gentoo-commits

commit:     d3ebddfb69fcd136e278ed7f147f2344371db8d5
Author:     Tomáš Chvátal <tomas.chvatal <AT> gmail <DOT> com>
AuthorDate: Thu Jun 22 11:57:54 2017 +0000
Commit:     Tomas Chvatal <scarabeus <AT> gentoo <DOT> org>
CommitDate: Thu Jun 22 12:09:09 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3ebddfb

games-arcade/tuxanci: drop scarabeus from maintainers

 games-arcade/tuxanci/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/games-arcade/tuxanci/metadata.xml b/games-arcade/tuxanci/metadata.xml
index b0308e9de0c..9cb517a40b0 100644
--- a/games-arcade/tuxanci/metadata.xml
+++ b/games-arcade/tuxanci/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>scarabeus@gentoo.org</email>
-</maintainer>
 <maintainer type="project">
 	  <email>games@gentoo.org</email>
 	  <name>Gentoo Games Project</name>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/tuxanci/
@ 2019-04-07 22:39 James Le Cuirot
  0 siblings, 0 replies; 4+ messages in thread
From: James Le Cuirot @ 2019-04-07 22:39 UTC (permalink / raw
  To: gentoo-commits

commit:     a2708f5bf01b608f524d142686cfce804032697d
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Apr  7 22:38:46 2019 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Apr  7 22:38:46 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2708f5b

games-arcade/tuxanci: Use HTTPS for git, fix broken SRC_URI

Closes: https://bugs.gentoo.org/682510
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 games-arcade/tuxanci/tuxanci-20110429-r1.ebuild | 6 +++---
 games-arcade/tuxanci/tuxanci-99999999.ebuild    | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild b/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild
index 8fe8dd9427e..ad1a8df9789 100644
--- a/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild
+++ b/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,9 +10,9 @@ HOMEPAGE="http://www.tuxanci.org/"
 
 if [[ ${PV} = *9999 ]]; then
 	inherit git-r3
-	EGIT_REPO_URI="git://repo.or.cz/tuxanci.git"
+	EGIT_REPO_URI="https://repo.or.cz/tuxanci.git"
 else
-	SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.xz"
+	SRC_URI="mirror://gentoo/${P}.tar.xz"
 	KEYWORDS="~amd64 ~ppc64 ~x86"
 fi
 

diff --git a/games-arcade/tuxanci/tuxanci-99999999.ebuild b/games-arcade/tuxanci/tuxanci-99999999.ebuild
index 8fe8dd9427e..ad1a8df9789 100644
--- a/games-arcade/tuxanci/tuxanci-99999999.ebuild
+++ b/games-arcade/tuxanci/tuxanci-99999999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,9 +10,9 @@ HOMEPAGE="http://www.tuxanci.org/"
 
 if [[ ${PV} = *9999 ]]; then
 	inherit git-r3
-	EGIT_REPO_URI="git://repo.or.cz/tuxanci.git"
+	EGIT_REPO_URI="https://repo.or.cz/tuxanci.git"
 else
-	SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.xz"
+	SRC_URI="mirror://gentoo/${P}.tar.xz"
 	KEYWORDS="~amd64 ~ppc64 ~x86"
 fi
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-arcade/tuxanci/
@ 2019-12-06 20:32 David Seifert
  0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2019-12-06 20:32 UTC (permalink / raw
  To: gentoo-commits

commit:     ee94d4ecdd3a5ef5b4edfaec3acf36731ae024b5
Author:     Wim Muskee <wimmuskee <AT> gmail <DOT> com>
AuthorDate: Fri Dec  6 15:37:44 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec  6 20:31:50 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee94d4ec

games-arcade/tuxanci: use global sound USE description, fix broken HOMEPAGE

Signed-off-by: Wim Muskee <wimmuskee <AT> gmail.com>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 games-arcade/tuxanci/metadata.xml               | 1 -
 games-arcade/tuxanci/tuxanci-20110429-r1.ebuild | 2 +-
 games-arcade/tuxanci/tuxanci-99999999.ebuild    | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/games-arcade/tuxanci/metadata.xml b/games-arcade/tuxanci/metadata.xml
index 6c319f2cbfc..9aff45b12b1 100644
--- a/games-arcade/tuxanci/metadata.xml
+++ b/games-arcade/tuxanci/metadata.xml
@@ -6,7 +6,6 @@
 		<name>Gentoo Games Project</name>
 	</maintainer>
 	<use>
-		<flag name="sound">Enable sound</flag>
 		<flag name="physfs">Use <pkg>dev-games/physfs</pkg> instead of <pkg>dev-libs/libzip</pkg> to load compressed data</flag>
 	</use>
 </pkgmetadata>

diff --git a/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild b/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild
index ad1a8df9789..a03b0ba4176 100644
--- a/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild
+++ b/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit cmake-utils
 
 DESCRIPTION="Tuxanci is first tux shooter inspired by game Bulanci"
-HOMEPAGE="http://www.tuxanci.org/"
+HOMEPAGE="https://repo.or.cz/w/tuxanci.git"
 
 if [[ ${PV} = *9999 ]]; then
 	inherit git-r3

diff --git a/games-arcade/tuxanci/tuxanci-99999999.ebuild b/games-arcade/tuxanci/tuxanci-99999999.ebuild
index ad1a8df9789..a03b0ba4176 100644
--- a/games-arcade/tuxanci/tuxanci-99999999.ebuild
+++ b/games-arcade/tuxanci/tuxanci-99999999.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit cmake-utils
 
 DESCRIPTION="Tuxanci is first tux shooter inspired by game Bulanci"
-HOMEPAGE="http://www.tuxanci.org/"
+HOMEPAGE="https://repo.or.cz/w/tuxanci.git"
 
 if [[ ${PV} = *9999 ]]; then
 	inherit git-r3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-12-06 20:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-07 22:39 [gentoo-commits] repo/gentoo:master commit in: games-arcade/tuxanci/ James Le Cuirot
  -- strict thread matches above, loose matches on Subject: below --
2019-12-06 20:32 David Seifert
2017-06-22 12:10 Tomas Chvatal
2017-05-26  9:37 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox