diff options
author | 2008-09-03 03:25:37 +0000 | |
---|---|---|
committer | 2008-09-03 03:25:37 +0000 | |
commit | cc6b0377eae21131816be6a2eae5d7c86f55620f (patch) | |
tree | 14a071ea6f594a94709a7257a989e4c42e6c6e64 /games-strategy | |
parent | Stable on amd64 for bug #236498 (diff) | |
download | gentoo-2-cc6b0377eae21131816be6a2eae5d7c86f55620f.tar.gz gentoo-2-cc6b0377eae21131816be6a2eae5d7c86f55620f.tar.bz2 gentoo-2-cc6b0377eae21131816be6a2eae5d7c86f55620f.zip |
version bump; also expose small gui options (bug #224921)
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/wesnoth/ChangeLog | 8 | ||||
-rw-r--r-- | games-strategy/wesnoth/metadata.xml | 2 | ||||
-rw-r--r-- | games-strategy/wesnoth/wesnoth-1.4.5.ebuild | 127 |
3 files changed, 136 insertions, 1 deletions
diff --git a/games-strategy/wesnoth/ChangeLog b/games-strategy/wesnoth/ChangeLog index 0bd501b7555b..a2410114fdbb 100644 --- a/games-strategy/wesnoth/ChangeLog +++ b/games-strategy/wesnoth/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-strategy/wesnoth # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.131 2008/08/24 13:06:20 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.132 2008/09/03 03:25:37 mr_bones_ Exp $ + +*wesnoth-1.4.5 (03 Sep 2008) + + 03 Sep 2008; Michael Sterrett <mr_bones_@gentoo.org> + +wesnoth-1.4.5.ebuild: + version bump; also expose small gui options (bug #224921) 24 Aug 2008; Markus Rothe <corsair@gentoo.org> wesnoth-1.4.4.ebuild: Stable on ppc64; bug #234984 diff --git a/games-strategy/wesnoth/metadata.xml b/games-strategy/wesnoth/metadata.xml index 992649c6dedc..4ba0824df777 100644 --- a/games-strategy/wesnoth/metadata.xml +++ b/games-strategy/wesnoth/metadata.xml @@ -6,6 +6,8 @@ <flag name="editor">Enable compilation of map editor</flag> <flag name="lite">Lite install</flag> <flag name="server">Enable compilation of server</flag> + <flag name="smallgui">enable GUI reductions for resolutions down to 800x480 (eeePC, Nokia 8x0)</flag> <flag name="tools">Enable compilation of translation tools</flag> + <flag name="tinygui">enable GUI reductions for resolutions down to 320x240 (PDAs)</flag> </use> </pkgmetadata> diff --git a/games-strategy/wesnoth/wesnoth-1.4.5.ebuild b/games-strategy/wesnoth/wesnoth-1.4.5.ebuild new file mode 100644 index 000000000000..f7667e51e73b --- /dev/null +++ b/games-strategy/wesnoth/wesnoth-1.4.5.ebuild @@ -0,0 +1,127 @@ +# 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.5.ebuild,v 1.1 2008/09/03 03:25:37 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 +} |