diff options
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/asc/asc-2.1.0.0.ebuild | 72 | ||||
-rw-r--r-- | games-strategy/wesnoth/wesnoth-1.4.6.ebuild | 127 |
2 files changed, 0 insertions, 199 deletions
diff --git a/games-strategy/asc/asc-2.1.0.0.ebuild b/games-strategy/asc/asc-2.1.0.0.ebuild deleted file mode 100644 index d13cf9d8f984..000000000000 --- a/games-strategy/asc/asc-2.1.0.0.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/asc/asc-2.1.0.0.ebuild,v 1.3 2008/11/17 17:19:50 mr_bones_ Exp $ - -inherit toolchain-funcs flag-o-matic games - -DESCRIPTION="turn based strategy game designed in the tradition of the Battle Isle series" -HOMEPAGE="http://www.asc-hq.org/" -SRC_URI="mirror://sourceforge/asc-hq/${P}.tar.bz2 - http://www.asc-hq.org/music/frontiers.ogg - http://www.asc-hq.org/music/time_to_strike.ogg - http://www.asc-hq.org/music/machine_wars.ogg" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="app-arch/bzip2 - media-libs/jpeg - media-libs/libsdl - media-libs/libpng - media-libs/sdl-image - media-libs/sdl-mixer - media-libs/sdl-sound - dev-libs/boost - dev-games/physfs - media-libs/smpeg - media-libs/libvorbis - dev-libs/expat - media-libs/freetype - =dev-libs/libsigc++-1.2*" -DEPEND="${RDEPEND} - dev-lang/perl - dev-util/pkgconfig" - -src_unpack() { - local f - - unpack ${P}.tar.bz2 - for f in ${A} - do - case ${f} in - *ogg) - cp "${DISTDIR}/${f}" "${S}/data/music" || die "cp music failed" - ;; - esac - done -} - -src_compile() { - # Added --disable-paraguitest for bugs 26402 and 4488 - # Added --disable-paragui for bug 61154 since it's not really used much - # and the case is well documented at http://www.asc-hq.org/ - if [[ $(gcc-major-version) -eq 4 ]] ; then - replace-flags -O3 -O2 - fi - egamesconf \ - --disable-dependency-tracking \ - --disable-paraguitest \ - --disable-paragui \ - --datadir="${GAMES_DATADIR_BASE}" \ - || die - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog README TODO - dohtml -r doc/* - prepgamesdirs -} diff --git a/games-strategy/wesnoth/wesnoth-1.4.6.ebuild b/games-strategy/wesnoth/wesnoth-1.4.6.ebuild deleted file mode 100644 index 243aa7cd49c0..000000000000 --- a/games-strategy/wesnoth/wesnoth-1.4.6.ebuild +++ /dev/null @@ -1,127 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.6.ebuild,v 1.1 2008/11/03 01:13:06 mr_bones_ Exp $ - -inherit eutils toolchain-funcs flag-o-matic games - -MY_PV=${PV/_/} -DESCRIPTION="Battle for Wesnoth - A fantasy turn-based strategy game" -HOMEPAGE="http://www.wesnoth.org/" -SRC_URI="mirror://sourceforge/wesnoth/${PN}-${MY_PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="dedicated editor lite nls server smallgui static tinygui tools" - -RDEPEND=">=media-libs/libsdl-1.2.7 - media-libs/sdl-net - dev-libs/boost - !dedicated? ( - x11-libs/libX11 - >=media-libs/sdl-mixer-1.2 - >=media-libs/sdl-image-1.2 - dev-lang/python - >=media-libs/freetype-2 ) - nls? ( virtual/libintl )" -# the configure script is broken and checks for freetype even if -# it won't be used. until it's either patched out or upstream fixes -# it, just make it a DEPEND. -# reported by Miika Linnapuomi -DEPEND="${RDEPEND} - !dedicated? ( - smallgui? ( media-gfx/imagemagick ) - tinygui? ( media-gfx/imagemagick ) - ) - dedicated? ( - >=media-libs/sdl-mixer-1.2 - >=media-libs/sdl-image-1.2 - >=media-libs/freetype-2 ) - nls? ( sys-devel/gettext )" - -S=${WORKDIR}/${PN}-${MY_PV} - -pkg_setup() { - if ! built_with_use media-libs/sdl-mixer vorbis ; then - die "Please emerge media-libs/sdl-mixer with USE=vorbis" - fi - if ! built_with_use media-libs/sdl-image png ; then - die "Please emerge media-libs/sdl-image with USE=png" - fi - # dedicated also needs USE=X for libsdl: bug #222033 - if ! built_with_use media-libs/libsdl X ; then - die "Please emerge media-libs/libsdl with USE=X" - fi - if use !dedicated && use smallgui && use tinygui ; then - ewarn "USE=tinygui overrides USE=smallgui" - ebeep - epause 10 - fi - games_pkg_setup -} - -src_unpack() { - unpack ${A} - if use dedicated || use server ; then - sed \ - -e "s:GAMES_BINDIR:${GAMES_BINDIR}:" \ - -e "s:GAMES_STATEDIR:${GAMES_STATEDIR}:" \ - -e "s/GAMES_USER_DED/${GAMES_USER_DED}/" \ - -e "s/GAMES_GROUP/${GAMES_GROUP}/" "${FILESDIR}"/wesnothd.rc \ - > "${T}"/wesnothd \ - || die "sed failed" - fi - if ! use nls ; then - cd "${S}" - sed -i \ - -e '/^MAN_LANG/d' \ - doc/man/Makefile.in \ - || die "sed failed" - fi -} - -src_compile() { - local myconf - - filter-flags -ftracer -fomit-frame-pointer - if [[ $(gcc-major-version) -eq 3 ]] ; then - filter-flags -fstack-protector - append-flags -fno-stack-protector - fi - if use dedicated || use server ; then - myconf="${myconf} --enable-server" - myconf="${myconf} --enable-campaign-server" - myconf="${myconf} --with-server-uid=${GAMES_USER_DED}" - myconf="${myconf} --with-server-gid=${GAMES_GROUP}" - fi - egamesconf \ - --disable-dependency-tracking \ - --without-fribidi \ - --with-localedir=/usr/share/locale \ - --with-icondir=/usr/share/icons \ - --with-desktopdir=/usr/share/applications \ - --docdir=/usr/share/doc/${PF} \ - --enable-python-install \ - $(use_enable smallgui) \ - $(use_enable tinygui) \ - $(use_enable lite) \ - $(use_enable static) \ - $(use_enable editor) \ - $(use_enable tools) \ - $(use_enable nls) \ - $(use_enable nls dummy-locales) \ - $(use_enable !dedicated game) \ - ${myconf} \ - || die - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc changelog - if use dedicated || use server; then - keepdir "${GAMES_STATEDIR}/run/wesnothd" - doinitd "${T}"/wesnothd || die "doinitd failed" - fi - prepgamesdirs -} |