diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-27 00:07:54 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-28 13:26:06 +0100 |
commit | 1b5dba47a8f0291ff78a785bb0df572369f7ec85 (patch) | |
tree | 54e7ad5e8eed03b1f3bc9fe8bdd1ca317ef5dc1d /games-arcade/tuxanci | |
parent | net-firewall/conntrack-tools: keyworded 1.4.6 for ppc64 (diff) | |
download | gentoo-1b5dba47a8f0291ff78a785bb0df572369f7ec85.tar.gz gentoo-1b5dba47a8f0291ff78a785bb0df572369f7ec85.tar.bz2 gentoo-1b5dba47a8f0291ff78a785bb0df572369f7ec85.zip |
games-arcade/tuxanci: EAPI-7 bump, switch to cmake.eclass, DESCRIPTION
Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'games-arcade/tuxanci')
-rw-r--r-- | games-arcade/tuxanci/tuxanci-20110429-r1.ebuild | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild b/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild index a03b0ba4176b..96497f83db3f 100644 --- a/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild +++ b/games-arcade/tuxanci/tuxanci-20110429-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit cmake-utils +inherit cmake -DESCRIPTION="Tuxanci is first tux shooter inspired by game Bulanci" +DESCRIPTION="First Tux shooter multi-player network game inspired by Bulanci" HOMEPAGE="https://repo.or.cz/w/tuxanci.git" if [[ ${PV} = *9999 ]]; then @@ -25,16 +25,15 @@ RDEPEND=" !dedicated? ( >=media-libs/fontconfig-2.7.0 media-libs/libsdl[X,opengl?] - media-libs/sdl-ttf[X] >=media-libs/sdl-image-1.2.10[png] - sound? ( - >=media-libs/sdl-mixer-1.2.11[vorbis] - ) + media-libs/sdl-ttf[X] + sound? ( >=media-libs/sdl-mixer-1.2.11[vorbis] ) ) physfs? ( dev-games/physfs[zip] ) !physfs? ( >=dev-libs/libzip-0.9 ) " -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig nls? ( sys-devel/gettext ) " @@ -55,5 +54,5 @@ src_configure() { -DCMAKE_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF} -DCMAKE_CONF_PATH="${EPREFIX}"/etc ) - cmake-utils_src_configure + cmake_src_configure } |