mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
games-strategy/wargus: drop 3.2.0, 3.3.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
@@ -1,4 +1,2 @@
|
||||
DIST wargus-3.2.0.tar.gz 5062175 BLAKE2B e742c2dae21aa5a8a05ef8a4cefc7d1245707d401aa9e14dfc633aeac0e4e4e54459c0ce07cbd32aed842c3dcf57ea8df39fcfc34a9316211146a61ce71464dc SHA512 bc85304c0994abf778cf157d1013d9dea18e1d761a3b432018641211824bcdb2e424c938842848d8c7a670d8660289b5860342a99be7af259cf8eaf883af1285
|
||||
DIST wargus-3.3.0.tar.gz 5094634 BLAKE2B aa0b02d62dc8620ba9517e5c7d1e8193f2c4c0e20b9b96b91cd5aa57fefdfda7354c82d67507aea67704adc7c77d90b858f0f3fb78d2a1bf430b5c4c5251f432 SHA512 3a2bd04aed0ced18a11ab925ca3d4da98f8848b45a0716fe5164ee5e0f9c76a63d7783d9ba94f3de022622e841f0257cb59d507ea772b2cc42419cef01ea8cbc
|
||||
DIST wargus-3.3.1.tar.gz 5094251 BLAKE2B b5f3674db93a8973f166e6dd0dcd9adeee330aa3932b97218b10e3540f5bc6123c977f45463d77c1cf6cc8d5dcadf39d799551311e9a891ec91200e668febcd8 SHA512 33a642d87a9a0d407fd8591fbb19d5357b5d7ae2fa3319512776feb0b6dbdc4d403e82de907235a9614302b5b0af466da37af21f7f4093715d39fe7e7da30468
|
||||
DIST wargus-3.3.2.tar.gz 5110092 BLAKE2B bbde0931307f7a182086e898ff87e8d559ad0f239b04a019359a30fbca20b82745d598571d8d42353952aade4b96ded3de8e06b92dc947c7a7d9aee00c315c71 SHA512 111d7bc0889f86356226478834d515912b1221a131aa405acf75cbdd16cda4e83c4e900ea30e86c162301504a617755284a9656d6709aaa7ab2baf8f8591dcf8
|
||||
|
||||
@@ -1,73 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
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"
|
||||
|
||||
RDEPEND="
|
||||
=games-engines/stratagus-${PV}*[theora]
|
||||
media-libs/libpng:0=
|
||||
sys-libs/zlib:=
|
||||
x11-libs/gtk+:2
|
||||
x11-libs/libX11
|
||||
bne? ( app-arch/stormlib:= )
|
||||
!games-strategy/wargus-data"
|
||||
DEPEND="${RDEPEND}"
|
||||
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
|
||||
}
|
||||
@@ -1,81 +0,0 @@
|
||||
# Copyright 1999-2022 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=
|
||||
sys-libs/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
|
||||
}
|
||||
Reference in New Issue
Block a user