diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-01-03 23:36:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-01-03 23:36:44 +0000 |
commit | 172bb0b4fbe07d57522e78780b280c50c9ee5532 (patch) | |
tree | 1cf4567a6009897fd802c36307ef2bd8a52086d6 /games-strategy | |
parent | new version (diff) | |
download | historical-172bb0b4fbe07d57522e78780b280c50c9ee5532.tar.gz historical-172bb0b4fbe07d57522e78780b280c50c9ee5532.tar.bz2 historical-172bb0b4fbe07d57522e78780b280c50c9ee5532.zip |
ver bump #35909 #36148
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/wesnoth/ChangeLog | 12 | ||||
-rw-r--r-- | games-strategy/wesnoth/files/digest-wesnoth-0.6.1 | 1 | ||||
-rw-r--r-- | games-strategy/wesnoth/wesnoth-0.6.1.ebuild | 36 |
3 files changed, 46 insertions, 3 deletions
diff --git a/games-strategy/wesnoth/ChangeLog b/games-strategy/wesnoth/ChangeLog index 75e615eab9f2..ee42bab4bdc5 100644 --- a/games-strategy/wesnoth/ChangeLog +++ b/games-strategy/wesnoth/ChangeLog @@ -1,12 +1,18 @@ # ChangeLog for games-strategy/wesnoth # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.5 2003/11/29 22:10:43 brad_mssw Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.6 2004/01/03 23:36:44 vapier Exp $ - 29 Nov 2003; Brad House <brad_mssw@gentoo.org> wesnoth-0.5.1.ebuild: - mark stable on amd64 +*wesnoth-0.6.1 (03 Jan 2004) + + 03 Jan 2004; Mike Frysinger <vapier@gentoo.org> : + Version bump #36148 #35909. Thanks to Russell Valentine <russ_allegro@yahoo.com> + and Arndt Faulhaber <arndt.faulhaber@diagnosdata.com>. *wesnoth-0.5.1 (10 Nov 2003) + 29 Nov 2003; Brad House <brad_mssw@gentoo.org> wesnoth-0.5.1.ebuild: + mark stable on amd64 + 10 Nov 2003; Michael Sterrett <mr_bones_@gentoo.org> wesnoth-0.5.1.ebuild: version bump diff --git a/games-strategy/wesnoth/files/digest-wesnoth-0.6.1 b/games-strategy/wesnoth/files/digest-wesnoth-0.6.1 new file mode 100644 index 000000000000..9a9d65a1abd1 --- /dev/null +++ b/games-strategy/wesnoth/files/digest-wesnoth-0.6.1 @@ -0,0 +1 @@ +MD5 716f3507d044318b63c907134356708c wesnoth-0.6.1.tar.gz 11616064 diff --git a/games-strategy/wesnoth/wesnoth-0.6.1.ebuild b/games-strategy/wesnoth/wesnoth-0.6.1.ebuild new file mode 100644 index 000000000000..42473fd00bcc --- /dev/null +++ b/games-strategy/wesnoth/wesnoth-0.6.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2003 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.1.ebuild,v 1.1 2004/01/03 23:36:44 vapier 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" +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 + prepgamesdirs +} |