public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gamerlay:master commit in: games-engines/wyrmgus/
@ 2017-04-22 15:55 Vadim A. Misbakh-Soloviov
  0 siblings, 0 replies; 3+ messages in thread
From: Vadim A. Misbakh-Soloviov @ 2017-04-22 15:55 UTC (permalink / raw
  To: gentoo-commits

commit:     96924eeb2bdd3decadeaa075f54c9c41980eaf98
Author:     tomboy64 <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Thu Apr 20 19:16:18 2017 +0000
Commit:     Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
CommitDate: Sat Apr 22 15:55:17 2017 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=96924eeb

games-engines/wyrmgus: new package

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 games-engines/wyrmgus/metadata.xml         | 16 ++++++
 games-engines/wyrmgus/wyrmgus-2.7.1.ebuild | 81 ++++++++++++++++++++++++++++++
 2 files changed, 97 insertions(+)

diff --git a/games-engines/wyrmgus/metadata.xml b/games-engines/wyrmgus/metadata.xml
new file mode 100644
index 0000000..943c69b
--- /dev/null
+++ b/games-engines/wyrmgus/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>tomboy64@sina.cn</email>
+		 <name>tomboy64</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>games@gentoo.org</email>
+		<name>Gentoo Games</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/games-engines/wyrmgus/wyrmgus-2.7.1.ebuild b/games-engines/wyrmgus/wyrmgus-2.7.1.ebuild
new file mode 100644
index 0000000..ff60484
--- /dev/null
+++ b/games-engines/wyrmgus/wyrmgus-2.7.1.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="Modified Stratagus engine for Wyrmsun"
+HOMEPAGE="https://andrettin.github.io/"
+SRC_URI="https://github.com/Andrettin/Wyrmgus/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug doc mikmod mng ogg opengl static theora"
+
+RDEPEND="dev-lang/lua:0
+	dev-lua/toluapp
+	media-libs/libpng:=
+	media-libs/libsdl
+	media-sound/fluidsynth
+	mikmod? ( media-sound/mikmod )
+	mng? (
+		static? ( media-libs/libmng[static-libs] )
+		!static? ( media-libs/libmng )
+	)
+	ogg? (
+		static? ( media-libs/libvorbis[static-libs] )
+		!static? ( media-libs/libvorbis )
+	)
+	theora? (
+		static? ( media-libs/libtheora[static-libs] )
+		!static? ( media-libs/libtheora )
+	)
+	static? (
+		dev-db/sqlite:3[static-libs]
+		dev-games/physfs[static-libs]
+		media-sound/oaml[static-libs]
+		sys-libs/zlib[static-libs]
+		x11-libs/libICE[static-libs]
+		x11-libs/libXext[static-libs]
+	)
+	!static? (
+		dev-games/physfs
+		dev-db/sqlite:3
+		media-sound/oaml
+		sys-libs/zlib
+		x11-libs/libICE
+		x11-libs/libXext
+	)
+"
+
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen )"
+
+S="${WORKDIR}/${PN/w/W}-${PV}"
+
+src_prepare() {
+	sed -i 's#\(install(TARGETS stratagus DESTINATION \)${GAMEDIR})#\1${BINDIR})#' CMakeLists.txt
+	eapply_user
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DENABLE_STATIC=$(usex static)
+		-DENABLE_DOC=$(usex doc)
+		-DWITH_MIKMOD=$(usex mikmod)
+		-DWITH_MNG=$(usex mng)
+		-DWITH_OGGVORBIS=$(usex ogg)
+		-DWITH_THEORA=$(usex theora)
+		-DWITH_RENDERER=$(usex opengl OpenGL NativeSDL)
+		-DWITH_BZIP2=ON
+		-DWITH_FLUIDSYNTH=ON
+		-DWITH_PHYSFS=ON
+	)
+	cmake-utils_src_configure
+}
+
+src_install() {
+	newbin "${BUILD_DIR}/stratagus" wyrmgus
+}


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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/wyrmgus/
@ 2018-11-10 23:44 Azamat H. Hackimov
  0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2018-11-10 23:44 UTC (permalink / raw
  To: gentoo-commits

commit:     3adadedc33a395c811be1e87dc03abb4c89946e5
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sat Nov 10 22:15:58 2018 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Sat Nov 10 23:44:20 2018 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=3adadedc

games-engines/wyrmgus: minor fixes to package

Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 games-engines/wyrmgus/metadata.xml | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/games-engines/wyrmgus/metadata.xml b/games-engines/wyrmgus/metadata.xml
index 943c69b..0bdcb89 100644
--- a/games-engines/wyrmgus/metadata.xml
+++ b/games-engines/wyrmgus/metadata.xml
@@ -3,14 +3,6 @@
 <pkgmetadata>
 	<maintainer type="person">
 		<email>tomboy64@sina.cn</email>
-		 <name>tomboy64</name>
-	</maintainer>
-	<maintainer type="project">
-		<email>games@gentoo.org</email>
-		<name>Gentoo Games</name>
-	</maintainer>
-	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
+		<name>tomboy64</name>
 	</maintainer>
 </pkgmetadata>


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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/wyrmgus/
@ 2021-02-05 19:26 Azamat H. Hackimov
  0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2021-02-05 19:26 UTC (permalink / raw
  To: gentoo-commits

commit:     ea4cbcdf6c197569a3cda46666b2ed484a2c4b7d
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Fri Feb  5 19:12:54 2021 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Fri Feb  5 19:26:09 2021 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=ea4cbcdf

games-engines/wyrmgus: update package

Migrate to EAPI=7, update ebuild

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>

 games-engines/wyrmgus/wyrmgus-2.7.1.ebuild | 81 ------------------------------
 games-engines/wyrmgus/wyrmgus-4.1.3.ebuild | 56 +++++++++++++++++++++
 2 files changed, 56 insertions(+), 81 deletions(-)

diff --git a/games-engines/wyrmgus/wyrmgus-2.7.1.ebuild b/games-engines/wyrmgus/wyrmgus-2.7.1.ebuild
deleted file mode 100644
index ff60484..0000000
--- a/games-engines/wyrmgus/wyrmgus-2.7.1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Modified Stratagus engine for Wyrmsun"
-HOMEPAGE="https://andrettin.github.io/"
-SRC_URI="https://github.com/Andrettin/Wyrmgus/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug doc mikmod mng ogg opengl static theora"
-
-RDEPEND="dev-lang/lua:0
-	dev-lua/toluapp
-	media-libs/libpng:=
-	media-libs/libsdl
-	media-sound/fluidsynth
-	mikmod? ( media-sound/mikmod )
-	mng? (
-		static? ( media-libs/libmng[static-libs] )
-		!static? ( media-libs/libmng )
-	)
-	ogg? (
-		static? ( media-libs/libvorbis[static-libs] )
-		!static? ( media-libs/libvorbis )
-	)
-	theora? (
-		static? ( media-libs/libtheora[static-libs] )
-		!static? ( media-libs/libtheora )
-	)
-	static? (
-		dev-db/sqlite:3[static-libs]
-		dev-games/physfs[static-libs]
-		media-sound/oaml[static-libs]
-		sys-libs/zlib[static-libs]
-		x11-libs/libICE[static-libs]
-		x11-libs/libXext[static-libs]
-	)
-	!static? (
-		dev-games/physfs
-		dev-db/sqlite:3
-		media-sound/oaml
-		sys-libs/zlib
-		x11-libs/libICE
-		x11-libs/libXext
-	)
-"
-
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${PN/w/W}-${PV}"
-
-src_prepare() {
-	sed -i 's#\(install(TARGETS stratagus DESTINATION \)${GAMEDIR})#\1${BINDIR})#' CMakeLists.txt
-	eapply_user
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DENABLE_STATIC=$(usex static)
-		-DENABLE_DOC=$(usex doc)
-		-DWITH_MIKMOD=$(usex mikmod)
-		-DWITH_MNG=$(usex mng)
-		-DWITH_OGGVORBIS=$(usex ogg)
-		-DWITH_THEORA=$(usex theora)
-		-DWITH_RENDERER=$(usex opengl OpenGL NativeSDL)
-		-DWITH_BZIP2=ON
-		-DWITH_FLUIDSYNTH=ON
-		-DWITH_PHYSFS=ON
-	)
-	cmake-utils_src_configure
-}
-
-src_install() {
-	newbin "${BUILD_DIR}/stratagus" wyrmgus
-}

diff --git a/games-engines/wyrmgus/wyrmgus-4.1.3.ebuild b/games-engines/wyrmgus/wyrmgus-4.1.3.ebuild
new file mode 100644
index 0000000..ab5d989
--- /dev/null
+++ b/games-engines/wyrmgus/wyrmgus-4.1.3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-1 )
+
+inherit cmake lua-single
+
+DESCRIPTION="Modified Stratagus engine for Wyrmsun"
+HOMEPAGE="https://andrettin.github.io/"
+SRC_URI="https://github.com/Andrettin/Wyrmgus/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="bzip2 doc opengl X"
+
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+
+RDEPEND="
+	${LUA_DEPS}
+	bzip2? ( app-arch/bzip2:= )
+	opengl? ( virtual/opengl )
+	X? ( x11-libs/libX11 )
+	dev-libs/boost:=
+	dev-lua/toluapp
+	dev-qt/qtcore
+	dev-qt/qtgui
+	dev-qt/qtlocation
+	dev-qt/qtmultimedia
+	dev-qt/qtwidgets
+	media-libs/libsdl
+	media-libs/sdl-mixer
+	sys-libs/zlib
+"
+
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen )"
+
+S="${WORKDIR}/Wyrmgus-${PV}"
+
+src_configure() {
+	local mycmakeargs=(
+		-DENABLE_DOC=$(usex doc)
+		-DWITH_RENDERER=$(usex opengl OpenGL NativeSDL)
+		-DWITH_BZIP2=$(usex bzip2)
+		-DWITH_X11=$(usex X)
+	)
+	cmake_src_configure
+}
+
+src_install() {
+	dobin "${BUILD_DIR}/wyrmgus"
+	dodoc README.MD
+}


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

end of thread, other threads:[~2021-02-05 19:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-10 23:44 [gentoo-commits] proj/gamerlay:master commit in: games-engines/wyrmgus/ Azamat H. Hackimov
  -- strict thread matches above, loose matches on Subject: below --
2021-02-05 19:26 Azamat H. Hackimov
2017-04-22 15:55 Vadim A. Misbakh-Soloviov

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