summaryrefslogtreecommitdiff
path: root/games-strategy/wargus
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /games-strategy/wargus
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'games-strategy/wargus')
-rw-r--r--games-strategy/wargus/Manifest1
-rw-r--r--games-strategy/wargus/metadata.xml17
-rw-r--r--games-strategy/wargus/wargus-3.3.2.ebuild81
3 files changed, 0 insertions, 99 deletions
diff --git a/games-strategy/wargus/Manifest b/games-strategy/wargus/Manifest
deleted file mode 100644
index 9eaf30f49f15..000000000000
--- a/games-strategy/wargus/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST wargus-3.3.2.tar.gz 5110092 BLAKE2B bbde0931307f7a182086e898ff87e8d559ad0f239b04a019359a30fbca20b82745d598571d8d42353952aade4b96ded3de8e06b92dc947c7a7d9aee00c315c71 SHA512 111d7bc0889f86356226478834d515912b1221a131aa405acf75cbdd16cda4e83c4e900ea30e86c162301504a617755284a9656d6709aaa7ab2baf8f8591dcf8
diff --git a/games-strategy/wargus/metadata.xml b/games-strategy/wargus/metadata.xml
deleted file mode 100644
index f55535613dbd..000000000000
--- a/games-strategy/wargus/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>mgorny@gentoo.org</email>
- <name>Michał Górny</name>
- </maintainer>
- <maintainer type="project">
- <email>games@gentoo.org</email>
- <name>Gentoo Games Project</name>
- </maintainer>
- <use>
- <flag name="bne">Support extracting data from the Battle.net
- Edition</flag>
- </use>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/games-strategy/wargus/wargus-3.3.2.ebuild b/games-strategy/wargus/wargus-3.3.2.ebuild
deleted file mode 100644
index 3c69f5e26296..000000000000
--- a/games-strategy/wargus/wargus-3.3.2.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg-utils
-
-DESCRIPTION="Warcraft II for the Stratagus game engine"
-HOMEPAGE="
- https://stratagus.com/
- https://github.com/Wargus/wargus/
-"
-SRC_URI="
- https://github.com/Wargus/wargus/archive/v${PV}.tar.gz
- -> ${P}.tar.gz
-"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+bne"
-
-DEPEND="
- =games-engines/stratagus-${PV}*[theora]
- media-libs/libpng:0=
- virtual/zlib:=
- x11-libs/gtk+:2
- x11-libs/libX11
- bne? ( app-arch/stormlib:= )
- !games-strategy/wargus-data
-"
-RDEPEND="
- ${DEPEND}
-"
-BDEPEND="
- virtual/pkgconfig
-"
-
-pkg_pretend() {
- if has_version games-strategy/wargus-data; then
- ewarn "The system-wide install of game data via games-strategy/wargus-data"
- ewarn "no longer works. The old data will be uninstalled after merging"
- ewarn "this version of Wargus. If you would like to preserve it, please"
- ewarn "abort the process and back /usr/share/stratagus/wargus up."
- fi
-}
-
-src_configure() {
- local mycmakeargs=(
- -DGAMEDIR="${EPREFIX}/usr/bin"
- -DBINDIR="${EPREFIX}/usr/bin"
- -DSTRATAGUS="${EPREFIX}/usr/bin/stratagus"
- -DSHAREDIR="${EPREFIX}/usr/share/stratagus/wargus"
- -DICONDIR=/usr/share/icons/hicolor/64x64/apps
- -DWITH_STORMLIB=$(usex bne)
- )
- cmake_src_configure
-}
-
-pkg_postinst() {
- elog "Wargus requires the data from the original game to run. The game"
- elog "will ask you for the location of the game data and extract/convert"
- elog "it automatically on the first run."
-
- if ! has_version media-video/ffmpeg ||
- ! has_version media-sound/cdparanoia
- then
- elog
- elog "If you did not convert the game data yet, you may want to install"
- elog "the following optional dependencies:"
- elog
- elog "media-video/ffmpeg -- to convert game videos"
- elog "media-sound/cdparanoia -- to rip game music from the CD"
- fi
-
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- xdg_icon_cache_update
-}