diff options
author | Laurento Frittella (mrfree) <laurento.frittella@gmail.com> | 2010-05-11 16:59:27 +0000 |
---|---|---|
committer | Laurento Frittella (mrfree) <laurento.frittella@gmail.com> | 2010-05-11 16:59:27 +0000 |
commit | d5346decffaebf5461357559a8e11f8f60cd9a1d (patch) | |
tree | 114b3c3a87c0404b41f8849ff36f13ab5cdcd104 | |
parent | dev-db/pgbouncer: Version bump (diff) | |
download | sunrise-reviewed-d5346decffaebf5461357559a8e11f8f60cd9a1d.tar.gz sunrise-reviewed-d5346decffaebf5461357559a8e11f8f60cd9a1d.tar.bz2 sunrise-reviewed-d5346decffaebf5461357559a8e11f8f60cd9a1d.zip |
games-fps/postal2mp: New Ebuild for bug 319125 thanks to Tommy[D]
svn path=/sunrise/; revision=10544
-rw-r--r-- | games-fps/postal2mp/ChangeLog | 8 | ||||
-rw-r--r-- | games-fps/postal2mp/Manifest | 4 | ||||
-rw-r--r-- | games-fps/postal2mp/metadata.xml | 6 | ||||
-rw-r--r-- | games-fps/postal2mp/postal2mp-1409.ebuild | 43 |
4 files changed, 61 insertions, 0 deletions
diff --git a/games-fps/postal2mp/ChangeLog b/games-fps/postal2mp/ChangeLog new file mode 100644 index 000000000..e351a76cf --- /dev/null +++ b/games-fps/postal2mp/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for games-fps/postal2mp +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 11 May 2010; Laurento Frittella (mrfree) <laurento.frittella@gmail.com> + +postal2mp-1409.ebuild, +metadata.xml: + New Ebuild for bug 319125 thanks to Tommy[D] + diff --git a/games-fps/postal2mp/Manifest b/games-fps/postal2mp/Manifest new file mode 100644 index 000000000..6abde5d06 --- /dev/null +++ b/games-fps/postal2mp/Manifest @@ -0,0 +1,4 @@ +DIST postal2mp-1409.tar.bz2 591082047 RMD160 3b4101f12246db3d42c8f7ef8f3d12abbcea0116 SHA1 24db3f23c3ffdb3e9f558ffe4ae5682aa5dc9361 SHA256 9869c6ffc220e58cb51eb04c5dbbc480d5025cfd33b83bf4f3eb8ac340d6c1e2 +EBUILD postal2mp-1409.ebuild 1148 RMD160 2eb42ea15410f0b64f22bf11b478860b58744e71 SHA1 41be2ee840e9da04b790938012f0b2053c633846 SHA256 462df5ced07b805f0bbd5fb25dd8087c0c45a7c8e523d9b11c3efc9a7b88a29d +MISC ChangeLog 283 RMD160 42f3909a73d7621535d7ae9c4aeb62973ed3f986 SHA1 781a368e4ad891167179b1730664df6d397e2c23 SHA256 fd9423fbffdb3055c9836076978df71d6ac77deccd8d11adb24640db1f053b18 +MISC metadata.xml 229 RMD160 f0f6417bec31ce8baba6d476664f7210c8c84c98 SHA1 e5f94f5caadc6f843fc90bb7959570cd503676fd SHA256 3b08fca3c878bdfc4e7639f477dd542d55a4ab5dce39a475e82633071d13eb3f diff --git a/games-fps/postal2mp/metadata.xml b/games-fps/postal2mp/metadata.xml new file mode 100644 index 000000000..e6233b5dc --- /dev/null +++ b/games-fps/postal2mp/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer><email>maintainer-wanted@gentoo.org</email></maintainer> +</pkgmetadata> diff --git a/games-fps/postal2mp/postal2mp-1409.ebuild b/games-fps/postal2mp/postal2mp-1409.ebuild new file mode 100644 index 000000000..a7def7c8c --- /dev/null +++ b/games-fps/postal2mp/postal2mp-1409.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=2 +inherit eutils games + +DESCRIPTION="Postal 2: Share the Pain - Free Multiplayer Edition" +HOMEPAGE="http://icculus.org/news/news.php?id=4419" +SRC_URI="http://0day.icculus.org/postal2/Postal2STP-FreeMP-linux.tar.bz2 -> ${P}.tar.bz2" + +LICENSE="postal2stp-freemp" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +RESTRICT="strip" +PROPERTIES="interactive" + +RDEPEND="virtual/opengl + media-libs/libsdl[X,opengl] + media-libs/openal" + +GAMES_CHECK_LICENSE="yes" + +S=${WORKDIR}/Postal2STP-FreeMP-linux + +src_install() { + dir=${GAMES_PREFIX_OPT}/${PN} + + insinto "${dir}" + doins -r Animations KarmaData Maps Music Sounds \ + StaticMeshes System Textures Web || die "doins failed" + dosym /usr/lib/libopenal.so "${dir}"/System/openal.so || die + dosym /usr/lib/libSDL-1.2.so.0 "${dir}"/System/libSDL-1.2.so.0 || die + + fperms +x "${dir}"/System/postal2-bin || die "fperms failed" + + games_make_wrapper ${PN} ./postal2-bin "${dir}"/System . + newicon postal2.xpm ${PN}.xpm || die + make_desktop_entry ${PN} "Postal 2 (Free MultiPlayer Ed.)" + + prepgamesdirs +} |