diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-07-03 11:30:23 +0200 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2020-07-26 21:23:02 +0100 |
commit | 56f871d0d81ca821c66c2a7172d8386775afcc7c (patch) | |
tree | 1271d0867a913403f8163dc8287cdf16b689a7ce /games-fps | |
parent | dev-games/flatzebra: Bump to 0.1.7 (diff) | |
download | gentoo-56f871d0d81ca821c66c2a7172d8386775afcc7c.tar.gz gentoo-56f871d0d81ca821c66c2a7172d8386775afcc7c.tar.bz2 gentoo-56f871d0d81ca821c66c2a7172d8386775afcc7c.zip |
games-fps/xonotic: EAPI7, fix #710894, use HTTPS, fix LICENSE
Closes: https://bugs.gentoo.org/710894
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16566
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/xonotic/xonotic-0.8.2.ebuild | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/games-fps/xonotic/xonotic-0.8.2.ebuild b/games-fps/xonotic/xonotic-0.8.2.ebuild index 32b2eab5bb41..41f326a13222 100644 --- a/games-fps/xonotic/xonotic-0.8.2.ebuild +++ b/games-fps/xonotic/xonotic-0.8.2.ebuild @@ -1,15 +1,16 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit eutils check-reqs toolchain-funcs +EAPI=7 + +inherit desktop check-reqs toolchain-funcs MY_PN="${PN^}" DESCRIPTION="Fork of Nexuiz, Deathmatch FPS based on DarkPlaces, an advanced Quake 1 engine" -HOMEPAGE="http://www.xonotic.org/" -SRC_URI="http://dl.xonotic.org/${P}.zip" +HOMEPAGE="https://www.xonotic.org/" +SRC_URI="https://dl.xonotic.org/${P}.zip" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="alsa debug dedicated doc ode sdl" @@ -42,6 +43,9 @@ RDEPEND=" !dedicated? ( ${UIRDEPEND} )" DEPEND="${RDEPEND} !dedicated? ( ${UIDEPEND} )" +BDEPEND="app-arch/unzip" + +DOCS="Docs/*.txt" CHECKREQS_DISK_BUILD="1200M" CHECKREQS_DISK_USR="950M" @@ -60,15 +64,15 @@ src_prepare() { default sed -i \ - -e "/^EXE_/s:darkplaces:${PN}:" \ - -e "s:-O3:${CFLAGS}:" \ - -e "/-lm/s:$: ${LDFLAGS}:" \ - -e '/^STRIP/s/strip/true/' \ + -e "/^EXE_/s|darkplaces|${PN}|" \ + -e "s|-O3|${CFLAGS}|" \ + -e "/-lm/s|$| ${LDFLAGS}|" \ + -e '/^STRIP/s|strip|true|' \ source/darkplaces/makefile.inc || die if ! use alsa; then sed -i \ - -e "/DEFAULT_SNDAPI/s:ALSA:OSS:" \ + -e "/DEFAULT_SNDAPI/s|ALSA|OSS|" \ source/darkplaces/makefile || die fi } @@ -102,8 +106,8 @@ src_install() { fi dobin source/darkplaces/${PN}-dedicated - dodoc Docs/*.txt - use doc && dohtml -r Docs + use doc && local HTML_DOCS=( Docs/htmlfiles Docs/faq.html ) + einstalldocs insinto "/usr/share/${PN}" doins -r key_0.d0pk server data |