* [gentoo-commits] proj/gamerlay:master commit in: games-action/twoworlds/
@ 2016-12-06 9:13 Vadim A. Misbakh-Soloviov
0 siblings, 0 replies; 3+ messages in thread
From: Vadim A. Misbakh-Soloviov @ 2016-12-06 9:13 UTC (permalink / raw
To: gentoo-commits
commit: 5a55a757c527684b382a43fb4adc5e09bba2289c
Author: Vadim A. Misbakh-Soloviov <git <AT> mva <DOT> name>
AuthorDate: Tue Dec 6 09:12:57 2016 +0000
Commit: Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
CommitDate: Tue Dec 6 09:12:57 2016 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=5a55a757
twoworlds: added
games-action/twoworlds/twoworlds-2.0.0.2.ebuild | 82 +++++++++++++++++++++++++
1 file changed, 82 insertions(+)
diff --git a/games-action/twoworlds/twoworlds-2.0.0.2.ebuild b/games-action/twoworlds/twoworlds-2.0.0.2.ebuild
new file mode 100644
index 0000000..f0f685a
--- /dev/null
+++ b/games-action/twoworlds/twoworlds-2.0.0.2.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=6
+
+inherit eutils unpacker
+
+
+DESCRIPTION="Action RPG with open world"
+HOMEPAGE="https://en.wikipedia.org/wiki/Two_Worlds_(video_game)"
+SRC_URI="
+ gog? (
+ gog_two_worlds_epic_edition_${PV}.sh
+ )
+"
+
+RESTRICT="fetch strip"
+LICENSE="EULA"
+
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="+gog"
+
+DEPEND="
+ app-arch/unzip
+"
+RDEPEND="
+ app-emulation/wine
+ app-emulation/winetricks
+"
+
+S="${WORKDIR}"
+
+pkg_nofetch() {
+ einfo ""
+ einfo "Please open ${HOMEPAGE}, choose a place to buy it,"
+ einfo "then download \"${SRC_URI}\", and move/link it to \"${DISTDIR}\""
+ einfo ""
+ einfo "P.S.: I've only gog version. So, if you have Humble Store version"
+ einfo "and want this ebuild to also cover it — please contact me."
+}
+
+src_unpack() {
+ for f in ${A[@]}; do
+ unzip -qn "${DISTDIR}/${f}"
+ done
+}
+
+src_install() {
+exit
+ local dir="/opt/${PN}" arch="x86" exe modexe;
+
+# use amd64 && arch="x86_64";
+ exe="${PN^}.x86"; # fixme when gog'll release x86_64 version
+ cfgexe="GamepadConfigTool.x86" #.${arch}";
+
+ insinto "${dir}";
+ exeinto "${dir}";
+
+ cd data/noarch;
+
+ doins -r game/*
+ doexe "game/${exe}" "game/${cfgexe}" "support/gog-system-report.sh"
+
+ touch "${D}/${dir}/controller.config"
+ fperms 666 "${dir}/controller.config" # so, gamepad config tool will be able to save content to it, even if runs under unpriv. user
+
+ make_wrapper "${PN}" "./${exe}" "${dir}"
+ make_wrapper "${PN}-gog-system-report" "./gog-system-report.sh" "${dir}"
+ make_wrapper "${PN}-gc" "./${cfgexe}" "${dir}"
+ newicon "support/icon.png" "${PN}.png"
+ make_desktop_entry "${PN}" "${PN^}: Play" "${PN}"
+ make_desktop_entry "${PN}-gc" "${PN^}: Gamepad Configuration tool" "${PN}"
+}
+
+pkg_postinst() {
+ einfo 'If game badly detects your gamepad (i.e. some keys is not working),'
+ einfo 'you can run `dex-gc` tool (Gamepad Configuration tool)'
+ einfo 'It will calibrate your gamepad and save configuration so Dex game'
+ einfo 'will be able to load it and work normally with your gamepad'
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-action/twoworlds/
@ 2020-02-29 14:18 Azamat H. Hackimov
0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2020-02-29 14:18 UTC (permalink / raw
To: gentoo-commits
commit: b5b24a230eac8e80beb8662652623d881d9481be
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sat Feb 29 13:45:13 2020 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Sat Feb 29 13:45:13 2020 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=b5b24a23
games-action/twoworlds: fixes to package
Still need fixing.
Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --force
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
games-action/twoworlds/metadata.xml | 14 ++++++++++++++
games-action/twoworlds/twoworlds-2.0.0.2.ebuild | 15 +++++----------
2 files changed, 19 insertions(+), 10 deletions(-)
diff --git a/games-action/twoworlds/metadata.xml b/games-action/twoworlds/metadata.xml
new file mode 100644
index 0000000..010a55e
--- /dev/null
+++ b/games-action/twoworlds/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+<email>mva@mva.name</email>
+<name>Vadim A. Misbakh-Soloviov</name>
+</maintainer>
+<longdescription lang="en">
+</longdescription>
+<use>
+<flag name="gog">Use GOG archive</flag>
+</use>
+</pkgmetadata>
+
diff --git a/games-action/twoworlds/twoworlds-2.0.0.2.ebuild b/games-action/twoworlds/twoworlds-2.0.0.2.ebuild
index f0f685a..8676039 100644
--- a/games-action/twoworlds/twoworlds-2.0.0.2.ebuild
+++ b/games-action/twoworlds/twoworlds-2.0.0.2.ebuild
@@ -1,12 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-# $Header: $
EAPI=6
inherit eutils unpacker
-
DESCRIPTION="Action RPG with open world"
HOMEPAGE="https://en.wikipedia.org/wiki/Two_Worlds_(video_game)"
SRC_URI="
@@ -16,17 +14,14 @@ SRC_URI="
"
RESTRICT="fetch strip"
-LICENSE="EULA"
+LICENSE="all-rights-reserved"
SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="-* ~amd64 ~x86"
IUSE="+gog"
-DEPEND="
- app-arch/unzip
-"
-RDEPEND="
- app-emulation/wine
+DEPEND="app-arch/unzip"
+RDEPEND="app-emulation/wine-vanilla
app-emulation/winetricks
"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-action/twoworlds/
@ 2021-07-12 20:47 Azamat H. Hackimov
0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2021-07-12 20:47 UTC (permalink / raw
To: gentoo-commits
commit: 1d98e0da686688aef1607a2aa5da6a2f165b384b
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Jul 12 18:10:53 2021 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Mon Jul 12 20:45:40 2021 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=1d98e0da
games-action/twoworlds: remove broken package
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
games-action/twoworlds/metadata.xml | 14 -----
games-action/twoworlds/twoworlds-2.0.0.2.ebuild | 77 -------------------------
2 files changed, 91 deletions(-)
diff --git a/games-action/twoworlds/metadata.xml b/games-action/twoworlds/metadata.xml
deleted file mode 100644
index 010a55e..0000000
--- a/games-action/twoworlds/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
-<email>mva@mva.name</email>
-<name>Vadim A. Misbakh-Soloviov</name>
-</maintainer>
-<longdescription lang="en">
-</longdescription>
-<use>
-<flag name="gog">Use GOG archive</flag>
-</use>
-</pkgmetadata>
-
diff --git a/games-action/twoworlds/twoworlds-2.0.0.2.ebuild b/games-action/twoworlds/twoworlds-2.0.0.2.ebuild
deleted file mode 100644
index 8676039..0000000
--- a/games-action/twoworlds/twoworlds-2.0.0.2.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils unpacker
-
-DESCRIPTION="Action RPG with open world"
-HOMEPAGE="https://en.wikipedia.org/wiki/Two_Worlds_(video_game)"
-SRC_URI="
- gog? (
- gog_two_worlds_epic_edition_${PV}.sh
- )
-"
-
-RESTRICT="fetch strip"
-LICENSE="all-rights-reserved"
-
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE="+gog"
-
-DEPEND="app-arch/unzip"
-RDEPEND="app-emulation/wine-vanilla
- app-emulation/winetricks
-"
-
-S="${WORKDIR}"
-
-pkg_nofetch() {
- einfo ""
- einfo "Please open ${HOMEPAGE}, choose a place to buy it,"
- einfo "then download \"${SRC_URI}\", and move/link it to \"${DISTDIR}\""
- einfo ""
- einfo "P.S.: I've only gog version. So, if you have Humble Store version"
- einfo "and want this ebuild to also cover it — please contact me."
-}
-
-src_unpack() {
- for f in ${A[@]}; do
- unzip -qn "${DISTDIR}/${f}"
- done
-}
-
-src_install() {
-exit
- local dir="/opt/${PN}" arch="x86" exe modexe;
-
-# use amd64 && arch="x86_64";
- exe="${PN^}.x86"; # fixme when gog'll release x86_64 version
- cfgexe="GamepadConfigTool.x86" #.${arch}";
-
- insinto "${dir}";
- exeinto "${dir}";
-
- cd data/noarch;
-
- doins -r game/*
- doexe "game/${exe}" "game/${cfgexe}" "support/gog-system-report.sh"
-
- touch "${D}/${dir}/controller.config"
- fperms 666 "${dir}/controller.config" # so, gamepad config tool will be able to save content to it, even if runs under unpriv. user
-
- make_wrapper "${PN}" "./${exe}" "${dir}"
- make_wrapper "${PN}-gog-system-report" "./gog-system-report.sh" "${dir}"
- make_wrapper "${PN}-gc" "./${cfgexe}" "${dir}"
- newicon "support/icon.png" "${PN}.png"
- make_desktop_entry "${PN}" "${PN^}: Play" "${PN}"
- make_desktop_entry "${PN}-gc" "${PN^}: Gamepad Configuration tool" "${PN}"
-}
-
-pkg_postinst() {
- einfo 'If game badly detects your gamepad (i.e. some keys is not working),'
- einfo 'you can run `dex-gc` tool (Gamepad Configuration tool)'
- einfo 'It will calibrate your gamepad and save configuration so Dex game'
- einfo 'will be able to load it and work normally with your gamepad'
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-07-12 20:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-06 9:13 [gentoo-commits] proj/gamerlay:master commit in: games-action/twoworlds/ Vadim A. Misbakh-Soloviov
-- strict thread matches above, loose matches on Subject: below --
2020-02-29 14:18 Azamat H. Hackimov
2021-07-12 20:47 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