diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-15 10:41:48 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-15 10:41:48 +0000 |
commit | 6808b405e1922bb7c2ae20982620209d20b7b878 (patch) | |
tree | 294e7f50c4333f0f6b9f5f737dbaf9b0a6ad09f2 /games-strategy | |
parent | Initial import. Ebuild by Enrico Morelli <morelli@cerm.unifi.it> #52956. (Man... (diff) | |
download | gentoo-2-6808b405e1922bb7c2ae20982620209d20b7b878.tar.gz gentoo-2-6808b405e1922bb7c2ae20982620209d20b7b878.tar.bz2 gentoo-2-6808b405e1922bb7c2ae20982620209d20b7b878.zip |
version bump
Diffstat (limited to 'games-strategy')
-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.2 | 1 | ||||
-rw-r--r-- | games-strategy/wesnoth/wesnoth-0.8.2.ebuild | 41 |
4 files changed, 50 insertions, 1 deletions
diff --git a/games-strategy/wesnoth/ChangeLog b/games-strategy/wesnoth/ChangeLog index 26e99608963e..4a8715f9acd9 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.33 2004/08/04 06:49:15 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.34 2004/08/15 10:41:48 mr_bones_ Exp $ + +*wesnoth-0.8.2 (15 Aug 2004) + + 15 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> +wesnoth-0.8.2.ebuild: + version bump *wesnoth-0.8.1 (03 Aug 2004) diff --git a/games-strategy/wesnoth/Manifest b/games-strategy/wesnoth/Manifest index b0592033dda5..720fa28ef397 100644 --- a/games-strategy/wesnoth/Manifest +++ b/games-strategy/wesnoth/Manifest @@ -2,9 +2,11 @@ MD5 70af11249b648c110696363fb2ac241b wesnoth-0.8.ebuild 1115 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 d21a3678f3c9eda222c33599d1100a8d ChangeLog 4509 MD5 a20d489d39fdf52c8303f30ee2284b84 wesnoth-0.8.1.ebuild 1117 +MD5 a20d489d39fdf52c8303f30ee2284b84 wesnoth-0.8.2.ebuild 1117 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 b97ec5f679625aad3505bc806419bdf7 files/digest-wesnoth-0.8.2 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.2 b/games-strategy/wesnoth/files/digest-wesnoth-0.8.2 new file mode 100644 index 000000000000..7b6085939c18 --- /dev/null +++ b/games-strategy/wesnoth/files/digest-wesnoth-0.8.2 @@ -0,0 +1 @@ +MD5 fb0899414d51ce3340a125e6d582d844 wesnoth-0.8.2.tar.gz 24770172 diff --git a/games-strategy/wesnoth/wesnoth-0.8.2.ebuild b/games-strategy/wesnoth/wesnoth-0.8.2.ebuild new file mode 100644 index 000000000000..056651a55436 --- /dev/null +++ b/games-strategy/wesnoth/wesnoth-0.8.2.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.2.ebuild,v 1.1 2004/08/15 10:41:48 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 +} |