diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-07-15 05:19:57 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-07-15 05:19:57 +0000 |
commit | 8fa496d75f57ff475e3d8c4889f5a499ce84eb56 (patch) | |
tree | 9e8ff145b7475f27ccc18682d568f5cf3ec53133 /games-engines | |
parent | update copyright (diff) | |
download | gentoo-2-8fa496d75f57ff475e3d8c4889f5a499ce84eb56.tar.gz gentoo-2-8fa496d75f57ff475e3d8c4889f5a499ce84eb56.tar.bz2 gentoo-2-8fa496d75f57ff475e3d8c4889f5a499ce84eb56.zip |
version bump
(Portage version: 2.1.1_pre2-r8)
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/scummvm-tools/ChangeLog | 8 | ||||
-rw-r--r-- | games-engines/scummvm-tools/files/digest-scummvm-tools-0.9.0 | 3 | ||||
-rw-r--r-- | games-engines/scummvm-tools/scummvm-tools-0.9.0.ebuild | 39 |
3 files changed, 49 insertions, 1 deletions
diff --git a/games-engines/scummvm-tools/ChangeLog b/games-engines/scummvm-tools/ChangeLog index 22a0101154ea..dd3d0fad9756 100644 --- a/games-engines/scummvm-tools/ChangeLog +++ b/games-engines/scummvm-tools/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-engines/scummvm-tools # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.8 2006/05/04 06:45:41 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.9 2006/07/15 05:19:57 mr_bones_ Exp $ + +*scummvm-tools-0.9.0 (15 Jul 2006) + + 15 Jul 2006; Michael Sterrett <mr_bones_@gentoo.org> + +scummvm-tools-0.9.0.ebuild: + version bump 04 May 2006; Joseph Jezak <josejx@gentoo.org> scummvm-tools-0.8.0.ebuild: Added ppc big endian fix for bug #132207. diff --git a/games-engines/scummvm-tools/files/digest-scummvm-tools-0.9.0 b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.9.0 new file mode 100644 index 000000000000..11576aabfd23 --- /dev/null +++ b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.9.0 @@ -0,0 +1,3 @@ +MD5 c8164fa1cca90b1c3bff1c8949d875a3 scummvm-tools-0.9.0.tar.bz2 116414 +RMD160 eb9f8cc348150ed9b7d952e99121f152fee5f06d scummvm-tools-0.9.0.tar.bz2 116414 +SHA256 0ade56651dba804007e848e0ba57931c780dd59c53c68458a58772e1e6f131b5 scummvm-tools-0.9.0.tar.bz2 116414 diff --git a/games-engines/scummvm-tools/scummvm-tools-0.9.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-0.9.0.ebuild new file mode 100644 index 000000000000..a93bd80761fd --- /dev/null +++ b/games-engines/scummvm-tools/scummvm-tools-0.9.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-0.9.0.ebuild,v 1.1 2006/07/15 05:19:57 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="utilities for the SCUMM game engine" +HOMEPAGE="http://scummvm.sourceforge.net/" +SRC_URI="mirror://sourceforge/scummvm/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="" + +DEPEND="media-libs/libpng" + +S=${WORKDIR}/tools-${PV} + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e '/^CC/d' \ + -e '/^CXX/d' \ + -e '/^CFLAGS/d' \ + -e '/CXX.*CFLAGS/s/CFLAGS/CXXFLAGS/' \ + Makefile \ + || die "sed failed" +} + +src_install() { + local f + for f in $(find -type f -perm +1 -printf '%f ') ; do + newgamesbin $f ${PN}-$f || die "newgamesbin $f failed" + done + dodoc README + prepgamesdirs +} |