public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gamerlay:master commit in: games-strategy/openxcom/files/, games-strategy/openxcom/
@ 2011-09-06 16:31 Azamat H. Hackimov
  0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2011-09-06 16:31 UTC (permalink / raw
  To: gentoo-commits

commit:     21ca9b105976bce57863a5868c25d076a02b0618
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Tue Sep  6 16:31:37 2011 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Tue Sep  6 16:31:37 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=21ca9b10

[games-strategy/openxcom] Updated 9999 and new 0.3.

(Portage version: 2.1.10.11/git/Linux x86_64, RepoMan options: --force, unsigned Manifest commit)

---
 .../openxcom/files/openxcom-0.3-makefile.patch     |   24 ++++++++
 games-strategy/openxcom/openxcom-0.3.ebuild        |   56 ++++++++++++++++++++
 games-strategy/openxcom/openxcom-9999.ebuild       |   39 +++++++-------
 3 files changed, 99 insertions(+), 20 deletions(-)

diff --git a/games-strategy/openxcom/files/openxcom-0.3-makefile.patch b/games-strategy/openxcom/files/openxcom-0.3-makefile.patch
new file mode 100644
index 0000000..f8da2b5
--- /dev/null
+++ b/games-strategy/openxcom/files/openxcom-0.3-makefile.patch
@@ -0,0 +1,24 @@
+diff --git a/src/Makefile b/src/Makefile
+index f9fcc06..b455cc2 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -22,16 +22,15 @@ endif
+ # Compiler settings
+ CXXFLAGS ?= -Wall -O2
+ CXXFLAGS += $(addprefix -D,$(TARGET))
+-CXXFLAGS += `$(PKG-CONFIG) --cflags sdl yaml-cpp`
++CXXFLAGS += $(shell $(PKG-CONFIG) --cflags sdl yaml-cpp)
+ 
+-LDFLAGS ?= -lSDL_gfx -lSDL_mixer
+-LDFLAGS += `$(PKG-CONFIG) --libs sdl yaml-cpp`
++LIBS = $(shell $(PKG-CONFIG) --libs sdl yaml-cpp) -lSDL_gfx -lSDL_mixer
+ 
+ # Rules
+ all: $(BINDIR)$(BIN)
+ 
+ $(BINDIR)$(BIN): $(OBJS)
+-	$(CXX) $(OBJS) $(LDFLAGS) -o $(BINDIR)$(BIN)
++	$(CXX) $(OBJS) $(LDFLAGS) $(LIBS) -o $(BINDIR)$(BIN)
+ 
+ $(OBJDIR)%.o:: %.cpp
+ 	$(CXX) $(CXXFLAGS) -c -o $@ $<

diff --git a/games-strategy/openxcom/openxcom-0.3.ebuild b/games-strategy/openxcom/openxcom-0.3.ebuild
new file mode 100644
index 0000000..fda102f
--- /dev/null
+++ b/games-strategy/openxcom/openxcom-0.3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=3
+
+inherit eutils games
+
+if [[ ${PV} == "9999" ]] ; then
+	EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
+	inherit git-2
+	SRC_URI=""
+else
+	SRC_URI="https://github.com/SupSuper/OpenXcom/tarball/v${PV} -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+	S=${WORKDIR}/SupSuper-OpenXcom-1603231 # Last digit - revision
+fi
+
+DESCRIPTION="Open-source reimplementation of the original X-Com"
+HOMEPAGE="http://openxcom.ninex.info/"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE=""
+
+RDEPEND=">=dev-cpp/yaml-cpp-0.2.6
+	media-libs/libsdl
+	>=media-libs/sdl-gfx-2.0.22
+	media-libs/sdl-mixer[timidity]"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+	epatch "${FILESDIR}"/${PN}-0.3-makefile.patch
+	sed -i -e "s:/usr/share/openxcom:${GAMES_DATADIR}/${PN}:" \
+		"${S}"/src/Engine/CrossPlatform.cpp || die "sed failed"
+}
+
+src_compile() {
+	cd src
+	emake || die "make failed"
+}
+
+src_install() {
+	dogamesbin bin/openxcom
+
+	insinto "${GAMES_DATADIR}"/${PN}
+	doins -r bin/DATA/*
+	dodoc README.txt
+
+	prepgamesdirs
+}
+
+pkg_postinst() {
+	elog "Copy the data files from X-COM: Enemy Unknown to"
+	elog "${GAMES_DATADIR}/${PN}/"
+}

diff --git a/games-strategy/openxcom/openxcom-9999.ebuild b/games-strategy/openxcom/openxcom-9999.ebuild
index 0a6b5ed..fda102f 100644
--- a/games-strategy/openxcom/openxcom-9999.ebuild
+++ b/games-strategy/openxcom/openxcom-9999.ebuild
@@ -2,40 +2,40 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI="3"
+EAPI=3
 
-inherit eutils games git
+inherit eutils games
+
+if [[ ${PV} == "9999" ]] ; then
+	EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
+	inherit git-2
+	SRC_URI=""
+else
+	SRC_URI="https://github.com/SupSuper/OpenXcom/tarball/v${PV} -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+	S=${WORKDIR}/SupSuper-OpenXcom-1603231 # Last digit - revision
+fi
 
 DESCRIPTION="Open-source reimplementation of the original X-Com"
 HOMEPAGE="http://openxcom.ninex.info/"
-EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
-#SRC_URI=""
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS=""
 IUSE=""
 
-RDEPEND="dev-cpp/yaml-cpp
+RDEPEND=">=dev-cpp/yaml-cpp-0.2.6
 	media-libs/libsdl
 	>=media-libs/sdl-gfx-2.0.22
-	media-libs/sdl-mixer"
+	media-libs/sdl-mixer[timidity]"
 DEPEND="${RDEPEND}"
 
-S=${WORKDIR}/trunk
-
 src_prepare() {
-#	epatch "${FILESDIR}"/Makefile.pkg-config.patch
-	sed -i \
-		-e "s:\(CXXFLAGS \)=:\1+=:" \
-		-e "s:\(LDFLAGS \)=:\1+=:" \
-		"${S}"/src/Makefile || die "sed failed"
-	sed -i -e "s:\(#define DATA_FOLDER \)\"./DATA/\":\1\"${GAMES_DATADIR}/${PN}/DATA/\":" \
-		"${S}"/src/Menu/StartState.cpp || die "sed failed"
+	epatch "${FILESDIR}"/${PN}-0.3-makefile.patch
+	sed -i -e "s:/usr/share/openxcom:${GAMES_DATADIR}/${PN}:" \
+		"${S}"/src/Engine/CrossPlatform.cpp || die "sed failed"
 }
 
 src_compile() {
-	mkdir obj
 	cd src
 	emake || die "make failed"
 }
@@ -43,9 +43,8 @@ src_compile() {
 src_install() {
 	dogamesbin bin/openxcom
 
-	insinto "${GAMES_DATADIR}"/${PN}/DATA
+	insinto "${GAMES_DATADIR}"/${PN}
 	doins -r bin/DATA/*
-
 	dodoc README.txt
 
 	prepgamesdirs
@@ -53,5 +52,5 @@ src_install() {
 
 pkg_postinst() {
 	elog "Copy the data files from X-COM: Enemy Unknown to"
-	elog "${GAMES_DATADIR}/${PN}/DATA/"
+	elog "${GAMES_DATADIR}/${PN}/"
 }



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

* [gentoo-commits] proj/gamerlay:master commit in: games-strategy/openxcom/files/, games-strategy/openxcom/
@ 2011-11-09  8:08 Azamat H. Hackimov
  0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2011-11-09  8:08 UTC (permalink / raw
  To: gentoo-commits

commit:     ab2e230a7dcd5764e1ce7de3c847d6eb0d2e3402
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Wed Nov  9 08:06:25 2011 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Wed Nov  9 08:06:25 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=ab2e230a

In portage now.

---
 .../openxcom/files/openxcom-0.3-makefile.patch     |   24 --------
 games-strategy/openxcom/metadata.xml               |   15 -----
 games-strategy/openxcom/openxcom-0.3.ebuild        |   56 --------------------
 games-strategy/openxcom/openxcom-9999.ebuild       |   50 -----------------
 4 files changed, 0 insertions(+), 145 deletions(-)

diff --git a/games-strategy/openxcom/files/openxcom-0.3-makefile.patch b/games-strategy/openxcom/files/openxcom-0.3-makefile.patch
deleted file mode 100644
index f8da2b5..0000000
--- a/games-strategy/openxcom/files/openxcom-0.3-makefile.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/src/Makefile b/src/Makefile
-index f9fcc06..b455cc2 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -22,16 +22,15 @@ endif
- # Compiler settings
- CXXFLAGS ?= -Wall -O2
- CXXFLAGS += $(addprefix -D,$(TARGET))
--CXXFLAGS += `$(PKG-CONFIG) --cflags sdl yaml-cpp`
-+CXXFLAGS += $(shell $(PKG-CONFIG) --cflags sdl yaml-cpp)
- 
--LDFLAGS ?= -lSDL_gfx -lSDL_mixer
--LDFLAGS += `$(PKG-CONFIG) --libs sdl yaml-cpp`
-+LIBS = $(shell $(PKG-CONFIG) --libs sdl yaml-cpp) -lSDL_gfx -lSDL_mixer
- 
- # Rules
- all: $(BINDIR)$(BIN)
- 
- $(BINDIR)$(BIN): $(OBJS)
--	$(CXX) $(OBJS) $(LDFLAGS) -o $(BINDIR)$(BIN)
-+	$(CXX) $(OBJS) $(LDFLAGS) $(LIBS) -o $(BINDIR)$(BIN)
- 
- $(OBJDIR)%.o:: %.cpp
- 	$(CXX) $(CXXFLAGS) -c -o $@ $<

diff --git a/games-strategy/openxcom/metadata.xml b/games-strategy/openxcom/metadata.xml
deleted file mode 100644
index 0f63a02..0000000
--- a/games-strategy/openxcom/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>playboys</herd>
-<maintainer>
-<email>azamat.hackimov@gmail.com</email>
-<name>Azamat H. Hackimov</name>
-</maintainer>
-<longdescription lang="en">
-Open-source reimplementation of the original X-Com
-</longdescription>
-<longdescription lang="ru">
-Открытая реализация игры X-COM: Enemy Unknown
-</longdescription>
-</pkgmetadata>

diff --git a/games-strategy/openxcom/openxcom-0.3.ebuild b/games-strategy/openxcom/openxcom-0.3.ebuild
deleted file mode 100644
index fda102f..0000000
--- a/games-strategy/openxcom/openxcom-0.3.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-inherit eutils games
-
-if [[ ${PV} == "9999" ]] ; then
-	EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
-	inherit git-2
-	SRC_URI=""
-else
-	SRC_URI="https://github.com/SupSuper/OpenXcom/tarball/v${PV} -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-	S=${WORKDIR}/SupSuper-OpenXcom-1603231 # Last digit - revision
-fi
-
-DESCRIPTION="Open-source reimplementation of the original X-Com"
-HOMEPAGE="http://openxcom.ninex.info/"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE=""
-
-RDEPEND=">=dev-cpp/yaml-cpp-0.2.6
-	media-libs/libsdl
-	>=media-libs/sdl-gfx-2.0.22
-	media-libs/sdl-mixer[timidity]"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-0.3-makefile.patch
-	sed -i -e "s:/usr/share/openxcom:${GAMES_DATADIR}/${PN}:" \
-		"${S}"/src/Engine/CrossPlatform.cpp || die "sed failed"
-}
-
-src_compile() {
-	cd src
-	emake || die "make failed"
-}
-
-src_install() {
-	dogamesbin bin/openxcom
-
-	insinto "${GAMES_DATADIR}"/${PN}
-	doins -r bin/DATA/*
-	dodoc README.txt
-
-	prepgamesdirs
-}
-
-pkg_postinst() {
-	elog "Copy the data files from X-COM: Enemy Unknown to"
-	elog "${GAMES_DATADIR}/${PN}/"
-}

diff --git a/games-strategy/openxcom/openxcom-9999.ebuild b/games-strategy/openxcom/openxcom-9999.ebuild
deleted file mode 100644
index 8f4d8fb..0000000
--- a/games-strategy/openxcom/openxcom-9999.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-inherit eutils games
-
-if [[ ${PV} == "9999" ]] ; then
-	EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git"
-	inherit git-2
-	SRC_URI=""
-else
-	SRC_URI="https://github.com/SupSuper/OpenXcom/tarball/v${PV} -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-	S=${WORKDIR}/SupSuper-OpenXcom-1603231 # Last digit - revision
-fi
-
-DESCRIPTION="Open-source reimplementation of the original X-Com"
-HOMEPAGE="http://openxcom.ninex.info/"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE=""
-
-RDEPEND=">=dev-cpp/yaml-cpp-0.2.6
-	media-libs/libsdl
-	>=media-libs/sdl-gfx-2.0.22
-	media-libs/sdl-mixer[timidity]"
-DEPEND="${RDEPEND}"
-
-src_compile() {
-	cd src
-	emake DATADIR="${GAMES_DATADIR}/${PN}/" || die "make failed"
-}
-
-src_install() {
-	dogamesbin bin/openxcom
-
-	insinto "${GAMES_DATADIR}"/${PN}
-	doins -r bin/DATA/*
-	dodoc README.txt
-
-	prepgamesdirs
-}
-
-pkg_postinst() {
-	elog "Copy the data files from X-COM: Enemy Unknown to"
-	elog "${GAMES_DATADIR}/${PN}/"
-}



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

* [gentoo-commits] proj/gamerlay:master commit in: games-strategy/openxcom/files/, games-strategy/openxcom/
@ 2013-05-12 14:25 Azamat H. Hackimov
  0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2013-05-12 14:25 UTC (permalink / raw
  To: gentoo-commits

commit:     cd1b59e8e79607262d7755145259b85cf63265f5
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sun May 12 14:14:09 2013 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Sun May 12 14:24:42 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=cd1b59e8

[games-strategy/openxcom] OpenXcom, reinplementation of classic Microprose game UFO: Enemy Unknown.

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

---
 .../files/openxcom-0.9_data-install-dir.patch      |   74 ++++++++++++++++++++
 games-strategy/openxcom/metadata.xml               |   15 ++++
 games-strategy/openxcom/openxcom-0.9.ebuild        |   55 +++++++++++++++
 3 files changed, 144 insertions(+), 0 deletions(-)

diff --git a/games-strategy/openxcom/files/openxcom-0.9_data-install-dir.patch b/games-strategy/openxcom/files/openxcom-0.9_data-install-dir.patch
new file mode 100644
index 0000000..8e4d16a
--- /dev/null
+++ b/games-strategy/openxcom/files/openxcom-0.9_data-install-dir.patch
@@ -0,0 +1,74 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index ed68a96..0422b09 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -9,6 +9,7 @@ option ( ENABLE_WARNING "Always show warnings (even for release builds)" OFF )
+ option ( FATAL_WARNING "Treat warnings as errors" OFF )
+ set ( MSVC_WARNING_LEVEL 3 CACHE STRING "Visual Studio warning levels" )
+ option ( FORCE_INSTALL_DATA_TO_BIN "Force installation of data to binary directory" OFF )
++set ( DATADIR "" CACHE STRING "Where to place datafiles" )
+ 
+ if ( WIN32 )
+   set ( default_deps_dir "${CMAKE_SOURCE_DIR}/deps" )
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 81247c6..3099f7e 100644
+--- a/src/CMakeLists.txt
++++ b/src/CMakeLists.txt
+@@ -591,7 +591,12 @@ set ( install_dest RUNTIME )
+ set ( set_exec_path ON )
+ set ( install_dest_dir bin )
+ if ( UNIX AND NOT APPLE )
+-  set ( data_install_dir ${CMAKE_INSTALL_PREFIX}/share/openxcom )
++  if ( DEFINED DATADIR )
++    set ( data_install_dir ${DATADIR} )
++    add_definitions( -DDATADIR="${data_install_dir}/" )
++  else()
++    set ( data_install_dir "share/openxcom" )
++  endif()
+ endif ()
+ if ( APPLE )
+   set ( openxcom_src ${openxcom_src} ${MACOS_SDLMAIN_M_PATH} )
+@@ -603,7 +608,12 @@ if ( APPLE )
+     set ( install_dest_dir "" )
+     set ( data_install_dir bin )
+   else ()
+-    set ( data_install_dir ${CMAKE_INSTALL_PREFIX}/share/openxcom )
++    if ( DEFINED DATADIR )
++      set ( data_install_dir ${DATADIR} )
++      add_definitions( -DDATADIR="${data_install_dir}/" )
++    else()
++      set ( data_install_dir "share/openxcom" )
++    endif()
+   endif ()
+ endif ()
+ if ( set_exec_path )
+diff --git a/src/Engine/CrossPlatform.cpp b/src/Engine/CrossPlatform.cpp
+index 9ac27ba..6571938 100644
+--- a/src/Engine/CrossPlatform.cpp
++++ b/src/Engine/CrossPlatform.cpp
+@@ -153,16 +153,18 @@ std::vector<std::string> findDataFolders()
+ 			dir = strtok(0, ":");
+ 		}
+ 	}
+-	else
+-	{
+ #ifdef __APPLE__
+-		snprintf(path, MAXPATHLEN, "%s/Users/Shared/OpenXcom/data/", home);
+-		list.push_back(path);
++	snprintf(path, MAXPATHLEN, "%s/Users/Shared/OpenXcom/data/", home);
++	list.push_back(path);
+ #else
+-		list.push_back("/usr/local/share/openxcom/data/");
+-		list.push_back("/usr/share/openxcom/data/");
++	list.push_back("/usr/local/share/openxcom/data/");
++	list.push_back("/usr/share/openxcom/data/");
++#ifdef DATADIR
++	snprintf(path, MAXPATHLEN, "%s/data/", DATADIR);
++	list.push_back(path);
++#endif
++
+ #endif
+-	}
+ 	
+ 	// Get working directory
+ 	list.push_back("./data/");

diff --git a/games-strategy/openxcom/metadata.xml b/games-strategy/openxcom/metadata.xml
new file mode 100644
index 0000000..0bbbca9
--- /dev/null
+++ b/games-strategy/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-strategy/openxcom/openxcom-0.9.ebuild b/games-strategy/openxcom/openxcom-0.9.ebuild
new file mode 100644
index 0000000..e7d7bdd
--- /dev/null
+++ b/games-strategy/openxcom/openxcom-0.9.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-utils games
+
+DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
+HOMEPAGE="http://openxcom.org/"
+SRC_URI="https://github.com/SupSuper/OpenXcom/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="~dev-cpp/yaml-cpp-0.3.0
+	media-libs/libsdl:0
+	media-libs/sdl-gfx
+	media-libs/sdl-image:0
+	media-libs/sdl-mixer
+	media-sound/timidity++"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/OpenXcom-${PV}"
+
+DOCS=( README.txt )
+src_prepare() {
+	epatch "${FILESDIR}/${P}_data-install-dir.patch"
+}
+
+src_configure() {
+	mycmakeargs=(
+		"-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
+		"-DDATADIR=${GAMES_DATADIR}/${PN}"
+	)
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_compile
+}
+
+#src_install() {
+#	cmake-utils_src_install
+#	prepgamesdirs
+#}
+
+pkg_postinst() {
+	games_pkg_postinst
+	elog "In order to play you need copy GEODATA, GEOGRAPH, MAPS, SOUND, TERRAIN"
+	elog "UFOGRAPH, UFOINTRO, UNITS folders from original X-COM game to"
+	elog "${GAMES_DATADIR}/${PN}/data"
+}


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

end of thread, other threads:[~2013-05-12 14:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-12 14:25 [gentoo-commits] proj/gamerlay:master commit in: games-strategy/openxcom/files/, games-strategy/openxcom/ Azamat H. Hackimov
  -- strict thread matches above, loose matches on Subject: below --
2011-11-09  8:08 Azamat H. Hackimov
2011-09-06 16:31 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