public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
@ 2017-01-20  1:09 Austin English
  0 siblings, 0 replies; 10+ messages in thread
From: Austin English @ 2017-01-20  1:09 UTC (permalink / raw
  To: gentoo-commits

commit:     92e65665ad9bbea2dd569c875f43623d3e4a17e0
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 19 23:50:47 2017 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Fri Jan 20 01:09:19 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92e65665

games-engines/residualvm: remove deprecated games eclass

Also update to EAPI 6

Gentoo-Bug: https://bugs.gentoo.org/574082

Package-Manager: Portage-2.3.2, Repoman-2.3.1

 .../residualvm/residualvm-0.2.1-r1.ebuild          | 82 ++++++++++++++++++++++
 1 file changed, 82 insertions(+)

diff --git a/games-engines/residualvm/residualvm-0.2.1-r1.ebuild b/games-engines/residualvm/residualvm-0.2.1-r1.ebuild
new file mode 100644
index 00000000..c3d0cd1
--- /dev/null
+++ b/games-engines/residualvm/residualvm-0.2.1-r1.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils toolchain-funcs gnome2-utils
+
+DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures"
+HOMEPAGE="http://www.residualvm.org/"
+SRC_URI="mirror://sourceforge/${PN}/${P}-sources.tar.bz2"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# TODO: fix dynamic plugin support
+# games crash without media-libs/libsdl[alsa]
+RDEPEND="
+	media-libs/alsa-lib
+	media-libs/freetype:2
+	media-libs/libsdl[X,sound,alsa,joystick,opengl,video]
+	sys-libs/zlib
+	virtual/glu
+	virtual/opengl"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+	# not an autotools script
+	# most configure options currently do nothing, verify on version bump !!!
+	# disable explicitly, otherwise we get unneeded linkage (some copy-paste build system)
+	./configure \
+		--backend=sdl \
+		--disable-debug \
+		--disable-faad \
+		--disable-flac \
+		--disable-fluidsynth \
+		--disable-libunity \
+		--disable-mad \
+		--disable-sparkle \
+		--disable-translation \
+		--disable-tremor \
+		--disable-vorbis \
+		--docdir="/usr/share/doc/${PF}" \
+		--enable-all-engines \
+		--enable-release-mode \
+		--enable-zlib \
+		|| die "configure failed"
+}
+
+src_compile() {
+	emake \
+		VERBOSE_BUILD=1 \
+		AR="$(tc-getAR) cru" \
+		RANLIB=$(tc-getRANLIB)
+}
+
+src_install() {
+	dobin residualvm
+
+	insinto "/usr/share/${PN}"
+	doins gui/themes/modern.zip dists/engine-data/residualvm-grim-patch.lab
+
+	doicon -s scalable icons/${PN}.svg
+	doicon -s 256 icons/${PN}.png
+	domenu dists/${PN}.desktop
+
+	doman dists/${PN}.6
+	dodoc AUTHORS README.md KNOWN_BUGS TODO
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	gnome2_icon_cache_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
@ 2018-09-12 10:57 Lars Wendler
  0 siblings, 0 replies; 10+ messages in thread
From: Lars Wendler @ 2018-09-12 10:57 UTC (permalink / raw
  To: gentoo-commits

commit:     8840ef51bb6c7e9de64dc1254c0b9fc0d929376e
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 12 10:54:28 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Sep 12 10:57:37 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8840ef51

games-engines/residualvm: Added live ebuild.

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 games-engines/residualvm/residualvm-9999.ebuild | 91 +++++++++++++++++++++++++
 1 file changed, 91 insertions(+)

diff --git a/games-engines/residualvm/residualvm-9999.ebuild b/games-engines/residualvm/residualvm-9999.ebuild
new file mode 100644
index 00000000000..7343afbb7e7
--- /dev/null
+++ b/games-engines/residualvm/residualvm-9999.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2-utils toolchain-funcs xdg-utils
+
+DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures"
+HOMEPAGE="http://www.residualvm.org/"
+if [[ "${PV}" = 9999* ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/residualvm/residualvm.git"
+else
+	SRC_URI="http://www.residualvm.org/downloads/release/${PV}/${P}-sources.tar.bz2"
+	KEYWORDS="~amd64 ~x86"
+fi
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+IUSE=""
+
+# TODO: fix dynamic plugin support
+# games crash without media-libs/libsdl[alsa]
+RDEPEND="
+	media-libs/alsa-lib
+	media-libs/freetype:2
+	media-libs/glew:0=
+	media-libs/libpng:0=
+	media-libs/libsdl2[X,sound,alsa,joystick,opengl,video]
+	sys-libs/zlib
+	virtual/glu
+	virtual/jpeg:0
+	virtual/opengl"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+	# not an autotools script
+	# most configure options currently do nothing, verify on version bump !!!
+	# disable explicitly, otherwise we get unneeded linkage (some copy-paste build system)
+	local myconf=(
+		--backend=sdl
+		--disable-debug
+		--disable-faad
+		--disable-flac
+		--disable-fluidsynth
+		--disable-libunity
+		--disable-mad
+		--disable-sparkle
+		--disable-translation
+		--disable-tremor
+		--disable-vorbis
+		--docdir="/usr/share/doc/${PF}"
+		--enable-all-engines
+		--enable-release-mode
+		--enable-zlib
+	)
+	./configure "${myconf[@]}" || die "configure failed"
+}
+
+src_compile() {
+	emake \
+		VERBOSE_BUILD=1 \
+		AR="$(tc-getAR) cru" \
+		RANLIB=$(tc-getRANLIB)
+}
+
+src_install() {
+	dobin residualvm
+
+	insinto "/usr/share/${PN}"
+	doins gui/themes/modern.zip dists/engine-data/residualvm-grim-patch.lab
+
+	doicon -s scalable icons/${PN}.svg
+	doicon -s 256 icons/${PN}.png
+	domenu dists/${PN}.desktop
+
+	doman dists/${PN}.6
+	dodoc AUTHORS README.md KNOWN_BUGS TODO
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	gnome2_icon_cache_update
+	xdg_desktop_database_update
+}
+
+pkg_postrm() {
+	gnome2_icon_cache_update
+	xdg_desktop_database_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
@ 2018-09-12 10:57 Lars Wendler
  0 siblings, 0 replies; 10+ messages in thread
From: Lars Wendler @ 2018-09-12 10:57 UTC (permalink / raw
  To: gentoo-commits

commit:     83a652d4d37f6b167d15077018f9f0ba817e2679
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 12 10:57:22 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Sep 12 10:57:38 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83a652d4

games-engines/residualvm: Bump to version 0.3.1

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 games-engines/residualvm/Manifest                |  1 +
 games-engines/residualvm/residualvm-0.3.1.ebuild | 91 ++++++++++++++++++++++++
 2 files changed, 92 insertions(+)

diff --git a/games-engines/residualvm/Manifest b/games-engines/residualvm/Manifest
index e17a719991a..3aa86f9db79 100644
--- a/games-engines/residualvm/Manifest
+++ b/games-engines/residualvm/Manifest
@@ -1 +1,2 @@
 DIST residualvm-0.2.1-sources.tar.bz2 5533814 BLAKE2B befcb42c823d31ff1e8793d0c902bfdf6b3728530c97b3f43ada5d3b2903a0cddba3247095d1674e62cdd75a6db28a7a5f3b1437e5c39cb5eccb37dff9d52fad SHA512 9eed93770ef1ad828934c32e937b861c93f1ebbb0d936f3f56668e654588f734dc88e29446f0a69f8f26475e96b8ce7ca85318758b99aabc9586756692c721da
+DIST residualvm-0.3.1-sources.tar.bz2 6711799 BLAKE2B 93d21bc5ee2c567b1ef256a69a2634761cd52211a0b2d926edc67b65e0cc1bf23b41c91225e6d43990d61e6c3761acf19defaa9b477ad882d332ad77c71af1a6 SHA512 491a77f1775718795d93f099fa39ec5888755ac1df610089c17209334b98ae783271078ed03a61ced09835aa327446804a55522d4b83f618dd3b843c231444a0

diff --git a/games-engines/residualvm/residualvm-0.3.1.ebuild b/games-engines/residualvm/residualvm-0.3.1.ebuild
new file mode 100644
index 00000000000..7343afbb7e7
--- /dev/null
+++ b/games-engines/residualvm/residualvm-0.3.1.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2-utils toolchain-funcs xdg-utils
+
+DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures"
+HOMEPAGE="http://www.residualvm.org/"
+if [[ "${PV}" = 9999* ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/residualvm/residualvm.git"
+else
+	SRC_URI="http://www.residualvm.org/downloads/release/${PV}/${P}-sources.tar.bz2"
+	KEYWORDS="~amd64 ~x86"
+fi
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+IUSE=""
+
+# TODO: fix dynamic plugin support
+# games crash without media-libs/libsdl[alsa]
+RDEPEND="
+	media-libs/alsa-lib
+	media-libs/freetype:2
+	media-libs/glew:0=
+	media-libs/libpng:0=
+	media-libs/libsdl2[X,sound,alsa,joystick,opengl,video]
+	sys-libs/zlib
+	virtual/glu
+	virtual/jpeg:0
+	virtual/opengl"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+	# not an autotools script
+	# most configure options currently do nothing, verify on version bump !!!
+	# disable explicitly, otherwise we get unneeded linkage (some copy-paste build system)
+	local myconf=(
+		--backend=sdl
+		--disable-debug
+		--disable-faad
+		--disable-flac
+		--disable-fluidsynth
+		--disable-libunity
+		--disable-mad
+		--disable-sparkle
+		--disable-translation
+		--disable-tremor
+		--disable-vorbis
+		--docdir="/usr/share/doc/${PF}"
+		--enable-all-engines
+		--enable-release-mode
+		--enable-zlib
+	)
+	./configure "${myconf[@]}" || die "configure failed"
+}
+
+src_compile() {
+	emake \
+		VERBOSE_BUILD=1 \
+		AR="$(tc-getAR) cru" \
+		RANLIB=$(tc-getRANLIB)
+}
+
+src_install() {
+	dobin residualvm
+
+	insinto "/usr/share/${PN}"
+	doins gui/themes/modern.zip dists/engine-data/residualvm-grim-patch.lab
+
+	doicon -s scalable icons/${PN}.svg
+	doicon -s 256 icons/${PN}.png
+	domenu dists/${PN}.desktop
+
+	doman dists/${PN}.6
+	dodoc AUTHORS README.md KNOWN_BUGS TODO
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	gnome2_icon_cache_update
+	xdg_desktop_database_update
+}
+
+pkg_postrm() {
+	gnome2_icon_cache_update
+	xdg_desktop_database_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
@ 2019-03-15 21:53 Lars Wendler
  0 siblings, 0 replies; 10+ messages in thread
From: Lars Wendler @ 2019-03-15 21:53 UTC (permalink / raw
  To: gentoo-commits

commit:     d5f1692b30355f9ebf076f7d94b51671de875820
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 15 21:53:35 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Mar 15 21:53:51 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f1692b

games-engines/residualvm: Synced live ebuild.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 games-engines/residualvm/residualvm-9999.ebuild | 30 ++++++++++---------------
 1 file changed, 12 insertions(+), 18 deletions(-)

diff --git a/games-engines/residualvm/residualvm-9999.ebuild b/games-engines/residualvm/residualvm-9999.ebuild
index 7343afbb7e7..d263427ea17 100644
--- a/games-engines/residualvm/residualvm-9999.ebuild
+++ b/games-engines/residualvm/residualvm-9999.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-inherit gnome2-utils toolchain-funcs xdg-utils
+EAPI=7
+inherit desktop toolchain-funcs xdg
 
 DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures"
 HOMEPAGE="http://www.residualvm.org/"
@@ -25,11 +25,14 @@ RDEPEND="
 	media-libs/glew:0=
 	media-libs/libpng:0=
 	media-libs/libsdl2[X,sound,alsa,joystick,opengl,video]
-	sys-libs/zlib
+	sys-libs/zlib:=
 	virtual/glu
 	virtual/jpeg:0
 	virtual/opengl"
 DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+"
 
 src_configure() {
 	# not an autotools script
@@ -51,6 +54,7 @@ src_configure() {
 		--enable-all-engines
 		--enable-release-mode
 		--enable-zlib
+		--prefix="${EPREFIX}/usr"
 	)
 	./configure "${myconf[@]}" || die "configure failed"
 }
@@ -63,29 +67,19 @@ src_compile() {
 }
 
 src_install() {
-	dobin residualvm
+	emake DESTDIR="${D}" install
 
-	insinto "/usr/share/${PN}"
-	doins gui/themes/modern.zip dists/engine-data/residualvm-grim-patch.lab
-
-	doicon -s scalable icons/${PN}.svg
 	doicon -s 256 icons/${PN}.png
-	domenu dists/${PN}.desktop
-
-	doman dists/${PN}.6
-	dodoc AUTHORS README.md KNOWN_BUGS TODO
 }
 
 pkg_preinst() {
-	gnome2_icon_savelist
+	xdg_pkg_preinst
 }
 
 pkg_postinst() {
-	gnome2_icon_cache_update
-	xdg_desktop_database_update
+	xdg_pkg_postinst
 }
 
 pkg_postrm() {
-	gnome2_icon_cache_update
-	xdg_desktop_database_update
+	xdg_pkg_postrm
 }


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

* [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
@ 2019-03-15 22:45 Lars Wendler
  0 siblings, 0 replies; 10+ messages in thread
From: Lars Wendler @ 2019-03-15 22:45 UTC (permalink / raw
  To: gentoo-commits

commit:     b3f5860372b2b084f0e291c94331e75e9f72e63b
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 15 22:44:58 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Mar 15 22:45:31 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3f58603

games-engines/residualvm: Revbump to add USE flags to release.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 ...-0.3.1-r1.ebuild => residualvm-0.3.1-r2.ebuild} | 45 +++++++++++++---------
 1 file changed, 27 insertions(+), 18 deletions(-)

diff --git a/games-engines/residualvm/residualvm-0.3.1-r1.ebuild b/games-engines/residualvm/residualvm-0.3.1-r2.ebuild
similarity index 63%
rename from games-engines/residualvm/residualvm-0.3.1-r1.ebuild
rename to games-engines/residualvm/residualvm-0.3.1-r2.ebuild
index 97f1d29ed54..fd5eba9a277 100644
--- a/games-engines/residualvm/residualvm-0.3.1-r1.ebuild
+++ b/games-engines/residualvm/residualvm-0.3.1-r2.ebuild
@@ -15,20 +15,24 @@ else
 fi
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-IUSE=""
+IUSE="alsa debug jpeg mpeg2 mp3 opengl png truetype vorbis zlib"
 
 # TODO: fix dynamic plugin support
 # games crash without media-libs/libsdl[alsa]
 RDEPEND="
-	media-libs/alsa-lib
-	media-libs/freetype:2
 	media-libs/glew:0=
-	media-libs/libpng:0=
 	media-libs/libsdl2[X,sound,alsa,joystick,opengl,video]
-	sys-libs/zlib:=
 	virtual/glu
-	virtual/jpeg:0
-	virtual/opengl"
+	alsa? ( media-libs/alsa-lib )
+	jpeg? ( virtual/jpeg:0 )
+	mp3? ( media-libs/libmad )
+	mpeg2? ( media-libs/libmpeg2 )
+	opengl? ( virtual/opengl )
+	png? ( media-libs/libpng:0= )
+	truetype? ( media-libs/freetype:2 )
+	vorbis? ( media-libs/libvorbis )
+	zlib? ( sys-libs/zlib:= )
+"
 DEPEND="${RDEPEND}"
 BDEPEND="
 	virtual/pkgconfig
@@ -40,35 +44,40 @@ PATCHES=(
 
 src_configure() {
 	# not an autotools script
-	# most configure options currently do nothing, verify on version bump !!!
+	# some configure options currently do nothing, verify on version bump !!!
 	# disable explicitly, otherwise we get unneeded linkage (some copy-paste build system)
 	local myconf=(
 		--backend=sdl
-		--disable-debug
 		--disable-faad
 		--disable-flac
 		--disable-fluidsynth
 		--disable-libunity
-		--disable-mad
 		--disable-sparkle
-		--disable-translation
 		--disable-tremor
-		--disable-vorbis
 		--docdir="/usr/share/doc/${PF}"
 		--enable-all-engines
-		--enable-release-mode
-		--enable-zlib
+		--enable-verbose-build
+		--libdir="${EPREFIX}/usr/$(get_libdir)"
 		--host="${CHOST}"
 		--prefix="${EPREFIX}/usr"
+		$(use_enable alsa)
+		$(use_enable debug)
+		$(use_enable !debug release-mode)
+		$(use_enable jpeg)
+		$(use_enable mp3 mad)
+		$(use_enable mpeg2)
+		$(use_enable opengl)
+		$(use_enable opengl opengl-shaders)
+		$(use_enable png)
+		$(use_enable truetype freetype2)
+		$(use_enable vorbis)
+		$(use_enable zlib)
 	)
 	./configure "${myconf[@]}" "${EXTRA_ECONF}" || die
 }
 
 src_compile() {
-	emake \
-		VERBOSE_BUILD=1 \
-		AR="$(tc-getAR) cru" \
-		RANLIB=$(tc-getRANLIB)
+	emake AR="$(tc-getAR) cru" RANLIB=$(tc-getRANLIB)
 }
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
@ 2019-03-15 22:45 Lars Wendler
  0 siblings, 0 replies; 10+ messages in thread
From: Lars Wendler @ 2019-03-15 22:45 UTC (permalink / raw
  To: gentoo-commits

commit:     f1b88229a9ca4e5f9a38ed92a325a8b360c0b50e
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 15 22:15:54 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Mar 15 22:45:29 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1b88229

games-engines/residualvm: Added EXTRA_ECONF

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 games-engines/residualvm/residualvm-0.3.1-r1.ebuild | 6 +++---
 games-engines/residualvm/residualvm-9999.ebuild     | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/games-engines/residualvm/residualvm-0.3.1-r1.ebuild b/games-engines/residualvm/residualvm-0.3.1-r1.ebuild
index c58d9fb53f7..97f1d29ed54 100644
--- a/games-engines/residualvm/residualvm-0.3.1-r1.ebuild
+++ b/games-engines/residualvm/residualvm-0.3.1-r1.ebuild
@@ -58,9 +58,10 @@ src_configure() {
 		--enable-all-engines
 		--enable-release-mode
 		--enable-zlib
+		--host="${CHOST}"
 		--prefix="${EPREFIX}/usr"
 	)
-	./configure "${myconf[@]}" || die "configure failed"
+	./configure "${myconf[@]}" "${EXTRA_ECONF}" || die
 }
 
 src_compile() {
@@ -71,8 +72,7 @@ src_compile() {
 }
 
 src_install() {
-	emake DESTDIR="${D}" install
-
+	default
 	doicon -s 256 icons/${PN}.png
 }
 

diff --git a/games-engines/residualvm/residualvm-9999.ebuild b/games-engines/residualvm/residualvm-9999.ebuild
index d263427ea17..ded84a46d1d 100644
--- a/games-engines/residualvm/residualvm-9999.ebuild
+++ b/games-engines/residualvm/residualvm-9999.ebuild
@@ -54,9 +54,10 @@ src_configure() {
 		--enable-all-engines
 		--enable-release-mode
 		--enable-zlib
+		--host="${CHOST}"
 		--prefix="${EPREFIX}/usr"
 	)
-	./configure "${myconf[@]}" || die "configure failed"
+	./configure "${myconf[@]}" "${EXTRA_ECONF}" || die
 }
 
 src_compile() {
@@ -67,8 +68,7 @@ src_compile() {
 }
 
 src_install() {
-	emake DESTDIR="${D}" install
-
+	default
 	doicon -s 256 icons/${PN}.png
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
@ 2019-03-15 22:45 Lars Wendler
  0 siblings, 0 replies; 10+ messages in thread
From: Lars Wendler @ 2019-03-15 22:45 UTC (permalink / raw
  To: gentoo-commits

commit:     14f9a4f07ec77a04653d0e3dbd183cc3e7da8d55
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 15 22:40:58 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Mar 15 22:45:30 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14f9a4f0

games-engines/residualvm: Added lots of USE flags.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 games-engines/residualvm/metadata.xml           |  3 ++
 games-engines/residualvm/residualvm-9999.ebuild | 45 +++++++++++++++----------
 2 files changed, 30 insertions(+), 18 deletions(-)

diff --git a/games-engines/residualvm/metadata.xml b/games-engines/residualvm/metadata.xml
index f346e545798..c5d960e91c7 100644
--- a/games-engines/residualvm/metadata.xml
+++ b/games-engines/residualvm/metadata.xml
@@ -5,6 +5,9 @@
 		<email>games@gentoo.org</email>
 		<name>Gentoo Games Project</name>
 	</maintainer>
+	<use>
+		<flag name="mpeg2">enable mpeg2 codec for cutscenes</flag>
+	</use>
 	<upstream>
 		<remote-id type="sourceforge">residualvm</remote-id>
 	</upstream>

diff --git a/games-engines/residualvm/residualvm-9999.ebuild b/games-engines/residualvm/residualvm-9999.ebuild
index ded84a46d1d..0f0a4bb4dbc 100644
--- a/games-engines/residualvm/residualvm-9999.ebuild
+++ b/games-engines/residualvm/residualvm-9999.ebuild
@@ -15,20 +15,24 @@ else
 fi
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-IUSE=""
+IUSE="alsa debug jpeg mpeg2 mp3 opengl png truetype vorbis zlib"
 
 # TODO: fix dynamic plugin support
 # games crash without media-libs/libsdl[alsa]
 RDEPEND="
-	media-libs/alsa-lib
-	media-libs/freetype:2
 	media-libs/glew:0=
-	media-libs/libpng:0=
 	media-libs/libsdl2[X,sound,alsa,joystick,opengl,video]
-	sys-libs/zlib:=
 	virtual/glu
-	virtual/jpeg:0
-	virtual/opengl"
+	alsa? ( media-libs/alsa-lib )
+	jpeg? ( virtual/jpeg:0 )
+	mp3? ( media-libs/libmad )
+	mpeg2? ( media-libs/libmpeg2 )
+	opengl? ( virtual/opengl )
+	png? ( media-libs/libpng:0= )
+	truetype? ( media-libs/freetype:2 )
+	vorbis? ( media-libs/libvorbis )
+	zlib? ( sys-libs/zlib:= )
+"
 DEPEND="${RDEPEND}"
 BDEPEND="
 	virtual/pkgconfig
@@ -36,35 +40,40 @@ BDEPEND="
 
 src_configure() {
 	# not an autotools script
-	# most configure options currently do nothing, verify on version bump !!!
+	# some configure options currently do nothing, verify on version bump !!!
 	# disable explicitly, otherwise we get unneeded linkage (some copy-paste build system)
 	local myconf=(
 		--backend=sdl
-		--disable-debug
 		--disable-faad
 		--disable-flac
 		--disable-fluidsynth
 		--disable-libunity
-		--disable-mad
 		--disable-sparkle
-		--disable-translation
 		--disable-tremor
-		--disable-vorbis
 		--docdir="/usr/share/doc/${PF}"
 		--enable-all-engines
-		--enable-release-mode
-		--enable-zlib
+		--enable-verbose-build
+		--libdir="${EPREFIX}/usr/$(get_libdir)"
 		--host="${CHOST}"
 		--prefix="${EPREFIX}/usr"
+		$(use_enable alsa)
+		$(use_enable debug)
+		$(use_enable !debug release-mode)
+		$(use_enable jpeg)
+		$(use_enable mp3 mad)
+		$(use_enable mpeg2)
+		$(use_enable opengl)
+		$(use_enable opengl opengl-shaders)
+		$(use_enable png)
+		$(use_enable truetype freetype2)
+		$(use_enable vorbis)
+		$(use_enable zlib)
 	)
 	./configure "${myconf[@]}" "${EXTRA_ECONF}" || die
 }
 
 src_compile() {
-	emake \
-		VERBOSE_BUILD=1 \
-		AR="$(tc-getAR) cru" \
-		RANLIB=$(tc-getRANLIB)
+	emake AR="$(tc-getAR) cru" RANLIB=$(tc-getRANLIB)
 }
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
@ 2019-11-05  7:56 Lars Wendler
  0 siblings, 0 replies; 10+ messages in thread
From: Lars Wendler @ 2019-11-05  7:56 UTC (permalink / raw
  To: gentoo-commits

commit:     b68856aa4f014788855cb80a10c8022ae8b67a94
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  5 07:56:36 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Nov  5 07:56:52 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b68856aa

games-engines/residualvm: Simplified ebuild a bit

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 games-engines/residualvm/residualvm-9999.ebuild | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/games-engines/residualvm/residualvm-9999.ebuild b/games-engines/residualvm/residualvm-9999.ebuild
index 0f0a4bb4dbc..da2087300c2 100644
--- a/games-engines/residualvm/residualvm-9999.ebuild
+++ b/games-engines/residualvm/residualvm-9999.ebuild
@@ -18,7 +18,7 @@ SLOT="0"
 IUSE="alsa debug jpeg mpeg2 mp3 opengl png truetype vorbis zlib"
 
 # TODO: fix dynamic plugin support
-# games crash without media-libs/libsdl[alsa]
+# games crash without media-libs/libsdl2[alsa]
 RDEPEND="
 	media-libs/glew:0=
 	media-libs/libsdl2[X,sound,alsa,joystick,opengl,video]
@@ -80,15 +80,3 @@ src_install() {
 	default
 	doicon -s 256 icons/${PN}.png
 }
-
-pkg_preinst() {
-	xdg_pkg_preinst
-}
-
-pkg_postinst() {
-	xdg_pkg_postinst
-}
-
-pkg_postrm() {
-	xdg_pkg_postrm
-}


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

* [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
@ 2021-12-28 17:10 Ionen Wolkens
  0 siblings, 0 replies; 10+ messages in thread
From: Ionen Wolkens @ 2021-12-28 17:10 UTC (permalink / raw
  To: gentoo-commits

commit:     e8df3c4486cf234e626d2c6136983486510f0be5
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 28 15:04:00 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Dec 28 17:00:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8df3c44

games-engines/residualvm: drop 0.2.1-r1

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-engines/residualvm/Manifest                  |  1 -
 .../residualvm/residualvm-0.2.1-r1.ebuild          | 81 ----------------------
 2 files changed, 82 deletions(-)

diff --git a/games-engines/residualvm/Manifest b/games-engines/residualvm/Manifest
index 3aa86f9db791..fb840283578d 100644
--- a/games-engines/residualvm/Manifest
+++ b/games-engines/residualvm/Manifest
@@ -1,2 +1 @@
-DIST residualvm-0.2.1-sources.tar.bz2 5533814 BLAKE2B befcb42c823d31ff1e8793d0c902bfdf6b3728530c97b3f43ada5d3b2903a0cddba3247095d1674e62cdd75a6db28a7a5f3b1437e5c39cb5eccb37dff9d52fad SHA512 9eed93770ef1ad828934c32e937b861c93f1ebbb0d936f3f56668e654588f734dc88e29446f0a69f8f26475e96b8ce7ca85318758b99aabc9586756692c721da
 DIST residualvm-0.3.1-sources.tar.bz2 6711799 BLAKE2B 93d21bc5ee2c567b1ef256a69a2634761cd52211a0b2d926edc67b65e0cc1bf23b41c91225e6d43990d61e6c3761acf19defaa9b477ad882d332ad77c71af1a6 SHA512 491a77f1775718795d93f099fa39ec5888755ac1df610089c17209334b98ae783271078ed03a61ced09835aa327446804a55522d4b83f618dd3b843c231444a0

diff --git a/games-engines/residualvm/residualvm-0.2.1-r1.ebuild b/games-engines/residualvm/residualvm-0.2.1-r1.ebuild
deleted file mode 100644
index a9272195b281..000000000000
--- a/games-engines/residualvm/residualvm-0.2.1-r1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit desktop toolchain-funcs gnome2-utils
-
-DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures"
-HOMEPAGE="https://www.residualvm.org/"
-SRC_URI="mirror://sourceforge/${PN}/${P}-sources.tar.bz2"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# TODO: fix dynamic plugin support
-# games crash without media-libs/libsdl[alsa]
-RDEPEND="
-	media-libs/alsa-lib
-	media-libs/freetype:2
-	media-libs/libsdl[X,sound,alsa,joystick,opengl,video]
-	sys-libs/zlib
-	virtual/glu
-	virtual/opengl"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-	# not an autotools script
-	# most configure options currently do nothing, verify on version bump !!!
-	# disable explicitly, otherwise we get unneeded linkage (some copy-paste build system)
-	./configure \
-		--backend=sdl \
-		--disable-debug \
-		--disable-faad \
-		--disable-flac \
-		--disable-fluidsynth \
-		--disable-libunity \
-		--disable-mad \
-		--disable-sparkle \
-		--disable-translation \
-		--disable-tremor \
-		--disable-vorbis \
-		--docdir="/usr/share/doc/${PF}" \
-		--enable-all-engines \
-		--enable-release-mode \
-		--enable-zlib \
-		|| die "configure failed"
-}
-
-src_compile() {
-	emake \
-		VERBOSE_BUILD=1 \
-		AR="$(tc-getAR) cru" \
-		RANLIB=$(tc-getRANLIB)
-}
-
-src_install() {
-	dobin residualvm
-
-	insinto "/usr/share/${PN}"
-	doins gui/themes/modern.zip dists/engine-data/residualvm-grim-patch.lab
-
-	doicon -s scalable icons/${PN}.svg
-	doicon -s 256 icons/${PN}.png
-	domenu dists/${PN}.desktop
-
-	doman dists/${PN}.6
-	dodoc AUTHORS README.md KNOWN_BUGS TODO
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_icon_cache_update
-}


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

* [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/
@ 2022-03-20  0:05 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-03-20  0:05 UTC (permalink / raw
  To: gentoo-commits

commit:     3a07439dab6c90a145abb6b403c76eb43bfad2b2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 23:50:26 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 23:50:26 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a07439d

games-engines/residualvm: [QA] fix tc-get* quoting

This can cause build problems for e.g. 32-bit (gcc -m32 ...)

Signed-off-by: Sam James <sam <AT> gentoo.org>

 games-engines/residualvm/residualvm-0.3.1-r2.ebuild | 4 ++--
 games-engines/residualvm/residualvm-9999.ebuild     | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/games-engines/residualvm/residualvm-0.3.1-r2.ebuild b/games-engines/residualvm/residualvm-0.3.1-r2.ebuild
index 43512e6b067d..327b61a26d51 100644
--- a/games-engines/residualvm/residualvm-0.3.1-r2.ebuild
+++ b/games-engines/residualvm/residualvm-0.3.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -77,7 +77,7 @@ src_configure() {
 }
 
 src_compile() {
-	emake AR="$(tc-getAR) cru" RANLIB=$(tc-getRANLIB)
+	emake AR="$(tc-getAR) cru" RANLIB="$(tc-getRANLIB)"
 }
 
 src_install() {

diff --git a/games-engines/residualvm/residualvm-9999.ebuild b/games-engines/residualvm/residualvm-9999.ebuild
index 18b1a8d14d7c..704091853c9a 100644
--- a/games-engines/residualvm/residualvm-9999.ebuild
+++ b/games-engines/residualvm/residualvm-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -73,7 +73,7 @@ src_configure() {
 }
 
 src_compile() {
-	emake AR="$(tc-getAR) cru" RANLIB=$(tc-getRANLIB)
+	emake AR="$(tc-getAR) cru" RANLIB="$(tc-getRANLIB)"
 }
 
 src_install() {


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

end of thread, other threads:[~2022-03-20  0:05 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-28 17:10 [gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/ Ionen Wolkens
  -- strict thread matches above, loose matches on Subject: below --
2022-03-20  0:05 Sam James
2019-11-05  7:56 Lars Wendler
2019-03-15 22:45 Lars Wendler
2019-03-15 22:45 Lars Wendler
2019-03-15 22:45 Lars Wendler
2019-03-15 21:53 Lars Wendler
2018-09-12 10:57 Lars Wendler
2018-09-12 10:57 Lars Wendler
2017-01-20  1:09 Austin English

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