public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gamerlay:master commit in: games-engines/openxcom/
@ 2014-06-15 19:18 Azamat H. Hackimov
  0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2014-06-15 19:18 UTC (permalink / raw
  To: gentoo-commits

commit:     e42411726ebd3c84df599404a04e7c50d35c4877
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sun Jun 15 19:15:34 2014 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Sun Jun 15 19:15:34 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=e4241172

[games-engines/openxcom] rename category, cleanup.

Package-Manager: portage-2.2.8-r1
Manifest-Sign-Key: A018DE8C

---
 games-engines/openxcom/metadata.xml                | 15 +++++
 games-engines/openxcom/openxcom-1.0.0.ebuild       | 67 ++++++++++++++++++++++
 .../openxcom/openxcom-1.0_pre20140614.ebuild       | 64 +++++++++++++++++++++
 3 files changed, 146 insertions(+)

diff --git a/games-engines/openxcom/metadata.xml b/games-engines/openxcom/metadata.xml
new file mode 100644
index 0000000..0bbbca9
--- /dev/null
+++ b/games-engines/openxcom/metadata.xml
@@ -0,0 +1,15 @@
+<?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">
+An open-source reimplementation of the popular UFO: Enemy Unknown.
+</longdescription>
+<longdescription lang="ru">
+Открытая реализация популярной тактической стратегии 1994 года UFO: Enemy Unknown.
+</longdescription>
+</pkgmetadata>
+

diff --git a/games-engines/openxcom/openxcom-1.0.0.ebuild b/games-engines/openxcom/openxcom-1.0.0.ebuild
new file mode 100644
index 0000000..80e8dc3
--- /dev/null
+++ b/games-engines/openxcom/openxcom-1.0.0.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-engines/openxcom/openxcom-1.0.0.ebuild,v 1.1 2014/06/14 19:33:21 mr_bones_ Exp $
+
+EAPI=5
+inherit eutils cmake-utils gnome2-utils games
+
+DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
+HOMEPAGE="http://openxcom.org/"
+SRC_URI="http://openxcom.org/wp-content/uploads/downloads/2014/06/${P}.tar.gz"
+
+LICENSE="GPL-3 CC-BY-SA-4.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND=">=dev-cpp/yaml-cpp-0.5.1
+	media-libs/libsdl[opengl,video]
+	media-libs/sdl-gfx
+	media-libs/sdl-image[png]
+	media-libs/sdl-mixer"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen )"
+
+DOCS=( README.txt )
+
+src_configure() {
+	mycmakeargs=(
+		"-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
+		"-DDATADIR=${GAMES_DATADIR}/${PN}"
+	)
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	use doc && cmake-utils_src_compile doxygen
+	cmake-utils_src_compile
+}
+
+src_install() {
+	cmake-utils_src_install
+	use doc && dohtml -r "${CMAKE_BUILD_DIR}"/docs/html/*
+	doicon -s scalable res/linux/icons/openxcom.svg
+	newicon -s 48 res/linux/icons/openxcom_48x48.png openxcom.png
+	newicon -s 128 res/linux/icons/openxcom_128x128.png openxcom.png
+	domenu res/linux/openxcom.desktop
+
+	prepgamesdirs
+}
+
+pkg_preinst() {
+	games_pkg_preinst
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	games_pkg_postinst
+	gnome2_icon_cache_update
+	echo
+	elog "In order to play you need copy GEODATA, GEOGRAPH, MAPS, ROUTES, SOUND,"
+	elog "TERRAIN, UFOGRAPH, UFOINTRO, UNITS folders from original X-COM game to"
+	elog "${GAMES_DATADIR}/${PN}/data"
+}
+
+pkg_postrm() {
+	gnome2_icon_cache_update
+}

diff --git a/games-engines/openxcom/openxcom-1.0_pre20140614.ebuild b/games-engines/openxcom/openxcom-1.0_pre20140614.ebuild
new file mode 100644
index 0000000..f9df84f
--- /dev/null
+++ b/games-engines/openxcom/openxcom-1.0_pre20140614.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-utils games git-2
+
+DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
+HOMEPAGE="http://openxcom.org/"
+# For translation files
+SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2014_06_13_1923.zip"
+EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
+EGIT_COMMIT=71c8b2a2779ebd76f621e404d472d39fc4da022a
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug doc"
+
+RDEPEND="app-arch/unzip
+	>=dev-cpp/yaml-cpp-0.5.1
+	media-libs/libsdl
+	media-libs/sdl-gfx
+	media-libs/sdl-image
+	media-libs/sdl-mixer
+	media-sound/timidity++"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen )"
+
+S="${WORKDIR}/OpenXcom"
+
+DOCS=( README.txt )
+
+src_configure() {
+	mycmakeargs=(
+		"-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
+		"-DDATADIR=${GAMES_DATADIR}/${PN}"
+	)
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	use doc && cmake-utils_src_compile doxygen
+	cmake-utils_src_compile
+}
+
+src_install() {
+	cmake-utils_src_install
+	use doc && dohtml -r "${CMAKE_BUILD_DIR}"/docs/html/*
+	insinto "${GAMES_DATADIR}/${PN}/data/"
+	doins -r "../openxcom/data/Language/"
+	doicon res/linux/icons/openxcom.svg
+	domenu res/linux/openxcom.desktop
+
+	prepgamesdirs
+}
+
+pkg_postinst() {
+	games_pkg_postinst
+	elog "In order to play you need copy GEODATA, GEOGRAPH, MAPS, ROUTES, SOUND,"
+	elog "TERRAIN, UFOGRAPH, UFOINTRO, UNITS folders from original X-COM game to"
+	elog "${GAMES_DATADIR}/${PN}/data"
+}


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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/openxcom/
@ 2015-01-25 11:29 Azamat H. Hackimov
  0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2015-01-25 11:29 UTC (permalink / raw
  To: gentoo-commits

commit:     1612dca042e80ce610a176761342c0f0e3ab2610
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sun Jan 25 11:28:49 2015 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Sun Jan 25 11:28:49 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=1612dca0

[games-engine/openxcom] Version bump

Package-Manager: portage-2.2.14
Manifest-Sign-Key: A018DE8C

---
 ...nxcom-1.0_pre20140614.ebuild => openxcom-1.0.0_p20150123.ebuild} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-engines/openxcom/openxcom-1.0_pre20140614.ebuild b/games-engines/openxcom/openxcom-1.0.0_p20150123.ebuild
similarity index 88%
rename from games-engines/openxcom/openxcom-1.0_pre20140614.ebuild
rename to games-engines/openxcom/openxcom-1.0.0_p20150123.ebuild
index f9df84f..836bc5e 100644
--- a/games-engines/openxcom/openxcom-1.0_pre20140614.ebuild
+++ b/games-engines/openxcom/openxcom-1.0.0_p20150123.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -9,9 +9,9 @@ inherit cmake-utils games git-2
 DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
 HOMEPAGE="http://openxcom.org/"
 # For translation files
-SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2014_06_13_1923.zip"
+SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2015_01_23_1405.zip"
 EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
-EGIT_COMMIT=71c8b2a2779ebd76f621e404d472d39fc4da022a
+EGIT_COMMIT=18bba3f2a886161ff4077e75b56ae88fc5e96236
 
 LICENSE="GPL-3"
 SLOT="0"


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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/openxcom/
@ 2015-08-06 18:39 Azamat H. Hackimov
  0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2015-08-06 18:39 UTC (permalink / raw
  To: gentoo-commits

commit:     0c800ba930a2804432050d2f5a2b9108bfe9b1f1
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Thu Aug  6 18:39:29 2015 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Thu Aug  6 18:39:29 2015 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=0c800ba9

[games-engine/openxcom] New build.

Package-Manager: portage-2.2.20
Manifest-Sign-Key: A018DE8C

 ...20150123.ebuild => openxcom-1.0.0_p20150806.ebuild} | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/games-engines/openxcom/openxcom-1.0.0_p20150123.ebuild b/games-engines/openxcom/openxcom-1.0.0_p20150806.ebuild
similarity index 75%
rename from games-engines/openxcom/openxcom-1.0.0_p20150123.ebuild
rename to games-engines/openxcom/openxcom-1.0.0_p20150806.ebuild
index 836bc5e..2ec6282 100644
--- a/games-engines/openxcom/openxcom-1.0.0_p20150123.ebuild
+++ b/games-engines/openxcom/openxcom-1.0.0_p20150806.ebuild
@@ -9,9 +9,9 @@ inherit cmake-utils games git-2
 DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
 HOMEPAGE="http://openxcom.org/"
 # For translation files
-SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2015_01_23_1405.zip"
+SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2015_08_06_1651.zip"
 EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
-EGIT_COMMIT=18bba3f2a886161ff4077e75b56ae88fc5e96236
+EGIT_COMMIT=9a8641a7993c53e5f81f6748f08af3d7a4b72d8f
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -30,7 +30,7 @@ DEPEND="${RDEPEND}
 
 S="${WORKDIR}/OpenXcom"
 
-DOCS=( README.txt )
+DOCS=( README.md )
 
 src_configure() {
 	mycmakeargs=(
@@ -48,8 +48,16 @@ src_compile() {
 src_install() {
 	cmake-utils_src_install
 	use doc && dohtml -r "${CMAKE_BUILD_DIR}"/docs/html/*
-	insinto "${GAMES_DATADIR}/${PN}/data/"
-	doins -r "../openxcom/data/Language/"
+
+	for i in "common" "standard/xcom1" "standard/xcom2" ; do
+		insinto "${GAMES_DATADIR}/${PN}/${i}/"
+		doins -r "../openxcom/${i}/Language/"
+	done
+#	insinto "${GAMES_DATADIR}/${PN}/standard/xcom1/Language/"
+#	doins -r "../openxcom/standard/xcom1/Language/"
+#	insinto "${GAMES_DATADIR}/${PN}/standard/xcom2/Language/"
+#	doins -r "../openxcom/standard/xcom2/Language/"
+
 	doicon res/linux/icons/openxcom.svg
 	domenu res/linux/openxcom.desktop
 


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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/openxcom/
@ 2017-12-15  7:21 Azamat H. Hackimov
  0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2017-12-15  7:21 UTC (permalink / raw
  To: gentoo-commits

commit:     bc2c5da7dc3c85a35af6d8d79c1617501fa96d94
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Fri Dec 15 07:20:59 2017 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Fri Dec 15 07:20:59 2017 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=bc2c5da7

games-engines/openxcom: version bump, cleanup

Package-Manager: Portage-2.3.13, Repoman-2.3.3
Manifest-Sign-Key: A018DE8C

 games-engines/openxcom/metadata.xml                |  2 +-
 games-engines/openxcom/openxcom-1.0.0.ebuild       | 67 ----------------------
 ...0806.ebuild => openxcom-1.0.0_p20171215.ebuild} | 39 ++++++-------
 3 files changed, 19 insertions(+), 89 deletions(-)

diff --git a/games-engines/openxcom/metadata.xml b/games-engines/openxcom/metadata.xml
index 0bbbca9..e9e8cb0 100644
--- a/games-engines/openxcom/metadata.xml
+++ b/games-engines/openxcom/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>

diff --git a/games-engines/openxcom/openxcom-1.0.0.ebuild b/games-engines/openxcom/openxcom-1.0.0.ebuild
deleted file mode 100644
index 80e8dc3..0000000
--- a/games-engines/openxcom/openxcom-1.0.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/openxcom/openxcom-1.0.0.ebuild,v 1.1 2014/06/14 19:33:21 mr_bones_ Exp $
-
-EAPI=5
-inherit eutils cmake-utils gnome2-utils games
-
-DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
-HOMEPAGE="http://openxcom.org/"
-SRC_URI="http://openxcom.org/wp-content/uploads/downloads/2014/06/${P}.tar.gz"
-
-LICENSE="GPL-3 CC-BY-SA-4.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-RDEPEND=">=dev-cpp/yaml-cpp-0.5.1
-	media-libs/libsdl[opengl,video]
-	media-libs/sdl-gfx
-	media-libs/sdl-image[png]
-	media-libs/sdl-mixer"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen )"
-
-DOCS=( README.txt )
-
-src_configure() {
-	mycmakeargs=(
-		"-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
-		"-DDATADIR=${GAMES_DATADIR}/${PN}"
-	)
-	cmake-utils_src_configure
-}
-
-src_compile() {
-	use doc && cmake-utils_src_compile doxygen
-	cmake-utils_src_compile
-}
-
-src_install() {
-	cmake-utils_src_install
-	use doc && dohtml -r "${CMAKE_BUILD_DIR}"/docs/html/*
-	doicon -s scalable res/linux/icons/openxcom.svg
-	newicon -s 48 res/linux/icons/openxcom_48x48.png openxcom.png
-	newicon -s 128 res/linux/icons/openxcom_128x128.png openxcom.png
-	domenu res/linux/openxcom.desktop
-
-	prepgamesdirs
-}
-
-pkg_preinst() {
-	games_pkg_preinst
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	games_pkg_postinst
-	gnome2_icon_cache_update
-	echo
-	elog "In order to play you need copy GEODATA, GEOGRAPH, MAPS, ROUTES, SOUND,"
-	elog "TERRAIN, UFOGRAPH, UFOINTRO, UNITS folders from original X-COM game to"
-	elog "${GAMES_DATADIR}/${PN}/data"
-}
-
-pkg_postrm() {
-	gnome2_icon_cache_update
-}

diff --git a/games-engines/openxcom/openxcom-1.0.0_p20150806.ebuild b/games-engines/openxcom/openxcom-1.0.0_p20171215.ebuild
similarity index 55%
rename from games-engines/openxcom/openxcom-1.0.0_p20150806.ebuild
rename to games-engines/openxcom/openxcom-1.0.0_p20171215.ebuild
index 2ec6282..114c2b0 100644
--- a/games-engines/openxcom/openxcom-1.0.0_p20150806.ebuild
+++ b/games-engines/openxcom/openxcom-1.0.0_p20171215.ebuild
@@ -1,25 +1,23 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
 
-EAPI=5
+EAPI=6
 
-inherit cmake-utils games git-2
+inherit cmake-utils git-r3
 
 DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
 HOMEPAGE="http://openxcom.org/"
 # For translation files
-SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2015_08_06_1651.zip"
+#SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2015_09_25_2120.zip"
 EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
-EGIT_COMMIT=9a8641a7993c53e5f81f6748f08af3d7a4b72d8f
+EGIT_COMMIT=19efea3da04465ddc4d61a3a6aae25d0eff105a3
 
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="debug doc"
 
-RDEPEND="app-arch/unzip
-	>=dev-cpp/yaml-cpp-0.5.1
+RDEPEND=">=dev-cpp/yaml-cpp-0.5.3
 	media-libs/libsdl
 	media-libs/sdl-gfx
 	media-libs/sdl-image
@@ -28,14 +26,14 @@ RDEPEND="app-arch/unzip
 DEPEND="${RDEPEND}
 	doc? ( app-doc/doxygen )"
 
-S="${WORKDIR}/OpenXcom"
+#S="${WORKDIR}/OpenXcom"
 
 DOCS=( README.md )
 
 src_configure() {
 	mycmakeargs=(
-		"-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
-		"-DDATADIR=${GAMES_DATADIR}/${PN}"
+		"-DCMAKE_INSTALL_BINDIR=/usr/bin"
+		"-DCMAKE_INSTALL_DATADIR=/usr/share"
 	)
 	cmake-utils_src_configure
 }
@@ -47,12 +45,12 @@ src_compile() {
 
 src_install() {
 	cmake-utils_src_install
-	use doc && dohtml -r "${CMAKE_BUILD_DIR}"/docs/html/*
+	use doc && dodoc -r "${CMAKE_BUILD_DIR}/docs/html/"
 
-	for i in "common" "standard/xcom1" "standard/xcom2" ; do
-		insinto "${GAMES_DATADIR}/${PN}/${i}/"
-		doins -r "../openxcom/${i}/Language/"
-	done
+#	for i in "common" "standard/xcom1" "standard/xcom2" ; do
+#		insinto "${GAMES_DATADIR}/${PN}/${i}/"
+#		doins -r "../openxcom/${i}/Language/"
+#	done
 #	insinto "${GAMES_DATADIR}/${PN}/standard/xcom1/Language/"
 #	doins -r "../openxcom/standard/xcom1/Language/"
 #	insinto "${GAMES_DATADIR}/${PN}/standard/xcom2/Language/"
@@ -61,12 +59,11 @@ src_install() {
 	doicon res/linux/icons/openxcom.svg
 	domenu res/linux/openxcom.desktop
 
-	prepgamesdirs
 }
 
 pkg_postinst() {
-	games_pkg_postinst
-	elog "In order to play you need copy GEODATA, GEOGRAPH, MAPS, ROUTES, SOUND,"
-	elog "TERRAIN, UFOGRAPH, UFOINTRO, UNITS folders from original X-COM game to"
-	elog "${GAMES_DATADIR}/${PN}/data"
+	elog "In order to play you need copy UFO or TFTD game data"
+	elog "(GEODATA, GEOGRAPH, MAPS, ROUTES, SOUND, TERRAIN, UFOGRAPH,"
+	elog "UFOINTRO, UNITS folders) to"
+	elog "/usr/share/${PN}/UFO or /usr/share/${PN}/TFTD respectively."
 }


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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/openxcom/
@ 2021-07-12 20:47 Azamat H. Hackimov
  0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2021-07-12 20:47 UTC (permalink / raw
  To: gentoo-commits

commit:     a021a17ceda3a1dcde4fac55e171a6999ba58613
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Jul 12 19:57:41 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=a021a17c

games-engines/openxcom: update ebuild

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

 ...1215.ebuild => openxcom-1.0.0_p20210611.ebuild} | 26 ++++++++++++----------
 1 file changed, 14 insertions(+), 12 deletions(-)

diff --git a/games-engines/openxcom/openxcom-1.0.0_p20171215.ebuild b/games-engines/openxcom/openxcom-1.0.0_p20210611.ebuild
similarity index 81%
rename from games-engines/openxcom/openxcom-1.0.0_p20171215.ebuild
rename to games-engines/openxcom/openxcom-1.0.0_p20210611.ebuild
index 114c2b0..b4d2856 100644
--- a/games-engines/openxcom/openxcom-1.0.0_p20171215.ebuild
+++ b/games-engines/openxcom/openxcom-1.0.0_p20210611.ebuild
@@ -1,16 +1,16 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit cmake-utils git-r3
+inherit cmake git-r3
 
 DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
 HOMEPAGE="http://openxcom.org/"
 # For translation files
 #SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2015_09_25_2120.zip"
 EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
-EGIT_COMMIT=19efea3da04465ddc4d61a3a6aae25d0eff105a3
+EGIT_COMMIT=8d45159bf3e27d6aef62aff6035d9f6a59caf00b
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -30,21 +30,27 @@ DEPEND="${RDEPEND}
 
 DOCS=( README.md )
 
+src_prepare() {
+	default
+	sed -i -e "s:/man/man6:/share/man/man6:g" docs/CMakeLists.txt
+	cmake_src_prepare
+}
+
 src_configure() {
 	mycmakeargs=(
 		"-DCMAKE_INSTALL_BINDIR=/usr/bin"
 		"-DCMAKE_INSTALL_DATADIR=/usr/share"
 	)
-	cmake-utils_src_configure
+	cmake_src_configure
 }
 
 src_compile() {
-	use doc && cmake-utils_src_compile doxygen
-	cmake-utils_src_compile
+	use doc && cmake_src_compile doxygen
+	cmake_src_compile
 }
 
 src_install() {
-	cmake-utils_src_install
+	cmake_src_install
 	use doc && dodoc -r "${CMAKE_BUILD_DIR}/docs/html/"
 
 #	for i in "common" "standard/xcom1" "standard/xcom2" ; do
@@ -55,10 +61,6 @@ src_install() {
 #	doins -r "../openxcom/standard/xcom1/Language/"
 #	insinto "${GAMES_DATADIR}/${PN}/standard/xcom2/Language/"
 #	doins -r "../openxcom/standard/xcom2/Language/"
-
-	doicon res/linux/icons/openxcom.svg
-	domenu res/linux/openxcom.desktop
-
 }
 
 pkg_postinst() {


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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/openxcom/
@ 2021-09-23 22:18 Azamat H. Hackimov
  0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2021-09-23 22:18 UTC (permalink / raw
  To: gentoo-commits

commit:     fef503515d33949c7b0ae6a63de8fba20eef86f0
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Thu Sep 23 22:18:15 2021 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Thu Sep 23 22:18:15 2021 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=fef50351

games-engines/openxcom: update version

Fixes running with newest dev-cpp/yaml-cpp

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

 ...{openxcom-1.0.0_p20210611.ebuild => openxcom-1.0.0_p20210920.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-engines/openxcom/openxcom-1.0.0_p20210611.ebuild b/games-engines/openxcom/openxcom-1.0.0_p20210920.ebuild
similarity index 97%
rename from games-engines/openxcom/openxcom-1.0.0_p20210611.ebuild
rename to games-engines/openxcom/openxcom-1.0.0_p20210920.ebuild
index b4d2856..d7740e1 100644
--- a/games-engines/openxcom/openxcom-1.0.0_p20210611.ebuild
+++ b/games-engines/openxcom/openxcom-1.0.0_p20210920.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://openxcom.org/"
 # For translation files
 #SRC_URI="http://openxcom.org/git_builds/openxcom_git_master_2015_09_25_2120.zip"
 EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
-EGIT_COMMIT=8d45159bf3e27d6aef62aff6035d9f6a59caf00b
+EGIT_COMMIT=6ef797008e50dc548bb5b0b33d0b858a12792bb5
 
 LICENSE="GPL-3"
 SLOT="0"


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

end of thread, other threads:[~2021-09-23 22:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-06 18:39 [gentoo-commits] proj/gamerlay:master commit in: games-engines/openxcom/ Azamat H. Hackimov
  -- strict thread matches above, loose matches on Subject: below --
2021-09-23 22:18 Azamat H. Hackimov
2021-07-12 20:47 Azamat H. Hackimov
2017-12-15  7:21 Azamat H. Hackimov
2015-01-25 11:29 Azamat H. Hackimov
2014-06-15 19:18 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