public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/user/superposition:master commit in: games-roguelike/gnomoria/
@ 2018-07-02 21:04 Philip Miess
  0 siblings, 0 replies; 5+ messages in thread
From: Philip Miess @ 2018-07-02 21:04 UTC (permalink / raw
  To: gentoo-commits

commit:     cd5693aaa4519d70a344330f70694589645889f4
Author:     Philip Miess <Philip_Miess <AT> yahoo <DOT> com>
AuthorDate: Mon Jul  2 21:05:01 2018 +0000
Commit:     Philip Miess <Phil_miess <AT> yahoo <DOT> com>
CommitDate: Mon Jul  2 21:05:01 2018 +0000
URL:        https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=cd5693aa

add gnomoria

 games-roguelike/gnomoria/Manifest          |  3 +
 games-roguelike/gnomoria/gnomoria-1.ebuild | 95 ++++++++++++++++++++++++++++++
 games-roguelike/gnomoria/metadata.xml      | 22 +++++++
 3 files changed, 120 insertions(+)

diff --git a/games-roguelike/gnomoria/Manifest b/games-roguelike/gnomoria/Manifest
new file mode 100644
index 0000000..663bd26
--- /dev/null
+++ b/games-roguelike/gnomoria/Manifest
@@ -0,0 +1,3 @@
+DIST gnomoria-022316-bin 189578890 BLAKE2B f6b41968a0842ee7b9c47798fbcbc37aef1dc96937744d244edc140f0396cff49bf82d0f0e0539040c989bae2562a307fd28a14a2b6d1879fb5f854e10831bad SHA512 42ee53e31ab8b89d016dc7a0e38c34373c20f81beef6de21ba87d2a5e302d20f96b27bee2fcd5b20a25ac16e2d7d274f9c4cc15513e392b9edf2b96fa7585b47
+EBUILD gnomoria-1.ebuild 1952 BLAKE2B 1dd3ec8c9e97bff3573090f61c681242d1ecec422b1a547f9da18774cd2d2f7fda5961efd14a461df218c82ad7ee7d8b7a89aa5b3c9679a1be1553220c0bc53b SHA512 9fd33f9546dc854588893de718eac61dab6beffde24d30e70d84128e554754bfec21d40366f0a2423be7fe041958c23ca306e41513aa3b4d8e458cdc06f0cf00
+MISC metadata.xml 1293 BLAKE2B 3abd67f650e73d476b04e6daf4ac20e1ac70212c8dcf4880f560232cdf3d1815edea53d63c660cf3559ecba3c24c98e52ff0eb593ccbe8f2c0391b74b6a57f44 SHA512 608545a9b490bff07614133944e0aab93399759eb007a5ea3b3396798a461dd50922a68cca7a19df87794084f505fdde23ac875f189883c0e5c153dcec9929f6

diff --git a/games-roguelike/gnomoria/gnomoria-1.ebuild b/games-roguelike/gnomoria/gnomoria-1.ebuild
new file mode 100644
index 0000000..0b4bf20
--- /dev/null
+++ b/games-roguelike/gnomoria/gnomoria-1.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit unpacker eutils gnome2-utils
+
+DESCRIPTION="Gnomoria is a sandbox village management game"
+HOMEPAGE="http://www.gnomoria.com"
+SRC_URI="gnomoria-022316-bin"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="system-libs"
+RESTRICT="bindist fetch"
+
+MYGAMEDIR=/opt/${PN}
+DEPEND="app-arch/unzip"
+RDEPEND="${DEPEND}
+system-libs? (
+	app-arch/p7zip
+	dev-lang/mono
+	media-libs/libsdl2[sound]
+	media-libs/sdl2-image[jpeg,png]
+	media-libs/openal
+	media-libs/libvorbis
+	media-libs/libtheora
+)"
+
+S="${WORKDIR}/data"
+
+pkg_nofetch() {
+	einfo "Please buy & download ${SRC_URI} from:"
+	einfo "  https://www.humblebundle.com/store"
+	einfo "and move it to ${DISTDIR}"
+}
+
+src_unpack() {
+	unpack_zip ${A}
+}
+
+src_configure() { :; }
+src_compile() { :; }
+
+src_install() {
+	local arch=x86
+	use amd64 && arch=x86_64
+
+	insinto ${MYGAMEDIR}
+	exeinto ${MYGAMEDIR}
+	doexe  "Gnomoria.bin.${arch}"
+	doins -r  "Content" FNA.dll   FNA.dll.config  "Mod Files"   gnomorialib.dll
+	if use system-libs ; then
+		if use amd64 ; then
+			mv lib64 lib64.orig
+			mkdir lib64
+			mv lib64.orig/libmojoshader.so lib64
+			ln -s /usr/bin/7za lib64/7za
+			doins lib64
+		else
+			mv lib lib.orig
+			mkdir lib
+			mv lib.orig/libmojoshader.so lib
+			ln -s /usr/bin/7za lib/7za
+			doins lib
+		fi
+	else
+		doins -r  Mono.Posix.dll System.Core.dll System.Drawing.dll System.Xml.dll mscorlib.dll Mono.Security.dll System.Configuration.dll System.Data.dll System.Security.dll System.dll mono
+		if use amd64 ; then
+			doins lib64
+		else
+			doins lib
+		fi
+	fi
+
+	newicon -s 512 Gnomoria.png ${PN}.png
+	make_wrapper ${PN} "${MYGAMEDIR}/Gnomoria.bin.${arch}" "${MYGAMEDIR}"
+	make_desktop_entry "${PN}" "Gnomoria" "${PN}" "Game"
+
+	domenu ${PN}
+
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	gnome2_icon_cache_update
+}

diff --git a/games-roguelike/gnomoria/metadata.xml b/games-roguelike/gnomoria/metadata.xml
new file mode 100644
index 0000000..543c928
--- /dev/null
+++ b/games-roguelike/gnomoria/metadata.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+<email>phil_miess@mail.yahoo.com</email>
+</maintainer>
+<longdescription lang="en">
+Gnomoria is a sandbox village management game where you help lead a small group of gnomes, who have set out on their own, to thrive into a bustling kingdom! Anything you see can be broken down and rebuilt elsewhere. Craft items, build structures, set traps and dig deep underground in search of precious resources to help your gnomes survive the harsh lands. Build your kingdom and stockpile wealth to attract wandering gnomads to your cause, but be wary of also attracting enemies!
+Key Features:
+
+Procedurally generated world - Every game is different
+Fully destructible environment - Everything can be mined, dug, chopped and rebuilt or used for crafting
+Open sandbox gameplay - Play how you want - manage a peaceful town or build up military and fend off invasions.
+Crafting - Tons of items to craft at different workshops
+Mechanisms - Construct elaborate contraptions using parts like hatches, levers, steam engines
+</longdescription>
+<use>
+	<flag name="system-libs">
+		Use the systems libraries instead of the bundled ones
+	</flag>
+</use>
+</pkgmetadata>


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

* [gentoo-commits] repo/user/superposition:master commit in: games-roguelike/gnomoria/
@ 2018-07-02 21:31 Philip Miess
  0 siblings, 0 replies; 5+ messages in thread
From: Philip Miess @ 2018-07-02 21:31 UTC (permalink / raw
  To: gentoo-commits

commit:     92ff297543a4b57f703a3bd4db76ae1a271e12a2
Author:     Philip Miess <Philip_Miess <AT> yahoo <DOT> com>
AuthorDate: Mon Jul  2 21:33:54 2018 +0000
Commit:     Philip Miess <Phil_miess <AT> yahoo <DOT> com>
CommitDate: Mon Jul  2 21:33:54 2018 +0000
URL:        https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=92ff2975

install linux doc, split and einfo for each doins to debug

 games-roguelike/gnomoria/Manifest          |  2 +-
 games-roguelike/gnomoria/gnomoria-1.ebuild | 20 ++++++++++++++++++--
 2 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/games-roguelike/gnomoria/Manifest b/games-roguelike/gnomoria/Manifest
index 663bd26..1983ac4 100644
--- a/games-roguelike/gnomoria/Manifest
+++ b/games-roguelike/gnomoria/Manifest
@@ -1,3 +1,3 @@
 DIST gnomoria-022316-bin 189578890 BLAKE2B f6b41968a0842ee7b9c47798fbcbc37aef1dc96937744d244edc140f0396cff49bf82d0f0e0539040c989bae2562a307fd28a14a2b6d1879fb5f854e10831bad SHA512 42ee53e31ab8b89d016dc7a0e38c34373c20f81beef6de21ba87d2a5e302d20f96b27bee2fcd5b20a25ac16e2d7d274f9c4cc15513e392b9edf2b96fa7585b47
-EBUILD gnomoria-1.ebuild 1952 BLAKE2B 1dd3ec8c9e97bff3573090f61c681242d1ecec422b1a547f9da18774cd2d2f7fda5961efd14a461df218c82ad7ee7d8b7a89aa5b3c9679a1be1553220c0bc53b SHA512 9fd33f9546dc854588893de718eac61dab6beffde24d30e70d84128e554754bfec21d40366f0a2423be7fe041958c23ca306e41513aa3b4d8e458cdc06f0cf00
+EBUILD gnomoria-1.ebuild 2209 BLAKE2B e84a1e3d9d393ea16d5f46b7c23a7daa118359ae05cdf63e811c9d4b34133fce8b659f124421bf460ef8c46626989d87ef96592404533a667fc5fc01190cb262 SHA512 d6c8603965d9bb3e9111e22dc93fbf60e9c90b85e90c6a59fca7a8d758a072fce8992d62d7c2097cc5ce26b89fa040cc6d463caa0a1049a1166fd42207a81ed4
 MISC metadata.xml 1293 BLAKE2B 3abd67f650e73d476b04e6daf4ac20e1ac70212c8dcf4880f560232cdf3d1815edea53d63c660cf3559ecba3c24c98e52ff0eb593ccbe8f2c0391b74b6a57f44 SHA512 608545a9b490bff07614133944e0aab93399759eb007a5ea3b3396798a461dd50922a68cca7a19df87794084f505fdde23ac875f189883c0e5c153dcec9929f6

diff --git a/games-roguelike/gnomoria/gnomoria-1.ebuild b/games-roguelike/gnomoria/gnomoria-1.ebuild
index 0b4bf20..8564f02 100644
--- a/games-roguelike/gnomoria/gnomoria-1.ebuild
+++ b/games-roguelike/gnomoria/gnomoria-1.ebuild
@@ -49,8 +49,21 @@ src_install() {
 
 	insinto ${MYGAMEDIR}
 	exeinto ${MYGAMEDIR}
+	dodoc Linux.README
+
 	doexe  "Gnomoria.bin.${arch}"
-	doins -r  "Content" FNA.dll   FNA.dll.config  "Mod Files"   gnomorialib.dll
+
+	doins -r  "Content"
+	einfo "installed Content"
+	doins FNA.dll
+	einfo "installed FNA.dll"
+	doins FNA.dll.config
+	einfo "installed FNA.dll.config"
+	doins -r "Mod Files"
+	einfo "installed Mod Files"
+	doins gnomorialib.dll
+	einfo "gnomorialib.dll"
+
 	if use system-libs ; then
 		if use amd64 ; then
 			mv lib64 lib64.orig
@@ -66,7 +79,10 @@ src_install() {
 			doins lib
 		fi
 	else
-		doins -r  Mono.Posix.dll System.Core.dll System.Drawing.dll System.Xml.dll mscorlib.dll Mono.Security.dll System.Configuration.dll System.Data.dll System.Security.dll System.dll mono
+		doins Mono.Posix.dll System.Core.dll System.Drawing.dll System.Xml.dll mscorlib.dll Mono.Security.dll System.Configuration.dll System.Data.dll System.Security.dll System.dll
+		einfo "copied single files"
+		doins -r mono
+		einfo "copied mono folder"
 		if use amd64 ; then
 			doins lib64
 		else


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

* [gentoo-commits] repo/user/superposition:master commit in: games-roguelike/gnomoria/
@ 2018-07-02 21:36 Philip Miess
  0 siblings, 0 replies; 5+ messages in thread
From: Philip Miess @ 2018-07-02 21:36 UTC (permalink / raw
  To: gentoo-commits

commit:     3cfa70275a6c89ef70ae51370800c8595f2dae11
Author:     Philip Miess <Philip_Miess <AT> yahoo <DOT> com>
AuthorDate: Mon Jul  2 21:39:04 2018 +0000
Commit:     Philip Miess <Phil_miess <AT> yahoo <DOT> com>
CommitDate: Mon Jul  2 21:39:04 2018 +0000
URL:        https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=3cfa7027

recursive doins for lib folders

 games-roguelike/gnomoria/Manifest          |  2 +-
 games-roguelike/gnomoria/gnomoria-1.ebuild | 22 ++++------------------
 2 files changed, 5 insertions(+), 19 deletions(-)

diff --git a/games-roguelike/gnomoria/Manifest b/games-roguelike/gnomoria/Manifest
index 1983ac4..3d84ec2 100644
--- a/games-roguelike/gnomoria/Manifest
+++ b/games-roguelike/gnomoria/Manifest
@@ -1,3 +1,3 @@
 DIST gnomoria-022316-bin 189578890 BLAKE2B f6b41968a0842ee7b9c47798fbcbc37aef1dc96937744d244edc140f0396cff49bf82d0f0e0539040c989bae2562a307fd28a14a2b6d1879fb5f854e10831bad SHA512 42ee53e31ab8b89d016dc7a0e38c34373c20f81beef6de21ba87d2a5e302d20f96b27bee2fcd5b20a25ac16e2d7d274f9c4cc15513e392b9edf2b96fa7585b47
-EBUILD gnomoria-1.ebuild 2209 BLAKE2B e84a1e3d9d393ea16d5f46b7c23a7daa118359ae05cdf63e811c9d4b34133fce8b659f124421bf460ef8c46626989d87ef96592404533a667fc5fc01190cb262 SHA512 d6c8603965d9bb3e9111e22dc93fbf60e9c90b85e90c6a59fca7a8d758a072fce8992d62d7c2097cc5ce26b89fa040cc6d463caa0a1049a1166fd42207a81ed4
+EBUILD gnomoria-1.ebuild 1979 BLAKE2B 1d76c0afdbd2a4a7d0328ae6df51ef2207535821315dc39c5713d039e2a370eb386a9c9e2d8a994d3df2d35f2842599fc37e0893a61cadbd11b05cb025c2d11b SHA512 e1dcea3d5d78845e6d5b0d8febb2f2f4c5cd3f83bfebc5bc2685229de8e3e44fb42f0b2509bb2af63d2f1a0e369b44371f3750281ad58f9725d75e3a928c28a6
 MISC metadata.xml 1293 BLAKE2B 3abd67f650e73d476b04e6daf4ac20e1ac70212c8dcf4880f560232cdf3d1815edea53d63c660cf3559ecba3c24c98e52ff0eb593ccbe8f2c0391b74b6a57f44 SHA512 608545a9b490bff07614133944e0aab93399759eb007a5ea3b3396798a461dd50922a68cca7a19df87794084f505fdde23ac875f189883c0e5c153dcec9929f6

diff --git a/games-roguelike/gnomoria/gnomoria-1.ebuild b/games-roguelike/gnomoria/gnomoria-1.ebuild
index 8564f02..02c92d7 100644
--- a/games-roguelike/gnomoria/gnomoria-1.ebuild
+++ b/games-roguelike/gnomoria/gnomoria-1.ebuild
@@ -52,18 +52,7 @@ src_install() {
 	dodoc Linux.README
 
 	doexe  "Gnomoria.bin.${arch}"
-
-	doins -r  "Content"
-	einfo "installed Content"
-	doins FNA.dll
-	einfo "installed FNA.dll"
-	doins FNA.dll.config
-	einfo "installed FNA.dll.config"
-	doins -r "Mod Files"
-	einfo "installed Mod Files"
-	doins gnomorialib.dll
-	einfo "gnomorialib.dll"
-
+	doins -r  "Content" FNA.dll   FNA.dll.config  "Mod Files"   gnomorialib.dll
 	if use system-libs ; then
 		if use amd64 ; then
 			mv lib64 lib64.orig
@@ -79,14 +68,11 @@ src_install() {
 			doins lib
 		fi
 	else
-		doins Mono.Posix.dll System.Core.dll System.Drawing.dll System.Xml.dll mscorlib.dll Mono.Security.dll System.Configuration.dll System.Data.dll System.Security.dll System.dll
-		einfo "copied single files"
-		doins -r mono
-		einfo "copied mono folder"
+		doins -r  Mono.Posix.dll System.Core.dll System.Drawing.dll System.Xml.dll mscorlib.dll Mono.Security.dll System.Configuration.dll System.Data.dll System.Security.dll System.dll mono
 		if use amd64 ; then
-			doins lib64
+			doins -r lib64
 		else
-			doins lib
+			doins -r lib
 		fi
 	fi
 


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

* [gentoo-commits] repo/user/superposition:master commit in: games-roguelike/gnomoria/
@ 2018-07-02 21:49 Philip Miess
  0 siblings, 0 replies; 5+ messages in thread
From: Philip Miess @ 2018-07-02 21:49 UTC (permalink / raw
  To: gentoo-commits

commit:     1c50e33786c2e0e02c239a6238bcb6691dede7d7
Author:     Philip Miess <Philip_Miess <AT> yahoo <DOT> com>
AuthorDate: Mon Jul  2 21:51:56 2018 +0000
Commit:     Philip Miess <Phil_miess <AT> yahoo <DOT> com>
CommitDate: Mon Jul  2 21:51:56 2018 +0000
URL:        https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=1c50e337

Gnomoria linux program needs Gnormoria.exe

 games-roguelike/gnomoria/Manifest          | 2 +-
 games-roguelike/gnomoria/gnomoria-1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-roguelike/gnomoria/Manifest b/games-roguelike/gnomoria/Manifest
index 3d84ec2..5c1a177 100644
--- a/games-roguelike/gnomoria/Manifest
+++ b/games-roguelike/gnomoria/Manifest
@@ -1,3 +1,3 @@
 DIST gnomoria-022316-bin 189578890 BLAKE2B f6b41968a0842ee7b9c47798fbcbc37aef1dc96937744d244edc140f0396cff49bf82d0f0e0539040c989bae2562a307fd28a14a2b6d1879fb5f854e10831bad SHA512 42ee53e31ab8b89d016dc7a0e38c34373c20f81beef6de21ba87d2a5e302d20f96b27bee2fcd5b20a25ac16e2d7d274f9c4cc15513e392b9edf2b96fa7585b47
-EBUILD gnomoria-1.ebuild 1979 BLAKE2B 1d76c0afdbd2a4a7d0328ae6df51ef2207535821315dc39c5713d039e2a370eb386a9c9e2d8a994d3df2d35f2842599fc37e0893a61cadbd11b05cb025c2d11b SHA512 e1dcea3d5d78845e6d5b0d8febb2f2f4c5cd3f83bfebc5bc2685229de8e3e44fb42f0b2509bb2af63d2f1a0e369b44371f3750281ad58f9725d75e3a928c28a6
+EBUILD gnomoria-1.ebuild 1992 BLAKE2B 4e9c92ba932f585349ca43f2018e32ada4907313c47dd37264df0d5c46a489af1034a421ecacbac99ef281d650ccb1470d61410e63291c018d71c643313570e5 SHA512 975cf01da1563bae196f5033769a5e7166af9ef942c725e31342e231071b39fcca76b4a68a7ece30450103856efdb3175584209af2df101479f13ba8b7609bdc
 MISC metadata.xml 1293 BLAKE2B 3abd67f650e73d476b04e6daf4ac20e1ac70212c8dcf4880f560232cdf3d1815edea53d63c660cf3559ecba3c24c98e52ff0eb593ccbe8f2c0391b74b6a57f44 SHA512 608545a9b490bff07614133944e0aab93399759eb007a5ea3b3396798a461dd50922a68cca7a19df87794084f505fdde23ac875f189883c0e5c153dcec9929f6

diff --git a/games-roguelike/gnomoria/gnomoria-1.ebuild b/games-roguelike/gnomoria/gnomoria-1.ebuild
index 02c92d7..233f9c5 100644
--- a/games-roguelike/gnomoria/gnomoria-1.ebuild
+++ b/games-roguelike/gnomoria/gnomoria-1.ebuild
@@ -52,7 +52,7 @@ src_install() {
 	dodoc Linux.README
 
 	doexe  "Gnomoria.bin.${arch}"
-	doins -r  "Content" FNA.dll   FNA.dll.config  "Mod Files"   gnomorialib.dll
+	doins -r  "Content" FNA.dll   FNA.dll.config  "Mod Files"   gnomorialib.dll Gnomoria.exe
 	if use system-libs ; then
 		if use amd64 ; then
 			mv lib64 lib64.orig


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

* [gentoo-commits] repo/user/superposition:master commit in: games-roguelike/gnomoria/
@ 2018-07-02 21:59 Philip Miess
  0 siblings, 0 replies; 5+ messages in thread
From: Philip Miess @ 2018-07-02 21:59 UTC (permalink / raw
  To: gentoo-commits

commit:     e4952cc283cc0b564bca3b93f0f1b95ba141388b
Author:     Philip Miess <Philip_Miess <AT> yahoo <DOT> com>
AuthorDate: Mon Jul  2 22:02:38 2018 +0000
Commit:     Philip Miess <Phil_miess <AT> yahoo <DOT> com>
CommitDate: Mon Jul  2 22:02:38 2018 +0000
URL:        https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=e4952cc2

more cases of not recursively coping directories, default to use system-libs

 games-roguelike/gnomoria/Manifest          | 2 +-
 games-roguelike/gnomoria/gnomoria-1.ebuild | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/games-roguelike/gnomoria/Manifest b/games-roguelike/gnomoria/Manifest
index 5c1a177..e8fe167 100644
--- a/games-roguelike/gnomoria/Manifest
+++ b/games-roguelike/gnomoria/Manifest
@@ -1,3 +1,3 @@
 DIST gnomoria-022316-bin 189578890 BLAKE2B f6b41968a0842ee7b9c47798fbcbc37aef1dc96937744d244edc140f0396cff49bf82d0f0e0539040c989bae2562a307fd28a14a2b6d1879fb5f854e10831bad SHA512 42ee53e31ab8b89d016dc7a0e38c34373c20f81beef6de21ba87d2a5e302d20f96b27bee2fcd5b20a25ac16e2d7d274f9c4cc15513e392b9edf2b96fa7585b47
-EBUILD gnomoria-1.ebuild 1992 BLAKE2B 4e9c92ba932f585349ca43f2018e32ada4907313c47dd37264df0d5c46a489af1034a421ecacbac99ef281d650ccb1470d61410e63291c018d71c643313570e5 SHA512 975cf01da1563bae196f5033769a5e7166af9ef942c725e31342e231071b39fcca76b4a68a7ece30450103856efdb3175584209af2df101479f13ba8b7609bdc
+EBUILD gnomoria-1.ebuild 1999 BLAKE2B 3e031bdf885fb0d6ccd7a110452b3485b4e1facac91c5ef1e53dc0a108a5a266b75748413c3de58cc43e0f287e93190471749acf3e827e1f292b1fd8c2da0e82 SHA512 301f574c758cc37ee6b4bfe2cbae0a065c4e5a7298cb473c668594b00acec274c0c0fedf97610e6c264066ca9877246ef3fc94e35f1c7b9d7460b0d39f6a3bc5
 MISC metadata.xml 1293 BLAKE2B 3abd67f650e73d476b04e6daf4ac20e1ac70212c8dcf4880f560232cdf3d1815edea53d63c660cf3559ecba3c24c98e52ff0eb593ccbe8f2c0391b74b6a57f44 SHA512 608545a9b490bff07614133944e0aab93399759eb007a5ea3b3396798a461dd50922a68cca7a19df87794084f505fdde23ac875f189883c0e5c153dcec9929f6

diff --git a/games-roguelike/gnomoria/gnomoria-1.ebuild b/games-roguelike/gnomoria/gnomoria-1.ebuild
index 233f9c5..1625ec4 100644
--- a/games-roguelike/gnomoria/gnomoria-1.ebuild
+++ b/games-roguelike/gnomoria/gnomoria-1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="gnomoria-022316-bin"
 LICENSE="all-rights-reserved"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="system-libs"
+IUSE="+system-libs"
 RESTRICT="bindist fetch"
 
 MYGAMEDIR=/opt/${PN}
@@ -59,13 +59,13 @@ src_install() {
 			mkdir lib64
 			mv lib64.orig/libmojoshader.so lib64
 			ln -s /usr/bin/7za lib64/7za
-			doins lib64
+			doins -r lib64
 		else
 			mv lib lib.orig
 			mkdir lib
 			mv lib.orig/libmojoshader.so lib
 			ln -s /usr/bin/7za lib/7za
-			doins lib
+			doins -r lib
 		fi
 	else
 		doins -r  Mono.Posix.dll System.Core.dll System.Drawing.dll System.Xml.dll mscorlib.dll Mono.Security.dll System.Configuration.dll System.Data.dll System.Security.dll System.dll mono


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

end of thread, other threads:[~2018-07-02 21:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-02 21:04 [gentoo-commits] repo/user/superposition:master commit in: games-roguelike/gnomoria/ Philip Miess
  -- strict thread matches above, loose matches on Subject: below --
2018-07-02 21:31 Philip Miess
2018-07-02 21:36 Philip Miess
2018-07-02 21:49 Philip Miess
2018-07-02 21:59 Philip Miess

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