diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-12-28 22:46:59 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-12-28 22:46:59 +0000 |
commit | 51a996c1e096870d6e71a587bad73fe5670a9256 (patch) | |
tree | 555b575add13cfa34b2d5b290d49b2cf27930cf0 /games-rpg | |
parent | fixing license (diff) | |
download | gentoo-2-51a996c1e096870d6e71a587bad73fe5670a9256.tar.gz gentoo-2-51a996c1e096870d6e71a587bad73fe5670a9256.tar.bz2 gentoo-2-51a996c1e096870d6e71a587bad73fe5670a9256.zip |
version bump
(Portage version: 2.1.1-r2)
Diffstat (limited to 'games-rpg')
-rw-r--r-- | games-rpg/tmw/ChangeLog | 7 | ||||
-rw-r--r-- | games-rpg/tmw/files/digest-tmw-0.0.22 | 6 | ||||
-rw-r--r-- | games-rpg/tmw/tmw-0.0.22.ebuild | 53 |
3 files changed, 65 insertions, 1 deletions
diff --git a/games-rpg/tmw/ChangeLog b/games-rpg/tmw/ChangeLog index fba06ffda899..ae7e279e8f18 100644 --- a/games-rpg/tmw/ChangeLog +++ b/games-rpg/tmw/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-rpg/tmw # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/tmw/ChangeLog,v 1.19 2006/09/19 16:43:31 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-rpg/tmw/ChangeLog,v 1.20 2006/12/28 22:46:59 mr_bones_ Exp $ + +*tmw-0.0.22 (28 Dec 2006) + + 28 Dec 2006; Michael Sterrett <mr_bones_@gentoo.org> +tmw-0.0.22.ebuild: + version bump *tmw-0.0.21 (19 Sep 2006) diff --git a/games-rpg/tmw/files/digest-tmw-0.0.22 b/games-rpg/tmw/files/digest-tmw-0.0.22 new file mode 100644 index 000000000000..cec85161aa7e --- /dev/null +++ b/games-rpg/tmw/files/digest-tmw-0.0.22 @@ -0,0 +1,6 @@ +MD5 f2028ac0aa4ebd325ddef119ba7f1051 tmw-0.0.22.tar.gz 3571205 +RMD160 e6f583491a5f15458ac03b95367da10a342f33fa tmw-0.0.22.tar.gz 3571205 +SHA256 3af8ce85f11f192077143b82c3e5f71bfe34834b18033637746cfed08c89cb7b tmw-0.0.22.tar.gz 3571205 +MD5 54ccc5d114eeb70d2bcb866e1e686c25 tmw-Magick-Real.ogg 840811 +RMD160 d293aff31cc3f2b57bbb9a91c7b444c4fda5c375 tmw-Magick-Real.ogg 840811 +SHA256 9cd8ffc59689fadb35884309cab14cc1c23ed1061fadec26b875688d2bbff13b tmw-Magick-Real.ogg 840811 diff --git a/games-rpg/tmw/tmw-0.0.22.ebuild b/games-rpg/tmw/tmw-0.0.22.ebuild new file mode 100644 index 000000000000..a18d7cc24524 --- /dev/null +++ b/games-rpg/tmw/tmw-0.0.22.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/tmw/tmw-0.0.22.ebuild,v 1.1 2006/12/28 22:46:59 mr_bones_ Exp $ + +inherit eutils games + +DESCRIPTION="A fully free and open source MMORPG game with the looks of \"old-fashioned\" 2D RPG" +HOMEPAGE="http://themanaworld.org/" +SRC_URI="mirror://sourceforge/themanaworld/${P}.tar.gz + mirror://gentoo/tmw-Magick-Real.ogg" +# http://riekale.com/~rotonen/tmw/data/music/Magick%20-%20Real.ogg" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="opengl" + +DEPEND=">=dev-games/physfs-1.0.0 + opengl? ( virtual/opengl ) + dev-libs/libxml2 + media-libs/sdl-mixer + media-libs/sdl-image + media-libs/sdl-net + net-misc/curl + >=dev-games/guichan-0.5.0" + +pkg_setup() { + games_pkg_setup + if ! built_with_use dev-games/guichan sdl ; then + eerror "dev-games/guichan needs to be built with USE=sdl" + die "please re-emerge guichan with USE=sdl" + fi +} + +src_unpack() { + unpack ${P}.tar.gz + cp "${DISTDIR}"/tmw-Magick-Real.ogg . || die + cd "${S}" + epatch "${FILESDIR}"/${PN}-0.0.12-desktop.patch +} + +src_compile() { + egamesconf $(use_with opengl) || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die "install failed" + insinto "${GAMES_DATADIR}"/${PN}/data/music + newins "${WORKDIR}"/tmw-Magick-Real.ogg "Magick - Real.ogg" || die + dodoc AUTHORS ChangeLog NEWS README + prepgamesdirs +} |