diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-04 06:49:15 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-04 06:49:15 +0000 |
commit | 8806072de847747fad92b01fe4a22a0605e7c032 (patch) | |
tree | 244cd8b2134294ebb1a12fcc4a78d3a2267b7299 /games-strategy/wesnoth | |
parent | set PKGDIR=PORTDIR/packages/CHOST for all uclibc profiles (diff) | |
download | gentoo-2-8806072de847747fad92b01fe4a22a0605e7c032.tar.gz gentoo-2-8806072de847747fad92b01fe4a22a0605e7c032.tar.bz2 gentoo-2-8806072de847747fad92b01fe4a22a0605e7c032.zip |
version bump
Diffstat (limited to 'games-strategy/wesnoth')
-rw-r--r-- | games-strategy/wesnoth/ChangeLog | 7 | ||||
-rw-r--r-- | games-strategy/wesnoth/Manifest | 2 | ||||
-rw-r--r-- | games-strategy/wesnoth/files/digest-wesnoth-0.8.1 | 1 | ||||
-rw-r--r-- | games-strategy/wesnoth/wesnoth-0.8.1.ebuild | 41 |
4 files changed, 50 insertions, 1 deletions
diff --git a/games-strategy/wesnoth/ChangeLog b/games-strategy/wesnoth/ChangeLog index 9957ca1b7d81..26e99608963e 100644 --- a/games-strategy/wesnoth/ChangeLog +++ b/games-strategy/wesnoth/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-strategy/wesnoth # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.32 2004/07/04 09:49:35 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.33 2004/08/04 06:49:15 mr_bones_ Exp $ + +*wesnoth-0.8.1 (03 Aug 2004) + + 03 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> +wesnoth-0.8.1.ebuild: + version bump *wesnoth-0.8 (04 Jul 2004) diff --git a/games-strategy/wesnoth/Manifest b/games-strategy/wesnoth/Manifest index 3eb2c6f5b238..a0d2229d74fe 100644 --- a/games-strategy/wesnoth/Manifest +++ b/games-strategy/wesnoth/Manifest @@ -1,8 +1,10 @@ MD5 70af11249b648c110696363fb2ac241b wesnoth-0.8.ebuild 1115 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 3905b037c31bb475415ac89f0a0cff70 ChangeLog 4385 +MD5 70af11249b648c110696363fb2ac241b wesnoth-0.8.1.ebuild 1115 MD5 47e46af1d44b08c673f97459ddbeb781 wesnoth-0.7.10.ebuild 1117 MD5 8f636b82b8244db2276ddc6b236e12df wesnoth-0.7.11.ebuild 1118 MD5 c62eaa95b5f21678b071c39ae5b60f0c files/digest-wesnoth-0.8 65 +MD5 2bc8f6215be5ce7f59d5e7969ad042d1 files/digest-wesnoth-0.8.1 67 MD5 8caf74723a1c656cc112cdd5d41dc196 files/digest-wesnoth-0.7.10 68 MD5 92b397687e822d731d31d5a8371891ad files/digest-wesnoth-0.7.11 68 diff --git a/games-strategy/wesnoth/files/digest-wesnoth-0.8.1 b/games-strategy/wesnoth/files/digest-wesnoth-0.8.1 new file mode 100644 index 000000000000..615ad591d92b --- /dev/null +++ b/games-strategy/wesnoth/files/digest-wesnoth-0.8.1 @@ -0,0 +1 @@ +MD5 431684c3d97fafa1d28e6faaae5965d4 wesnoth-0.8.1.tar.gz 24295152 diff --git a/games-strategy/wesnoth/wesnoth-0.8.1.ebuild b/games-strategy/wesnoth/wesnoth-0.8.1.ebuild new file mode 100644 index 000000000000..2b8c0c0d0b06 --- /dev/null +++ b/games-strategy/wesnoth/wesnoth-0.8.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-0.8.1.ebuild,v 1.1 2004/08/04 06:49:15 mr_bones_ Exp $ + +inherit flag-o-matic gcc games + +DESCRIPTION="A fantasy turn-based strategy game" +HOMEPAGE="http://www.wesnoth.org/" +SRC_URI="http://www.wesnoth.org/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc sparc amd64" +IUSE="server editor tools gnome kde" + +DEPEND=">=media-libs/libsdl-1.2.7 + >=media-libs/sdl-image-1.2 + >=media-libs/sdl-mixer-1.2 + >=media-libs/sdl-ttf-2.0 + media-libs/sdl-net + virtual/x11" + +src_compile() { + [ "$(gcc-fullversion)" == "3.4.0" ] && filter-flags -ftracer + egamesconf \ + --disable-dependency-tracking \ + $(use_enable server) \ + $(use_enable editor) \ + $(use_enable tools) \ + $(use_enable gnome) \ + $(use_enable kde) \ + || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + mv "${D}${GAMES_DATADIR}/icons" "${D}/usr/share/" + dodoc MANUAL changelog || die "dodoc failed" + prepgamesdirs +} |