* [gentoo-commits] proj/gamerlay:master commit in: games-engines/residualvm/
@ 2012-04-16 17:05 Azamat H. Hackimov
0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2012-04-16 17:05 UTC (permalink / raw
To: gentoo-commits
commit: 5cf7ab2ffe2f80a6fb8743317ef37b9b7bc907d2
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Apr 16 17:02:01 2012 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Mon Apr 16 17:04:26 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=5cf7ab2f
[games-engines/residualvm] pkgmove games-engines/residual to games-engines/residualvm
Major ebuild enchancement.
(Portage version: 2.1.10.49/git/Linux x86_64, unsigned Manifest commit)
---
games-engines/residualvm/metadata.xml | 24 ++++++++
games-engines/residualvm/residualvm-9999.ebuild | 65 +++++++++++++++++++++++
2 files changed, 89 insertions(+), 0 deletions(-)
diff --git a/games-engines/residualvm/metadata.xml b/games-engines/residualvm/metadata.xml
new file mode 100644
index 0000000..c207ad5
--- /dev/null
+++ b/games-engines/residualvm/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd></herd>
+ <maintainer>
+ <email>azamat.hackimov@gmail.com</email>
+ <name>Azamat H. Hackimov</name>
+ </maintainer>
+<longdescription lang="en">
+A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures
+</longdescription>
+<use>
+ <flag name='faad'>Enable faad codec support</flag>
+</use>
+<use>
+ <flag name='fluidsynth'>Enable fluidsynth support</flag>
+</use>
+<use>
+ <flag name='mpeg2'>Enable mpeg2 codec for cutscenes</flag>
+</use>
+<use>
+ <flag name='nasm'>Enable nasm assebler inlines</flag>
+</use>
+</pkgmetadata>
diff --git a/games-engines/residualvm/residualvm-9999.ebuild b/games-engines/residualvm/residualvm-9999.ebuild
new file mode 100644
index 0000000..511842e
--- /dev/null
+++ b/games-engines/residualvm/residualvm-9999.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=3
+
+inherit games git-2
+
+DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures"
+HOMEPAGE="http://www.residualvm.org/"
+#SRC_URI=""
+EGIT_REPO_URI="https://github.com/residualvm/residualvm.git"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS=""
+IUSE="alsa faad flac fluidsynth mad mpeg2 nasm png timidity vorbis"
+
+RDEPEND="
+ faad? ( media-libs/faad2 )
+ flac? ( media-libs/flac )
+ media-libs/freetype
+ mad? ( media-libs/libmad )
+ mpeg2? ( media-libs/libmpeg2 )
+ png? ( media-libs/libpng )
+ vorbis? ( media-libs/libvorbis )
+ media-libs/libsdl
+ fluidsynth? ( media-sound/fluidsynth )
+ timidity? ( media-sound/timidity++ )
+ sys-libs/zlib
+ virtual/opengl"
+DEPEND="${RDEPEND}
+ nasm? ( dev-lang/nasm )"
+
+src_configure() {
+ # econf can't work here, configure script not have some options
+ ./configure \
+ --backend=sdl --enable-release --disable-tremor \
+ --disable-sparkle \
+ --prefix="${GAMES_PREFIX}" \
+ --datadir="${GAMES_DATADIR}/${PN}" \
+ --docdir="${ED}/usr/share/doc/${PF}" \
+ --disable-libunity \
+ $(use_enable faad) \
+ $(use_enable flac) \
+ $(use_enable fluidsynth) \
+ $(use_enable mad) \
+ $(use_enable mpeg2) \
+ $(use_enable nasm) \
+ $(use_enable png) \
+ $(use_enable vorbis) \
+ || die "configure failed"
+}
+
+src_install() {
+ dogamesbin residualvm
+ insinto "${GAMES_DATADIR}/${PN}"
+ doins gui/themes/modern.zip
+ doins dists/engine-data/residualvm-grim-patch.lab
+ doicon icons/${PN}.xpm
+ domenu dists/${PN}.desktop
+ doman dists/${PN}.6
+ dodoc README
+ prepgamesdirs
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-engines/residualvm/
@ 2013-01-04 16:47 Azamat H. Hackimov
0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2013-01-04 16:47 UTC (permalink / raw
To: gentoo-commits
commit: 6e84cb1a3bff1dac5992a28aea268f9d556f8ed3
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Fri Jan 4 16:46:25 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Fri Jan 4 16:46:25 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=6e84cb1a
[games-engines/residualvm] First version 0.1.0 with tarball, remove 9999 as broken.
Package-Manager: portage-2.1.11.31
Manifest-Sign-Key: A018DE8C
---
games-engines/residualvm/ChangeLog | 10 +++++++-
games-engines/residualvm/metadata.xml | 3 --
...idualvm-9999.ebuild => residualvm-0.1.0.ebuild} | 23 ++++++++++---------
3 files changed, 20 insertions(+), 16 deletions(-)
diff --git a/games-engines/residualvm/ChangeLog b/games-engines/residualvm/ChangeLog
index d564d5e..76b4a30 100644
--- a/games-engines/residualvm/ChangeLog
+++ b/games-engines/residualvm/ChangeLog
@@ -1,11 +1,17 @@
# ChangeLog for games-engines/residualvm
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*residualvm-0.1.0 (04 Jan 2013)
+
+ 04 Jan 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com>
+ +residualvm-0.1.0.ebuild, -residualvm-9999.ebuild, metadata.xml:
+ [games-engines/residualvm] First version 0.1.0 with tarball, remove 9999 as
+ broken.
+
*residualvm-9999 (16 Apr 2012)
16 Apr 2012; Azamat H. Hackimov <azamat.hackimov@gmail.com> +metadata.xml,
+residualvm-9999.ebuild:
pkgmove games-engines/residual to games-engines/residualvm
Major ebuild enchancement.
-
diff --git a/games-engines/residualvm/metadata.xml b/games-engines/residualvm/metadata.xml
index c207ad5..21bb86f 100644
--- a/games-engines/residualvm/metadata.xml
+++ b/games-engines/residualvm/metadata.xml
@@ -16,9 +16,6 @@ A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures
<flag name='fluidsynth'>Enable fluidsynth support</flag>
</use>
<use>
- <flag name='mpeg2'>Enable mpeg2 codec for cutscenes</flag>
-</use>
-<use>
<flag name='nasm'>Enable nasm assebler inlines</flag>
</use>
</pkgmetadata>
diff --git a/games-engines/residualvm/residualvm-9999.ebuild b/games-engines/residualvm/residualvm-0.1.0.ebuild
similarity index 78%
rename from games-engines/residualvm/residualvm-9999.ebuild
rename to games-engines/residualvm/residualvm-0.1.0.ebuild
index 511842e..863b789 100644
--- a/games-engines/residualvm/residualvm-9999.ebuild
+++ b/games-engines/residualvm/residualvm-0.1.0.ebuild
@@ -1,33 +1,31 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=3
+EAPI=5
-inherit games git-2
+inherit games
DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures"
HOMEPAGE="http://www.residualvm.org/"
-#SRC_URI=""
-EGIT_REPO_URI="https://github.com/residualvm/residualvm.git"
+SRC_URI="mirror://sourceforge/${PN}/${P}-sources.tar.bz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
-KEYWORDS=""
-IUSE="alsa faad flac fluidsynth mad mpeg2 nasm png timidity vorbis"
+KEYWORDS="~amd64 ~x86"
+IUSE="alsa faad flac fluidsynth mad nasm nls png timidity vorbis zlib"
RDEPEND="
faad? ( media-libs/faad2 )
flac? ( media-libs/flac )
- media-libs/freetype
+ media-libs/freetype:2
mad? ( media-libs/libmad )
- mpeg2? ( media-libs/libmpeg2 )
png? ( media-libs/libpng )
vorbis? ( media-libs/libvorbis )
media-libs/libsdl
fluidsynth? ( media-sound/fluidsynth )
timidity? ( media-sound/timidity++ )
- sys-libs/zlib
+ zlib? ( sys-libs/zlib )
virtual/opengl"
DEPEND="${RDEPEND}
nasm? ( dev-lang/nasm )"
@@ -35,20 +33,23 @@ DEPEND="${RDEPEND}
src_configure() {
# econf can't work here, configure script not have some options
./configure \
+ --enable-all-engines \
--backend=sdl --enable-release --disable-tremor \
--disable-sparkle \
--prefix="${GAMES_PREFIX}" \
--datadir="${GAMES_DATADIR}/${PN}" \
--docdir="${ED}/usr/share/doc/${PF}" \
--disable-libunity \
+ $(use_enable alsa) \
$(use_enable faad) \
$(use_enable flac) \
$(use_enable fluidsynth) \
$(use_enable mad) \
- $(use_enable mpeg2) \
$(use_enable nasm) \
+ $(use_enable nls translation) \
$(use_enable png) \
$(use_enable vorbis) \
+ $(use_enable zlib) \
|| die "configure failed"
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-engines/residualvm/
@ 2013-01-15 15:32 Azamat H. Hackimov
0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2013-01-15 15:32 UTC (permalink / raw
To: gentoo-commits
commit: 7f47879e940fe5cf70377e3558113bb86df748c6
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Tue Jan 15 15:32:02 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Tue Jan 15 15:32:02 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=7f47879e
In portage now.
---
games-engines/residualvm/ChangeLog | 17 ------
games-engines/residualvm/metadata.xml | 21 -------
games-engines/residualvm/residualvm-0.1.0.ebuild | 66 ----------------------
3 files changed, 0 insertions(+), 104 deletions(-)
diff --git a/games-engines/residualvm/ChangeLog b/games-engines/residualvm/ChangeLog
deleted file mode 100644
index 76b4a30..0000000
--- a/games-engines/residualvm/ChangeLog
+++ /dev/null
@@ -1,17 +0,0 @@
-# ChangeLog for games-engines/residualvm
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-*residualvm-0.1.0 (04 Jan 2013)
-
- 04 Jan 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com>
- +residualvm-0.1.0.ebuild, -residualvm-9999.ebuild, metadata.xml:
- [games-engines/residualvm] First version 0.1.0 with tarball, remove 9999 as
- broken.
-
-*residualvm-9999 (16 Apr 2012)
-
- 16 Apr 2012; Azamat H. Hackimov <azamat.hackimov@gmail.com> +metadata.xml,
- +residualvm-9999.ebuild:
- pkgmove games-engines/residual to games-engines/residualvm
- Major ebuild enchancement.
diff --git a/games-engines/residualvm/metadata.xml b/games-engines/residualvm/metadata.xml
deleted file mode 100644
index 21bb86f..0000000
--- a/games-engines/residualvm/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd></herd>
- <maintainer>
- <email>azamat.hackimov@gmail.com</email>
- <name>Azamat H. Hackimov</name>
- </maintainer>
-<longdescription lang="en">
-A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D adventures
-</longdescription>
-<use>
- <flag name='faad'>Enable faad codec support</flag>
-</use>
-<use>
- <flag name='fluidsynth'>Enable fluidsynth support</flag>
-</use>
-<use>
- <flag name='nasm'>Enable nasm assebler inlines</flag>
-</use>
-</pkgmetadata>
diff --git a/games-engines/residualvm/residualvm-0.1.0.ebuild b/games-engines/residualvm/residualvm-0.1.0.ebuild
deleted file mode 100644
index 863b789..0000000
--- a/games-engines/residualvm/residualvm-0.1.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit games
-
-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="alsa faad flac fluidsynth mad nasm nls png timidity vorbis zlib"
-
-RDEPEND="
- faad? ( media-libs/faad2 )
- flac? ( media-libs/flac )
- media-libs/freetype:2
- mad? ( media-libs/libmad )
- png? ( media-libs/libpng )
- vorbis? ( media-libs/libvorbis )
- media-libs/libsdl
- fluidsynth? ( media-sound/fluidsynth )
- timidity? ( media-sound/timidity++ )
- zlib? ( sys-libs/zlib )
- virtual/opengl"
-DEPEND="${RDEPEND}
- nasm? ( dev-lang/nasm )"
-
-src_configure() {
- # econf can't work here, configure script not have some options
- ./configure \
- --enable-all-engines \
- --backend=sdl --enable-release --disable-tremor \
- --disable-sparkle \
- --prefix="${GAMES_PREFIX}" \
- --datadir="${GAMES_DATADIR}/${PN}" \
- --docdir="${ED}/usr/share/doc/${PF}" \
- --disable-libunity \
- $(use_enable alsa) \
- $(use_enable faad) \
- $(use_enable flac) \
- $(use_enable fluidsynth) \
- $(use_enable mad) \
- $(use_enable nasm) \
- $(use_enable nls translation) \
- $(use_enable png) \
- $(use_enable vorbis) \
- $(use_enable zlib) \
- || die "configure failed"
-}
-
-src_install() {
- dogamesbin residualvm
- insinto "${GAMES_DATADIR}/${PN}"
- doins gui/themes/modern.zip
- doins dists/engine-data/residualvm-grim-patch.lab
- doicon icons/${PN}.xpm
- domenu dists/${PN}.desktop
- doman dists/${PN}.6
- dodoc README
- prepgamesdirs
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-01-15 15:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-04 16:47 [gentoo-commits] proj/gamerlay:master commit in: games-engines/residualvm/ Azamat H. Hackimov
-- strict thread matches above, loose matches on Subject: below --
2013-01-15 15:32 Azamat H. Hackimov
2012-04-16 17:05 Azamat H. Hackimov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox