diff options
author | Tristan Heaven <tristan@gentoo.org> | 2009-07-06 10:32:57 +0000 |
---|---|---|
committer | Tristan Heaven <tristan@gentoo.org> | 2009-07-06 10:32:57 +0000 |
commit | 8fbf7891cf1f93fb3013172cc0f88d8561d59762 (patch) | |
tree | 083b1dc2e3d35967fb2053532faac21499279afd /games-puzzle/world-of-goo-demo | |
parent | Adjust ati-drivers dependency on 9.6. (force due to not-up-to-date complete cvs) (diff) | |
download | historical-8fbf7891cf1f93fb3013172cc0f88d8561d59762.tar.gz historical-8fbf7891cf1f93fb3013172cc0f88d8561d59762.tar.bz2 historical-8fbf7891cf1f93fb3013172cc0f88d8561d59762.zip |
Version bump, bug #275957
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
Diffstat (limited to 'games-puzzle/world-of-goo-demo')
-rw-r--r-- | games-puzzle/world-of-goo-demo/ChangeLog | 8 | ||||
-rw-r--r-- | games-puzzle/world-of-goo-demo/world-of-goo-demo-1.41.ebuild | 57 |
2 files changed, 64 insertions, 1 deletions
diff --git a/games-puzzle/world-of-goo-demo/ChangeLog b/games-puzzle/world-of-goo-demo/ChangeLog index 075c0d33fde3..3b5c51966b02 100644 --- a/games-puzzle/world-of-goo-demo/ChangeLog +++ b/games-puzzle/world-of-goo-demo/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-puzzle/world-of-goo-demo # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/world-of-goo-demo/ChangeLog,v 1.1 2009/02/15 00:00:37 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/world-of-goo-demo/ChangeLog,v 1.2 2009/07/06 10:32:08 nyhm Exp $ + +*world-of-goo-demo-1.41 (06 Jul 2009) + + 06 Jul 2009; Tristan Heaven <nyhm@gentoo.org> + +world-of-goo-demo-1.41.ebuild: + Version bump, bug #275957 *world-of-goo-demo-1.40 (15 Feb 2009) diff --git a/games-puzzle/world-of-goo-demo/world-of-goo-demo-1.41.ebuild b/games-puzzle/world-of-goo-demo/world-of-goo-demo-1.41.ebuild new file mode 100644 index 000000000000..28bba356aa2b --- /dev/null +++ b/games-puzzle/world-of-goo-demo/world-of-goo-demo-1.41.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/world-of-goo-demo/world-of-goo-demo-1.41.ebuild,v 1.1 2009/07/06 10:32:08 nyhm Exp $ + +inherit eutils games + +DESCRIPTION="World of Goo is a puzzle game with a strong emphasis on physics" +HOMEPAGE="http://2dboy.com/" + +if [[ ${PN} == *-demo ]] ; then + MY_PN="WorldOfGooDemo" + SRC_URI="${MY_PN}.${PV}.tar.gz" +else + MY_PN="WorldOfGoo" + SRC_URI="${MY_PN}Setup.${PV}.tar.gz" +fi + +LICENSE="2dboy-EULA" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="fetch strip" + +# the package includes SDL/ogg/vorbis already +RDEPEND="sys-libs/glibc + virtual/opengl + virtual/glu + >=sys-devel/gcc-3.4" +DEPEND="" + +S=${WORKDIR}/${MY_PN} + +QA_EXECSTACK="opt/${MY_PN}/WorldOfGoo.bin32 + opt/${MY_PN}/WorldOfGoo.bin64" + +pkg_nofetch() { + elog "To download the demo, visit http://worldofgoo.com/dl2.php?lk=demo" + elog "and download ${A} and place it in ${DISTDIR}" +} + +src_install() { + local d=${GAMES_PREFIX_OPT}/${MY_PN} + + insinto "${d}" + doins -r */ ${MY_PN%Demo}* || die + + games_make_wrapper ${MY_PN} "${d}"/${MY_PN%Demo} + dodoc readme.html linux-issues.txt + newicon icons/scalable.svg ${MY_PN}.svg + make_desktop_entry ${MY_PN} "World Of Goo (Demo)" ${MY_PN} + + pushd "${D}${d}" >/dev/null + chmod a+rx ${MY_PN%Demo}* libs*/lib* || die + popd >/dev/null + + prepgamesdirs +} |