summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2021-06-22 19:56:59 -0400
committerIonen Wolkens <ionen@gentoo.org>2021-06-22 22:22:35 -0400
commit3439118ee68f40cfbe2cb415ff7222d00ce5ff8f (patch)
treec769a62e80005a3653dcd2056314d6d127efa6b7 /games-action/bzflag
parentgames-action/barrage: drop 1.0.4-r1 (diff)
downloadgentoo-3439118ee68f40cfbe2cb415ff7222d00ce5ff8f.tar.gz
gentoo-3439118ee68f40cfbe2cb415ff7222d00ce5ff8f.tar.bz2
gentoo-3439118ee68f40cfbe2cb415ff7222d00ce5ff8f.zip
games-action/bzflag: drop 2.4.20
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-action/bzflag')
-rw-r--r--games-action/bzflag/Manifest1
-rw-r--r--games-action/bzflag/bzflag-2.4.20.ebuild73
2 files changed, 0 insertions, 74 deletions
diff --git a/games-action/bzflag/Manifest b/games-action/bzflag/Manifest
index 878f716476d5..376b5c676891 100644
--- a/games-action/bzflag/Manifest
+++ b/games-action/bzflag/Manifest
@@ -1,2 +1 @@
-DIST bzflag-2.4.20.tar.bz2 14032356 BLAKE2B 278b0f0d970f103a7b00953e60bda6962706dea27a8695bae8e902bdbb1364158ace03dafc778871e89444fe44f16e7d2fceec36b67982ad7f18fc916484260d SHA512 6140123d37065bead3021ef9c36db1210ad2c71a4a7deb6894bb3f856a571197a7eac37d16b8e3b587549dc201c4ac8d7bbe03d1a05d067dc452861924005169
DIST bzflag-2.4.22.tar.bz2 14169079 BLAKE2B e3020d161326215b721e142198295314fce60212322d787389ee47519a8f20a64065ec2744799b8dc282fb343af1b2c5ae54bdab93827a5716ad5ac2363f8978 SHA512 c78ad0e9e861d0c922ef73dd1e040d998836efaab3a48d5a3cd8392835ce37392b1b9438aed7483ea48c6bce672bb937aeba40553553dce0c0fd3cce38bf10cf
diff --git a/games-action/bzflag/bzflag-2.4.20.ebuild b/games-action/bzflag/bzflag-2.4.20.ebuild
deleted file mode 100644
index 0639921ed521..000000000000
--- a/games-action/bzflag/bzflag-2.4.20.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools desktop
-
-DESCRIPTION="3D tank combat simulator game"
-HOMEPAGE="https://www.bzflag.org/"
-SRC_URI="https://download.bzflag.org/bzflag/source/${PV}/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="dedicated upnp"
-
-RDEPEND="
- net-dns/c-ares
- >=net-misc/curl-7.15.0
- sys-libs/ncurses:0
- sys-libs/zlib
- !dedicated? (
- media-libs/libsdl2[joystick,sound,video]
- media-libs/glew:=
- virtual/glu
- virtual/opengl )
- upnp? ( net-libs/miniupnpc )
-"
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
-"
-PATCHES=(
- "${FILESDIR}"/${PN}-2.4.12-configure.patch
- "${FILESDIR}"/${PN}-2.4.12-tinfo.patch
- "${FILESDIR}"/${PN}-2.4.12-sdl2-cppflags.patch
-)
-
-DOCS=( AUTHORS ChangeLog DEVINFO PORTING README README.Linux )
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myconf=(
- $(use_enable upnp UPnP)
- --libdir="${EPREFIX}"/usr/$(get_libdir)/${PN}
- )
-
- if use dedicated ; then
- ewarn
- ewarn "You are building a server-only copy of BZFlag"
- ewarn
- myconf+=( --disable-client --without-SDL )
- else
- myconf=( --with-SDL=2 )
- fi
-
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
-
- if ! use dedicated ; then
- newicon data/bzflag-48x48.png ${PN}.png
- make_desktop_entry ${PN} "BZFlag"
- fi
-
- find "${ED}" -name '*.la' -delete || die
-}