diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-03 20:34:09 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-04 10:37:21 +0100 |
commit | 7b39c6e5c4db51c5f45bb47a3e38d0da17ef95af (patch) | |
tree | e0665a5ce5c6e08888f9f76d783748602c5b92c8 /games-action | |
parent | www-client/epiphany: bump to 3.32.6 (diff) | |
download | gentoo-7b39c6e5c4db51c5f45bb47a3e38d0da17ef95af.tar.gz gentoo-7b39c6e5c4db51c5f45bb47a3e38d0da17ef95af.tar.bz2 gentoo-7b39c6e5c4db51c5f45bb47a3e38d0da17ef95af.zip |
*/*: Switch games proj to cmake.eclass
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/abuse/abuse-0.9_p20181213-r1.ebuild | 8 | ||||
-rw-r--r-- | games-action/lugaru/lugaru-20151204-r1.ebuild | 6 | ||||
-rw-r--r-- | games-action/supertuxkart/supertuxkart-1.0.ebuild | 8 | ||||
-rw-r--r-- | games-action/violetland/violetland-0.5.ebuild | 8 |
4 files changed, 15 insertions, 15 deletions
diff --git a/games-action/abuse/abuse-0.9_p20181213-r1.ebuild b/games-action/abuse/abuse-0.9_p20181213-r1.ebuild index 5117d81dff90..caf6ee16cf2e 100644 --- a/games-action/abuse/abuse-0.9_p20181213-r1.ebuild +++ b/games-action/abuse/abuse-0.9_p20181213-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils desktop xdg-utils +inherit cmake desktop xdg-utils COMMIT="42b6acd19af00689e8f34355e3b13323d8ea3f79" DATA_PV="0.8" @@ -26,7 +26,7 @@ S="${WORKDIR}/${PN}-${COMMIT}" src_prepare() { ln -snf ../../${PN}-${DATA_PV}/data/{music,sfx} data/ || die - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -35,11 +35,11 @@ src_configure() { -DBUILD_SHARED_LIBS=OFF ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install doicon -s 32 doc/${PN}.png make_desktop_entry abuse Abuse } diff --git a/games-action/lugaru/lugaru-20151204-r1.ebuild b/games-action/lugaru/lugaru-20151204-r1.ebuild index c2abf83066a1..c6e92432e47d 100644 --- a/games-action/lugaru/lugaru-20151204-r1.ebuild +++ b/games-action/lugaru/lugaru-20151204-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils desktop +inherit cmake desktop DESCRIPTION="3D arcade with unique fighting system and anthropomorphic characters" HOMEPAGE="https://bitbucket.org/osslugaru/lugaru/wiki/Home" @@ -32,7 +32,7 @@ PATCHES=( ) src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare sed -i \ -e "s:@GENTOO_DIR@:/usr/share/${PN}:" \ @@ -44,7 +44,7 @@ src_configure() { -DCMAKE_VERBOSE_MAKEFILE=TRUE -DLUGARU_FORCE_INTERNAL_OPENGL=False ) - cmake-utils_src_configure + cmake_src_configure } src_install() { diff --git a/games-action/supertuxkart/supertuxkart-1.0.ebuild b/games-action/supertuxkart/supertuxkart-1.0.ebuild index 96746c833f78..1f2999ac01bb 100644 --- a/games-action/supertuxkart/supertuxkart-1.0.ebuild +++ b/games-action/supertuxkart/supertuxkart-1.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils desktop xdg-utils +inherit cmake desktop xdg-utils DESCRIPTION="A kart racing game starring Tux, the linux penguin (TuxKart fork)" HOMEPAGE="https://supertuxkart.net/" @@ -56,7 +56,7 @@ PATCHES=( ) src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare # remove bundled libraries, just to be sure rm -r lib/{angelscript,enet,glew,jpeglib,libpng,zlib} || die @@ -78,11 +78,11 @@ src_configure() { -DSTK_INSTALL_DATA_DIR=share/${PN} -DBUILD_SHARED_LIBS=OFF # build bundled libsquish as static library ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install dodoc CHANGELOG.md doicon -s 64 "${DISTDIR}"/${PN}.png diff --git a/games-action/violetland/violetland-0.5.ebuild b/games-action/violetland/violetland-0.5.ebuild index 7078f00ebd3f..318f5c2470ac 100644 --- a/games-action/violetland/violetland-0.5.ebuild +++ b/games-action/violetland/violetland-0.5.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils desktop xdg-utils +inherit cmake desktop xdg-utils DESCRIPTION="Help a girl named Violet in the struggle with hordes of monsters" HOMEPAGE="https://violetland.github.io/" @@ -29,7 +29,7 @@ BDEPEND=" " src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare # Bizarrely fcitx is only bundled for a CMake module to find libintl # but let's make sure the rest remains unused. @@ -42,11 +42,11 @@ src_configure() { -DLOCALE_INSTALL_DIR=share/locale ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install dodoc CHANGELOG.md CONTRIBUTORS.md # Remove duplicate READMEs. |