diff options
| author | Connor Thomson <blumatrikz@gmail.com> | 2026-09-08 18:27:39 -0700 |
|---|---|---|
| committer | Connor Thomson <blumatrikz@gmail.com> | 2026-09-08 18:27:39 -0700 |
| commit | f1ddc12b68b4e4c8087962de25260470e6df2bea (patch) | |
| tree | 7d0440a6402a9b0ef75ded23fa64b68534255bba /packaging/gentoo/tuxanci-0.21.0.ebuild | |
| parent | 6025860a61386bf767b29c3ec5fd0d31285f1056 (diff) | |
Add tuxanci2 files
Diffstat (limited to 'packaging/gentoo/tuxanci-0.21.0.ebuild')
| -rw-r--r-- | packaging/gentoo/tuxanci-0.21.0.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/packaging/gentoo/tuxanci-0.21.0.ebuild b/packaging/gentoo/tuxanci-0.21.0.ebuild deleted file mode 100644 index 09ab6d4..0000000 --- a/packaging/gentoo/tuxanci-0.21.0.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxanci/tuxanci-0.21.0.ebuild,v 1.2 2008/10/27 08:56:52 scarabeus Exp $ - -EAPI="1" - -inherit cmake-utils games - -DESCRIPTION="Tuxanci is first cushion shooter inspired by game Bulanci." -HOMEPAGE="http://www.tuxanci.org/" -SRC_URI="http://download.${PN}.org/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="alsa debug dedicated nls" -# alsa is used only when building client - -RDEPEND="!dedicated? ( - >=media-libs/libsdl-1.2.10 - >=media-libs/sdl-ttf-2.0.7 - >=media-libs/sdl-image-1.2.6-r1 - alsa? ( - >=media-libs/sdl-mixer-1.2.7 - ) - ) - dev-libs/zziplib" -DEPEND="${RDEPEND} - >=dev-util/cmake-2.6.0 - nls? ( sys-devel/gettext )" - -src_configure() { - local mycmakeargs - use alsa || mycmakeargs="${mycmakeargs} -DNO_Audio=1" - use debug && mycmakeargs="${mycmakeargs} -DDebug=1" - use dedicated && mycmakeargs="${mycmakeargs} -DServer=1" - use nls && mycmakeargs="${mycmakeargs} -DNLS=1" - # This cant be quoted due to cmake nature. - # Read as: quote it and it wont compile. - mycmakeargs="${mycmakeargs} -DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX} - -DCMAKE_DATA_PATH=${GAMES_DATADIR} - -DCMAKE_LOCALE_PATH=${GAMES_DATADIR_BASE}/locale/ - -DCMAKE_DOC_PATH=${GAMES_DATADIR_BASE}/doc/ - -DCMAKE_ETC_PATH=${GAMES_SYSCONFDIR} -DLIB_INSTALL_DIR=$(games_get_libdir)" - cmake-utils_src_configure -} - -src_install() { - local MY_PN - use dedicated && MY_PN=${PN}-server || MY_PN=${PN} - - cmake-utils_src_install - dosym "${GAMES_BINDIR}"/${MY_PN}-${PV} "${GAMES_BINDIR}"/${MY_PN} - doicon data/${PN}.svg - # we compile our desktop file - domenu data/${PN}.desktop - prepgamesdirs -} |