diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2014-07-07 20:19:50 +0000 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2014-07-07 20:19:50 +0000 |
commit | 44506cee3338c34e1f769c8927323bd4e618aea6 (patch) | |
tree | 7746983c7c25dbdf5de54a4876f1d6e3a6258403 /games-fps | |
parent | Add fixes for libreoffice, bug 514968. (diff) | |
download | gentoo-2-44506cee3338c34e1f769c8927323bd4e618aea6.tar.gz gentoo-2-44506cee3338c34e1f769c8927323bd4e618aea6.tar.bz2 gentoo-2-44506cee3338c34e1f769c8927323bd4e618aea6.zip |
Bumped EAPI to 5, adjusted deps for gx86-multilib; could not test due to not having the CD, so assumed that deps were previously accurate
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/postal2/ChangeLog | 12 | ||||
-rw-r--r-- | games-fps/postal2/postal2-1409.2-r2.ebuild | 77 |
2 files changed, 86 insertions, 3 deletions
diff --git a/games-fps/postal2/ChangeLog b/games-fps/postal2/ChangeLog index 9cd677d48380..bd5f3c5b5d99 100644 --- a/games-fps/postal2/ChangeLog +++ b/games-fps/postal2/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for games-fps/postal2 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/postal2/ChangeLog,v 1.12 2012/02/05 06:04:07 vapier Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/postal2/ChangeLog,v 1.13 2014/07/07 20:19:50 axs Exp $ + +*postal2-1409.2-r2 (07 Jul 2014) + + 07 Jul 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> + +postal2-1409.2-r2.ebuild: + Bumped EAPI to 5, adjusted deps for gx86-multilib; could not test due to not + having the CD, so assumed that deps were previously accurate 05 Feb 2012; Mike Frysinger <vapier@gentoo.org> postal2-1409.2-r1.ebuild: Move to new unpacker eclass for unpack_makeself. @@ -45,4 +52,3 @@ +postal2-1409.2.ebuild: Initial commit. Modified ebuild from bug #97533 by Kjartan Kvamme, Alexander Nicolaysen Sørnes and Paul Bredbury. - diff --git a/games-fps/postal2/postal2-1409.2-r2.ebuild b/games-fps/postal2/postal2-1409.2-r2.ebuild new file mode 100644 index 000000000000..0246321379d4 --- /dev/null +++ b/games-fps/postal2/postal2-1409.2-r2.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/postal2/postal2-1409.2-r2.ebuild,v 1.1 2014/07/07 20:19:50 axs Exp $ + +EAPI=5 +inherit eutils unpacker cdrom multilib games + +DESCRIPTION="Postal 2: Share the Pain" +HOMEPAGE="http://www.linuxgamepublishing.com/info.php?id=postal2" +SRC_URI="http://updatefiles.linuxgamepublishing.com/${PN}/${P/%?/1}.run + http://updatefiles.linuxgamepublishing.com/${PN}/${P}.run" + +LICENSE="postal2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="strip" + +DEPEND="games-util/loki_patch" +RDEPEND="sys-libs/glibc + sys-libs/libstdc++-v3:5 + amd64? ( sys-libs/glibc[multilib] sys-libs/libstdc++-v3:5[multilib] ) + || ( + ( + virtual/opengl[abi_x86_32(-)] + media-libs/libsdl[X,opengl,abi_x86_32(-)] + media-libs/openal[abi_x86_32(-)] + ) + ( + app-emulation/emul-linux-x86-sdl[-abi_x86_32(-)] + app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] + ) + )" + +S=${WORKDIR} + +src_unpack() { + cdrom_get_cds .installation_data/linux-specific.tar.bz2 + mkdir ${A} + + local f + for f in * ; do + cd "${S}"/${f} + unpack_makeself ${f} + done +} + +src_install() { + has_multilib_profile && ABI=x86 + + local dir=${GAMES_PREFIX_OPT}/${PN} + + dodir "${dir}" + cd "${D}/${dir}" + + ln -s "${CDROM_ROOT}"/.installation_data/*.bz2 . + unpack ./*.bz2 + rm -f ./*.bz2 + + local d + for d in "${S}"/* ; do + pushd "${d}" > /dev/null + loki_patch patch.dat "${D}/${dir}" || die "loki_patch ${d} failed" + popd > /dev/null + done + + rm -f System/{libstdc++.so.5,libgcc_s.so.1} + + dosym /usr/$(get_libdir)/libopenal.so "${dir}"/System/openal.so + dosym /usr/$(get_libdir)/libSDL-1.2.so.0 "${dir}"/System/libSDL-1.2.so.0 + + games_make_wrapper ${PN} ./${PN}-bin "${dir}"/System . + doicon "${CDROM_ROOT}"/.installation_data/${PN}.xpm + make_desktop_entry ${PN} "Postal 2: Share the Pain" + + prepgamesdirs +} |