diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-27 11:09:04 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-28 13:26:07 +0100 |
commit | 0cb1df42b5e176c4bba8483da1cbc8c94c83795d (patch) | |
tree | 009e92e9c670f2d27bc1b4cd1ebf6fd54e41c146 | |
parent | games-arcade/tuxanci: Set ENABLE_DEBUG=OFF to respect CFLAGS (diff) | |
download | gentoo-0cb1df42b5e176c4bba8483da1cbc8c94c83795d.tar.gz gentoo-0cb1df42b5e176c4bba8483da1cbc8c94c83795d.tar.bz2 gentoo-0cb1df42b5e176c4bba8483da1cbc8c94c83795d.zip |
games-arcade/tuxanci: Drop unmaintained live ebuild
No upstream commit since 2011-04-29.
Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r-- | games-arcade/tuxanci/tuxanci-99999999.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/games-arcade/tuxanci/tuxanci-99999999.ebuild b/games-arcade/tuxanci/tuxanci-99999999.ebuild deleted file mode 100644 index a03b0ba4176b..000000000000 --- a/games-arcade/tuxanci/tuxanci-99999999.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="Tuxanci is first tux shooter inspired by game Bulanci" -HOMEPAGE="https://repo.or.cz/w/tuxanci.git" - -if [[ ${PV} = *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://repo.or.cz/tuxanci.git" -else - SRC_URI="mirror://gentoo/${P}.tar.xz" - KEYWORDS="~amd64 ~ppc64 ~x86" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="debug dedicated +ipv6 nls opengl physfs +sound" - -# >=x11-libs/cairo-1.8.8[X,svg] -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] - ) - ) - physfs? ( dev-games/physfs[zip] ) - !physfs? ( >=dev-libs/libzip-0.9 ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig - nls? ( sys-devel/gettext ) -" - -src_configure() { - local mycmakeargs=( - -DWITH_AUDIO=$(usex sound) - -DBUILD_SERVER=$(usex dedicated) - -DWITH_NLS=$(usex nls) - -DWITH_PHYSFS=$(usex physfs) - -DWITH_OPENGL=$(usex opengl) - -DENABLE_IPV6=$(usex ipv6) - -DDEVELOPER=$(usex debug) - -DCMAKE_INSTALL_ICONDIR="${EPREFIX}"/usr/pixmaps/ - -DCMAKE_INSTALL_DESKTOPDIR="${EPREFIX}"/usr/applications/ - -DCMAKE_DATA_PATH="${EPREFIX}"/usr/share/ - -DCMAKE_LOCALE_PATH="${EPREFIX}"/usr/share/locale/ - -DCMAKE_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF} - -DCMAKE_CONF_PATH="${EPREFIX}"/etc - ) - cmake-utils_src_configure -} |