diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 05:48:38 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 05:48:38 -0500 |
| commit | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (patch) | |
| tree | 0d7a74b4463ee387f9cf9368ceb1b757f694f72a /games-simulation/train-valley | |
| parent | f716a9fe6455d39eef01e718aae68dae61c19704 (diff) | |
| download | baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.tar.gz baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.tar.xz baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.zip | |
Revert "Adding metadata"
This reverts commit f716a9fe6455d39eef01e718aae68dae61c19704.
Diffstat (limited to 'games-simulation/train-valley')
| -rw-r--r-- | games-simulation/train-valley/Manifest | 1 | ||||
| -rw-r--r-- | games-simulation/train-valley/metadata.xml | 11 | ||||
| -rw-r--r-- | games-simulation/train-valley/train-valley-1.3.31403.ebuild | 66 |
3 files changed, 78 insertions, 0 deletions
diff --git a/games-simulation/train-valley/Manifest b/games-simulation/train-valley/Manifest new file mode 100644 index 000000000000..2e3e1fcf138f --- /dev/null +++ b/games-simulation/train-valley/Manifest @@ -0,0 +1 @@ +DIST train_valley_1_3_31403.sh 196066169 BLAKE2B fe9e6ae5b0ef76794823dc86ed100fdac355d3929d85a9a12096f79cf9e6f946e2c85b5b737ebcab813ceef29094734f74546fff06124fe4bf07ef224d5842ff SHA512 16fd627f8ca6399579b17d7a4ce29caba554fbfb0dc72b40827f1c3a061d8c238a7faeb1b5171917362d381642e8cb066cdad5556fb71f4d27225bf227d735cd diff --git a/games-simulation/train-valley/metadata.xml b/games-simulation/train-valley/metadata.xml new file mode 100644 index 000000000000..9d3df4f319d2 --- /dev/null +++ b/games-simulation/train-valley/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>games@gentoo.org</email> + <name>Gentoo Games Project</name> + </maintainer> + <use> + <flag name="gui">Install the GUI for configuring screen resolution and input</flag> + </use> +</pkgmetadata> diff --git a/games-simulation/train-valley/train-valley-1.3.31403.ebuild b/games-simulation/train-valley/train-valley-1.3.31403.ebuild new file mode 100644 index 000000000000..344e63467d7d --- /dev/null +++ b/games-simulation/train-valley/train-valley-1.3.31403.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop unpacker wrapper xdg-utils + +DESCRIPTION="Build railroads in order to connect cities, tunnels, and bridges" +HOMEPAGE="http://train-valley.com/tv1.html" +SRC_URI="${P//[-.]/_}.sh" +S="${WORKDIR}/data/noarch/game" + +LICENSE="all-rights-reserved" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="+gui" +RESTRICT="bindist fetch splitdebug" + +RDEPEND=" + virtual/opengl + x11-libs/libX11 + x11-libs/libXrandr + gui? ( + dev-libs/glib:2 + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:2 + ) +" + +DIR="/opt/${PN}" +QA_PREBUILT="${DIR#/}/*" + +pkg_nofetch() { + einfo "Please buy and download ${SRC_URI} from:" + einfo " https://www.gog.com/game/${PN//-/_}" + einfo "and move it to your distfiles directory." +} + +src_unpack() { + unpack_zip ${A} +} + +src_install() { + exeinto "${DIR}" + newexe ${PN}.$(usex amd64 x86_64 x86) ${PN} + make_wrapper ${PN} "${DIR}"/${PN} + + insinto "${DIR}" + doins -r ${PN}_Data/ + rm -r "${ED}/${DIR}"/${PN}_Data/*/$(usex amd64 x86 x86_64) || die + + if ! use gui; then + rm "${ED}/${DIR}"/${PN}_Data/Plugins/*/ScreenSelector.so || die + fi + + newicon -s 128 ${PN}_Data/Resources/UnityPlayer.png ${PN}.png + make_desktop_entry ${PN} "Train Valley" +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |
