diff options
Diffstat (limited to 'games-strategy/wesnoth/wesnoth-1.1.8.ebuild')
-rw-r--r-- | games-strategy/wesnoth/wesnoth-1.1.8.ebuild | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/games-strategy/wesnoth/wesnoth-1.1.8.ebuild b/games-strategy/wesnoth/wesnoth-1.1.8.ebuild new file mode 100644 index 000000000000..c559664f5c4f --- /dev/null +++ b/games-strategy/wesnoth/wesnoth-1.1.8.ebuild @@ -0,0 +1,91 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.1.8.ebuild,v 1.1 2006/08/21 03:18:33 mr_bones_ Exp $ + +inherit autotools 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.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc ppc64 sparc x86" +IUSE="dedicated editor gnome kde lite nls server tools" + +DEPEND=">=media-libs/libsdl-1.2.7 + !dedicated? ( + || ( + x11-libs/libX11 + virtual/x11 ) + >=media-libs/freetype-2 ) + >=media-libs/sdl-mixer-1.2 + >=media-libs/sdl-image-1.2 + media-libs/sdl-net + sys-libs/zlib" + +S=${WORKDIR}/${PN}-${MY_PV} + +pkg_setup() { + if ! built_with_use -o media-libs/sdl-mixer vorbis oggvorbis ; then + die "Please emerge sdl-mixer with USE=vorbis" + fi + games_pkg_setup +} + +src_unpack() { + unpack "${A}" + if 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 + cd "${S}" + cp "${FILESDIR}/configure.ac" . || die + cp "${FILESDIR}/Makefile.am" icons/ || die + eautoreconf +} + +src_compile() { + filter-flags -ftracer -fomit-frame-pointer + if [[ $(gcc-major-version) -eq 3 ]] ; then + filter-flags -fstack-protector + append-flags -fno-stack-protector + fi + # the icon and desktop stuff doesn't work yet... + egamesconf \ + --disable-dependency-tracking \ + --without-fribidi \ + --with-localedir=/usr/share/locale \ + --with-icondir=/usr/share/icons \ + --with-desktopdir=/usr/share/applications \ + $(use_enable lite) \ + $(use_enable server) \ + $(use_enable server campaign-server) \ + $(use server && echo --with-server-uid=${GAMES_USER_DED} --with-server-gid=${GAMES_GROUP}) \ + $(use_enable editor) \ + $(use_enable tools) \ + $(use_enable nls) \ + $(use_enable nls dummy-locales) \ + $(use_enable !dedicated game) \ + $(use_with gnome) \ + $(use_with kde) \ + || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + #mv "${D}${GAMES_DATADIR}/"{icons,applnk,applications} "${D}/usr/share/" + dodoc MANUAL changelog + if use server; then + keepdir "${GAMES_STATEDIR}/run/wesnothd" + doinitd "${T}"/wesnothd || die "doinitd failed" + fi + prepgamesdirs +} |