diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-16 05:48:53 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-16 05:48:53 +0000 |
commit | 43c2156f20053bef172e54f70878f53b7b8f813e (patch) | |
tree | bdcf35349fb57707cd79a8045b9e153590d66212 /games-strategy | |
parent | Masked -r3 for amd64. There was no change that should have affected amd64. ... (diff) | |
download | historical-43c2156f20053bef172e54f70878f53b7b8f813e.tar.gz historical-43c2156f20053bef172e54f70878f53b7b8f813e.tar.bz2 historical-43c2156f20053bef172e54f70878f53b7b8f813e.zip |
version bump (bug #44793)
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/wesnoth/ChangeLog | 8 | ||||
-rw-r--r-- | games-strategy/wesnoth/Manifest | 6 | ||||
-rw-r--r-- | games-strategy/wesnoth/files/digest-wesnoth-0.6.99.5 | 1 | ||||
-rw-r--r-- | games-strategy/wesnoth/wesnoth-0.6.99.5.ebuild | 36 |
4 files changed, 48 insertions, 3 deletions
diff --git a/games-strategy/wesnoth/ChangeLog b/games-strategy/wesnoth/ChangeLog index 15eb451790ab..10df94d4a1a5 100644 --- a/games-strategy/wesnoth/ChangeLog +++ b/games-strategy/wesnoth/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-strategy/wesnoth # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.12 2004/02/21 14:54:22 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.13 2004/03/16 05:48:53 mr_bones_ Exp $ + +*wesnoth-0.6.99.5 (15 Mar 2004) + + 15 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> + wesnoth-0.6.99.5.ebuild: + version bump (bug #44793) *wesnoth-0.6.99.4 (21 Feb 2004) diff --git a/games-strategy/wesnoth/Manifest b/games-strategy/wesnoth/Manifest index f9f37e3d6017..0603c31c5ef7 100644 --- a/games-strategy/wesnoth/Manifest +++ b/games-strategy/wesnoth/Manifest @@ -1,9 +1,11 @@ -MD5 a30c9d4ce8f9629d6d7323eaab258343 metadata.xml 241 -MD5 b268acec237d92a942014da26996ba65 ChangeLog 1796 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 24360232b742d5e165c814bee660afc8 ChangeLog 1940 +MD5 1b4013db9b85e3a8acbf6da36ff34fcc wesnoth-0.6.99.5.ebuild 918 MD5 f5d5b6d1503a3ba1e0b070681ad7b902 wesnoth-0.6.99.1.ebuild 918 MD5 d341487bf607c02fa430fb1650f842dd wesnoth-0.6.99.2.ebuild 918 MD5 4c49a75ccb2f8d4606b13c6c88812d7c wesnoth-0.6.99.3.ebuild 918 MD5 b82d58a7626460ee0968b43ff5ee2296 wesnoth-0.6.99.4.ebuild 918 +MD5 13caea64fa182268adcdf9fca0bd7c1c files/digest-wesnoth-0.6.99.5 70 MD5 54b74b28b80b25f584a88dfdb4e1762d files/digest-wesnoth-0.6.99.1 70 MD5 e966635a1c1ba1490da3e026499af97f files/digest-wesnoth-0.6.99.2 70 MD5 b1d414864c9edca563ad0d94140311f0 files/digest-wesnoth-0.6.99.3 70 diff --git a/games-strategy/wesnoth/files/digest-wesnoth-0.6.99.5 b/games-strategy/wesnoth/files/digest-wesnoth-0.6.99.5 new file mode 100644 index 000000000000..1127a53026ec --- /dev/null +++ b/games-strategy/wesnoth/files/digest-wesnoth-0.6.99.5 @@ -0,0 +1 @@ +MD5 29a86b29469bc04e78521a0a4754daf0 wesnoth-0.6.99.5.tar.gz 17501816 diff --git a/games-strategy/wesnoth/wesnoth-0.6.99.5.ebuild b/games-strategy/wesnoth/wesnoth-0.6.99.5.ebuild new file mode 100644 index 000000000000..7078812c6bb3 --- /dev/null +++ b/games-strategy/wesnoth/wesnoth-0.6.99.5.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-0.6.99.5.ebuild,v 1.1 2004/03/16 05:48:53 mr_bones_ Exp $ + +inherit 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 amd64 ppc" +IUSE="server editor tools" + +DEPEND=">=media-libs/libsdl-1.2 + >=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() { + egamesconf \ + `use_enable server` \ + `use_enable editor` \ + `use_enable tools` \ + || die "egamesconf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc MANUAL changelog || die "dodoc failed" + prepgamesdirs +} |