Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/bzflag/
Date: Sun, 28 Feb 2021 15:27:50
Message-Id: 1614526056.9f6d98712d26bf920d5a31942c92a24b4ca1c31c.tupone@gentoo
1 commit: 9f6d98712d26bf920d5a31942c92a24b4ca1c31c
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 15:27:11 2021 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 15:27:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f6d9871
7
8 games-action/bzflag: version bump to 2.4.22
9
10 Package-Manager: Portage-3.0.13, Repoman-3.0.2
11 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
12
13 games-action/bzflag/Manifest | 1 +
14 games-action/bzflag/bzflag-2.4.22.ebuild | 71 ++++++++++++++++++++++++++++++++
15 2 files changed, 72 insertions(+)
16
17 diff --git a/games-action/bzflag/Manifest b/games-action/bzflag/Manifest
18 index 26fd4fe4e9b..474be2b3e40 100644
19 --- a/games-action/bzflag/Manifest
20 +++ b/games-action/bzflag/Manifest
21 @@ -3,3 +3,4 @@ DIST bzflag-2.4.14.tar.bz2 14066129 BLAKE2B 7ec44bc9b7ccb644b98dac0b99770471b488
22 DIST bzflag-2.4.16.tar.bz2 14010330 BLAKE2B fc19e068c43c18bd38445b48ca0ca38669f956da1540e3255420cb7f36a42349aa3aa881dfeed2b2a1a7e163ee832a510fde658edd38b6ac038b62229baf8306 SHA512 809adc39088f3fc8ca0d2ead9c7172cfbe582789bc80b3ac55fabe078a0868f0cf7cfa8027ac696718e9983a19386933fd370684a0bd33e63c3106f2ce8a9d63
23 DIST bzflag-2.4.18.tar.bz2 14011236 BLAKE2B 103495622afb45b2bf87576d92c5cdd37a04386fa82583929ab64087a875acd3be49045cf81d0099fccd0ebc5e7471883756edb85894f9f519d7b6fea8ac3534 SHA512 8e3183f2d78b686c92f3b9911b3cad2fa0df5693401537dc674c75e192fd59451167b7ddc546aa8a090b38d7864b8f22459ba9a4702451987f9c1dfa87fdb246
24 DIST bzflag-2.4.20.tar.bz2 14032356 BLAKE2B 278b0f0d970f103a7b00953e60bda6962706dea27a8695bae8e902bdbb1364158ace03dafc778871e89444fe44f16e7d2fceec36b67982ad7f18fc916484260d SHA512 6140123d37065bead3021ef9c36db1210ad2c71a4a7deb6894bb3f856a571197a7eac37d16b8e3b587549dc201c4ac8d7bbe03d1a05d067dc452861924005169
25 +DIST bzflag-2.4.22.tar.bz2 14169079 BLAKE2B e3020d161326215b721e142198295314fce60212322d787389ee47519a8f20a64065ec2744799b8dc282fb343af1b2c5ae54bdab93827a5716ad5ac2363f8978 SHA512 c78ad0e9e861d0c922ef73dd1e040d998836efaab3a48d5a3cd8392835ce37392b1b9438aed7483ea48c6bce672bb937aeba40553553dce0c0fd3cce38bf10cf
26
27 diff --git a/games-action/bzflag/bzflag-2.4.22.ebuild b/games-action/bzflag/bzflag-2.4.22.ebuild
28 new file mode 100644
29 index 00000000000..fd77e44f349
30 --- /dev/null
31 +++ b/games-action/bzflag/bzflag-2.4.22.ebuild
32 @@ -0,0 +1,71 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +inherit autotools desktop flag-o-matic
38 +
39 +DESCRIPTION="3D tank combat simulator game"
40 +HOMEPAGE="https://www.bzflag.org/"
41 +SRC_URI="https://download.bzflag.org/bzflag/source/${PV}/${P}.tar.bz2"
42 +
43 +LICENSE="LGPL-2.1"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="dedicated upnp"
47 +
48 +RDEPEND="
49 + net-dns/c-ares
50 + >=net-misc/curl-7.15.0
51 + sys-libs/ncurses:0
52 + sys-libs/zlib
53 + !dedicated? (
54 + media-libs/libsdl2[joystick,sound,video]
55 + media-libs/glew:=
56 + virtual/glu
57 + virtual/opengl )
58 + upnp? ( net-libs/miniupnpc )
59 +"
60 +DEPEND="
61 + ${RDEPEND}
62 + virtual/pkgconfig
63 +"
64 +PATCHES=(
65 + "${FILESDIR}"/${PN}-2.4.12-configure.patch
66 + "${FILESDIR}"/${PN}-2.4.12-tinfo.patch
67 + "${FILESDIR}"/${PN}-2.4.12-sdl2-cppflags.patch
68 +)
69 +
70 +src_prepare() {
71 + default
72 + eautoreconf
73 +}
74 +
75 +src_configure() {
76 + local myconf=(
77 + $(use_enable upnp UPnP)
78 + --libdir="${EPREFIX}"/usr/$(get_libdir)/${PN}
79 + )
80 +
81 + if use dedicated ; then
82 + ewarn
83 + ewarn "You are building a server-only copy of BZFlag"
84 + ewarn
85 + myconf+=( --disable-client --without-SDL )
86 + else
87 + myconf=( --with-SDL=2 )
88 + fi
89 +
90 + econf "${myconf[@]}"
91 +}
92 +
93 +src_install() {
94 + DOCS="AUTHORS ChangeLog DEVINFO PORTING README README.Linux" \
95 + default
96 +
97 + if ! use dedicated ; then
98 + newicon data/bzflag-48x48.png ${PN}.png
99 + make_desktop_entry ${PN} "BZFlag"
100 + fi
101 +
102 + find "${D}"/ -name \*.la -delete
103 +}