* [gentoo-commits] proj/gamerlay:master commit in: games-fps/dhewm3/
@ 2012-08-13 7:28 Azamat H. Hackimov
0 siblings, 0 replies; 5+ messages in thread
From: Azamat H. Hackimov @ 2012-08-13 7:28 UTC (permalink / raw
To: gentoo-commits
commit: d6efe99622af994cc514c1d1ed8c91ad7c6515e0
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Aug 13 07:28:32 2012 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Mon Aug 13 07:28:32 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=d6efe996
[games-fps/dhewm3] Port of Doom3, initial commit.
(Portage version: 2.1.11.9/git/Linux x86_64, unsigned Manifest commit)
---
games-fps/dhewm3/dhewm3-9999.ebuild | 81 +++++++++++++++++++++++++++++++++++
games-fps/dhewm3/metadata.xml | 21 +++++++++
2 files changed, 102 insertions(+), 0 deletions(-)
diff --git a/games-fps/dhewm3/dhewm3-9999.ebuild b/games-fps/dhewm3/dhewm3-9999.ebuild
new file mode 100644
index 0000000..7cd4e0c
--- /dev/null
+++ b/games-fps/dhewm3/dhewm3-9999.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit cmake-utils games git-2
+
+DESCRIPTION="A Doom 3 GPL source modification."
+HOMEPAGE="https://github.com/dhewm/dhewm3"
+#SRC_URI="mirror://gentoo/doom3.png"
+EGIT_REPO_URI="https://github.com/dhewm/dhewm3.git"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS=""
+IUSE="cdinstall curl dedicated roe"
+
+# TODO There declared SDL2 support...
+DEPEND="virtual/jpeg
+ media-libs/libogg
+ >=media-libs/libsdl-1.2
+ media-libs/libvorbis
+ media-libs/openal
+ curl? ( net-misc/curl )
+ sys-libs/zlib"
+RDEPEND="${DEPEND}
+ cdinstall? (
+ >=games-fps/doom3-data-1.1.1282-r1
+ roe? ( games-fps/doom3-roe )
+ )"
+
+CMAKE_USE_DIR="${S}/neo"
+
+src_prepare() {
+ sed -i -e 's:\(${CMAKE_INSTALL_FULL_DATADIR}\)/dhewm3:\1:' neo/CMakeLists.txt
+}
+
+src_configure() {
+ # TODO There declared SDL2 support...
+ mycmakeargs=(
+ "-DDEDICATED=ON"
+ $(cmake-utils_use_disable dedicated CORE)
+ $(cmake-utils_use_disable dedicated BASE)
+ $(cmake-utils_use_disable dedicated D3XP)
+ "-DCMAKE_INSTALL_BINDIR=${GAMES_BINDIR}"
+ "-DCMAKE_INSTALL_DATADIR=${GAMES_DATADIR}/doom3"
+ )
+ cmake-utils_src_configure
+}
+
+src_compile() {
+ cmake-utils_src_compile
+}
+
+src_install() {
+ DOCS="README.md" cmake-utils_src_install
+# newicon doom3.png ${PN}.png
+# make_desktop_entry ${PN} "Doom 3 - dhewm"
+ prepgamesdirs
+}
+
+pkg_postinst() {
+ games_pkg_postinst
+ if ! use cdinstall; then
+ elog "You need to copy *.pk4 from either your installation media or your hard drive to"
+ elog "${GAMES_DATADIR}/doom3/base before running the game,"
+ elog "or 'emerge games-fps/doom3-data' to install from CD."
+ echo
+ if use roe ; then
+ elog "To use the Resurrection of Evil expansion pack, you also need to copy *.pk4"
+ elog "to ${GAMES_DATADIR}/doom3/d3xp from the RoE CD before running the game,"
+ elog "or 'emerge doom3-roe' to install from CD."
+ fi
+ fi
+
+ echo
+ elog "To play the game, run:"
+ elog " ${PN}"
+ echo
+}
diff --git a/games-fps/dhewm3/metadata.xml b/games-fps/dhewm3/metadata.xml
new file mode 100644
index 0000000..c1e1824
--- /dev/null
+++ b/games-fps/dhewm3/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer>
+<email>azamat.hackimov@gmail.com</email>
+<name>Azamat H. Hackimov</name>
+</maintainer>
+<longdescription lang="en">
+A Doom 3 GPL source modification.
+Compared to the original DOOM 3, the changes of dhewm 3 worth mentioning are:
+ * 64bit port
+ * SDL for low level OS support, OpenGL and input handling
+ * OpenAL for audio output, all OS specific audio backends are gone
+ * OpenAL EFX for EAX reverb effects (read: EAX on all platforms)
+ * A portable build system based on CMake
+ * (Cross-)compilation with mingw-w64
+</longdescription>
+<use>
+ <flag name="roe">Adds support for the Resurrection of Evil expansion</flag>
+</use>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-fps/dhewm3/
@ 2018-11-15 21:35 Azamat H. Hackimov
0 siblings, 0 replies; 5+ messages in thread
From: Azamat H. Hackimov @ 2018-11-15 21:35 UTC (permalink / raw
To: gentoo-commits
commit: 608f5ce6b879a32526697c3270f7b4b8b30bbb8f
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Thu Nov 15 20:41:01 2018 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Thu Nov 15 20:41:01 2018 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=608f5ce6
games-fps/dhewm3: bump to 1.5.0_rc1, removed live
Minor fixes to metadata
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
...{dhewm3-9999.ebuild => dhewm3-1.5.0_rc1.ebuild} | 43 +++++++---------------
games-fps/dhewm3/metadata.xml | 5 +--
2 files changed, 15 insertions(+), 33 deletions(-)
diff --git a/games-fps/dhewm3/dhewm3-9999.ebuild b/games-fps/dhewm3/dhewm3-1.5.0_rc1.ebuild
similarity index 52%
rename from games-fps/dhewm3/dhewm3-9999.ebuild
rename to games-fps/dhewm3/dhewm3-1.5.0_rc1.ebuild
index cda76dc..d07d8f9 100644
--- a/games-fps/dhewm3/dhewm3-9999.ebuild
+++ b/games-fps/dhewm3/dhewm3-1.5.0_rc1.ebuild
@@ -1,34 +1,33 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit cmake-utils git-r3
+inherit cmake-utils
+
+MY_PV=${PV/_rc/_RC}
DESCRIPTION="A Doom 3 GPL source modification."
HOMEPAGE="https://github.com/dhewm/dhewm3"
-EGIT_REPO_URI="https://github.com/dhewm/dhewm3.git"
+SRC_URI="https://github.com/dhewm/dhewm3/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS=""
-IUSE="cdinstall dedicated roe"
+KEYWORDS="~amd64"
+IUSE="dedicated"
DEPEND="
- virtual/jpeg
+ virtual/jpeg:0
media-libs/libogg
media-libs/libsdl2
media-libs/libvorbis
media-libs/openal
net-misc/curl
- sys-libs/zlib
+ sys-libs/zlib:=
"
-RDEPEND="${DEPEND}
- cdinstall? (
- >=games-fps/doom3-data-1.1.1282-r1
- roe? ( games-fps/doom3-roe )
- )"
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/${PN}-${MY_PV}"
CMAKE_USE_DIR="${S}/neo"
DATADIR=/usr/share/dhewm3
@@ -57,25 +56,11 @@ src_install() {
newicon "${CMAKE_USE_DIR}"/sys/linux/setup/image/doom3.png "${PN}".png
make_desktop_entry "${PN}" "Doom 3 - dhewm"
-
- # TODO: roe desktop file
}
pkg_postinst() {
- if ! use cdinstall; then
- elog "You need to copy *.pk4 from either your installation media or your hard drive to"
- elog "${DATADIR}/base before running the game,"
- elog "or 'emerge games-fps/doom3-data' to install from CD."
- echo
- if use roe ; then
- elog "To use the Resurrection of Evil expansion pack, you also need to copy *.pk4"
- elog "to ${DATADIR}/d3xp from the RoE CD before running the game,"
- elog "or 'emerge doom3-roe' to install from CD."
- fi
- fi
-
- echo
- elog "To play the game, run:"
- elog " ${PN}"
+ elog "You need to copy *.pk4 from either your installation media or your hard drive to"
+ elog "${DATADIR}/base before running the game,"
+ elog "or 'emerge games-fps/doom3-data' to install from CD."
echo
}
diff --git a/games-fps/dhewm3/metadata.xml b/games-fps/dhewm3/metadata.xml
index c1e1824..b74872d 100644
--- a/games-fps/dhewm3/metadata.xml
+++ b/games-fps/dhewm3/metadata.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer>
+<maintainer type="person">
<email>azamat.hackimov@gmail.com</email>
<name>Azamat H. Hackimov</name>
</maintainer>
@@ -15,7 +15,4 @@ Compared to the original DOOM 3, the changes of dhewm 3 worth mentioning are:
* A portable build system based on CMake
* (Cross-)compilation with mingw-w64
</longdescription>
-<use>
- <flag name="roe">Adds support for the Resurrection of Evil expansion</flag>
-</use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-fps/dhewm3/
@ 2019-08-08 21:46 Azamat H. Hackimov
0 siblings, 0 replies; 5+ messages in thread
From: Azamat H. Hackimov @ 2019-08-08 21:46 UTC (permalink / raw
To: gentoo-commits
commit: d29b451b13e02f13b3078331db46e3314a226034
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Thu Aug 8 21:31:23 2019 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Thu Aug 8 21:31:23 2019 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=d29b451b
games-fps/dhewm3: update to 1.5.1_pre1
Package-Manager: Portage-2.3.66, Repoman-2.3.16
.../dhewm3/{dhewm3-1.5.0_rc1.ebuild => dhewm3-1.5.1_pre1.ebuild} | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/games-fps/dhewm3/dhewm3-1.5.0_rc1.ebuild b/games-fps/dhewm3/dhewm3-1.5.1_pre1.ebuild
similarity index 95%
rename from games-fps/dhewm3/dhewm3-1.5.0_rc1.ebuild
rename to games-fps/dhewm3/dhewm3-1.5.1_pre1.ebuild
index d07d8f9..cdb8cdb 100644
--- a/games-fps/dhewm3/dhewm3-1.5.0_rc1.ebuild
+++ b/games-fps/dhewm3/dhewm3-1.5.1_pre1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit cmake-utils
-MY_PV=${PV/_rc/_RC}
+MY_PV=${PV/_pre/_PRE}
DESCRIPTION="A Doom 3 GPL source modification."
HOMEPAGE="https://github.com/dhewm/dhewm3"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-fps/dhewm3/
@ 2021-07-12 20:47 Azamat H. Hackimov
0 siblings, 0 replies; 5+ messages in thread
From: Azamat H. Hackimov @ 2021-07-12 20:47 UTC (permalink / raw
To: gentoo-commits
commit: bb14430918c8efadda0508faef1a10423e5150c1
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Jul 12 20:13:46 2021 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Mon Jul 12 20:45:59 2021 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=bb144309
games-fps/dhewm3: update to 1.5.1
Migrage to cmake.eclass
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
games-fps/dhewm3/dhewm3-1.5.1.ebuild | 51 ++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/games-fps/dhewm3/dhewm3-1.5.1.ebuild b/games-fps/dhewm3/dhewm3-1.5.1.ebuild
new file mode 100644
index 0000000..91f55cb
--- /dev/null
+++ b/games-fps/dhewm3/dhewm3-1.5.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A Doom 3 GPL source modification."
+HOMEPAGE="https://github.com/dhewm/dhewm3"
+SRC_URI="https://github.com/dhewm/dhewm3/releases/download/${PV}/${P}-src.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="dedicated"
+
+DEPEND="
+ virtual/jpeg:0
+ media-libs/libogg
+ media-libs/libsdl2
+ media-libs/libvorbis
+ media-libs/openal
+ net-misc/curl
+ sys-libs/zlib:=
+"
+RDEPEND="${DEPEND}"
+
+CMAKE_USE_DIR="${S}/neo"
+
+DATADIR=/usr/share/dhewm3
+DOCS="README.md"
+
+# TODO: patch for common games-dir with roe and doom3-data
+
+src_configure() {
+ mycmakeargs=(
+ -DDEDICATED=ON
+ -DSDL2=ON
+ -DCORE=$(usex dedicated OFF ON)
+ -DBASE=$(usex dedicated OFF ON)
+ -DD3XP=$(usex dedicated OFF ON)
+ )
+ cmake_src_configure
+}
+
+pkg_postinst() {
+ elog "You need to copy *.pk4 from either your installation media or your hard drive to"
+ elog "/usr/share/dhewm3/base before running the game,"
+ elog "or 'emerge games-fps/doom3-data' to install from CD."
+ echo
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-fps/dhewm3/
@ 2021-07-12 20:47 Azamat H. Hackimov
0 siblings, 0 replies; 5+ messages in thread
From: Azamat H. Hackimov @ 2021-07-12 20:47 UTC (permalink / raw
To: gentoo-commits
commit: ffd7ecdff6b97361f0583adff90bd8c077773422
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Jul 12 20:14:04 2021 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Mon Jul 12 20:45:59 2021 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=ffd7ecdf
games-fps/dhewm3: remove old
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
games-fps/dhewm3/dhewm3-1.5.1_pre1.ebuild | 66 -------------------------------
1 file changed, 66 deletions(-)
diff --git a/games-fps/dhewm3/dhewm3-1.5.1_pre1.ebuild b/games-fps/dhewm3/dhewm3-1.5.1_pre1.ebuild
deleted file mode 100644
index cdb8cdb..0000000
--- a/games-fps/dhewm3/dhewm3-1.5.1_pre1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake-utils
-
-MY_PV=${PV/_pre/_PRE}
-
-DESCRIPTION="A Doom 3 GPL source modification."
-HOMEPAGE="https://github.com/dhewm/dhewm3"
-SRC_URI="https://github.com/dhewm/dhewm3/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="dedicated"
-
-DEPEND="
- virtual/jpeg:0
- media-libs/libogg
- media-libs/libsdl2
- media-libs/libvorbis
- media-libs/openal
- net-misc/curl
- sys-libs/zlib:=
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-CMAKE_USE_DIR="${S}/neo"
-
-DATADIR=/usr/share/dhewm3
-DOCS="README.md"
-
-# TODO: patch for common games-dir with roe and doom3-data
-
-src_configure() {
- mycmakeargs=(
- -DDEDICATED=ON
- -DSDL2=ON
- -DCORE=$(usex dedicated OFF ON)
- -DBASE=$(usex dedicated OFF ON)
- -DD3XP=$(usex dedicated OFF ON)
- )
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-}
-
-src_install() {
- keepdir "${DATADIR}"
- cmake-utils_src_install
-
- newicon "${CMAKE_USE_DIR}"/sys/linux/setup/image/doom3.png "${PN}".png
- make_desktop_entry "${PN}" "Doom 3 - dhewm"
-}
-
-pkg_postinst() {
- elog "You need to copy *.pk4 from either your installation media or your hard drive to"
- elog "${DATADIR}/base before running the game,"
- elog "or 'emerge games-fps/doom3-data' to install from CD."
- echo
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-07-12 20:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-12 20:47 [gentoo-commits] proj/gamerlay:master commit in: games-fps/dhewm3/ Azamat H. Hackimov
-- strict thread matches above, loose matches on Subject: below --
2021-07-12 20:47 Azamat H. Hackimov
2019-08-08 21:46 Azamat H. Hackimov
2018-11-15 21:35 Azamat H. Hackimov
2012-08-13 7:28 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