diff options
author | Julian Ospald <hasufell@gentoo.org> | 2012-10-21 00:09:36 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2012-10-21 00:09:36 +0000 |
commit | 63b512906b7e4dd7d71c258748f7134fa6635f85 (patch) | |
tree | 4c364ae95bf3d5ff546a28dec8f2e3a36c161546 /games-strategy | |
parent | stable arm, bug #429188 (diff) | |
download | gentoo-2-63b512906b7e4dd7d71c258748f7134fa6635f85.tar.gz gentoo-2-63b512906b7e4dd7d71c258748f7134fa6635f85.tar.bz2 gentoo-2-63b512906b7e4dd7d71c258748f7134fa6635f85.zip |
version bump
(Portage version: 2.2.0_alpha140/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/openra/ChangeLog | 7 | ||||
-rw-r--r-- | games-strategy/openra/openra-20121019.ebuild | 86 |
2 files changed, 92 insertions, 1 deletions
diff --git a/games-strategy/openra/ChangeLog b/games-strategy/openra/ChangeLog index 38774fe5f8a3..565cda878fb0 100644 --- a/games-strategy/openra/ChangeLog +++ b/games-strategy/openra/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-strategy/openra # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/openra/ChangeLog,v 1.8 2012/07/29 11:57:32 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/openra/ChangeLog,v 1.9 2012/10/21 00:09:36 hasufell Exp $ + +*openra-20121019 (21 Oct 2012) + + 21 Oct 2012; Julian Ospald <hasufell@gentoo.org> +openra-20121019.ebuild: + version bump 29 Jul 2012; Julian Ospald <hasufell@gentoo.org> openra-20120630.ebuild: minor fix to elog diff --git a/games-strategy/openra/openra-20121019.ebuild b/games-strategy/openra/openra-20121019.ebuild new file mode 100644 index 000000000000..98596cf8e56f --- /dev/null +++ b/games-strategy/openra/openra-20121019.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/openra/openra-20121019.ebuild,v 1.1 2012/10/21 00:09:36 hasufell Exp $ + +EAPI=4 + +inherit eutils mono gnome2-utils vcs-snapshot games + +DESCRIPTION="A free RTS engine supporting games like Command & Conquer and Red Alert" +HOMEPAGE="http://open-ra.org/" +SRC_URI="https://github.com/OpenRA/OpenRA/tarball/release-${PV} -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="cg" + +DEPEND="dev-dotnet/libgdiplus + dev-lang/mono + media-libs/freetype:2[X] + media-libs/libsdl[X,opengl,video] + media-libs/openal + virtual/jpeg + virtual/opengl + cg? ( >=media-gfx/nvidia-cg-toolkit-2.1.0017 )" +RDEPEND="${DEPEND}" + +src_unpack() { + vcs-snapshot_src_unpack +} + +src_prepare() { + # register game-version + sed \ + -e "/Version/s/{DEV_VERSION}/release-${PV}/" \ + -i mods/{ra,cnc,d2k}/mod.yaml || die +} + +src_install() { + emake \ + datadir="${GAMES_DATADIR}" \ + bindir="${GAMES_BINDIR}" \ + libdir="$(games_get_libdir)/${PN}" \ + DESTDIR="${D}" \ + install + + # icons + insinto /usr/share/icons/ + doins -r packaging/linux/hicolor + + # desktop entries + local myrenderer=$(usex cg Cg Gl) + make_desktop_entry "${PN} Game.Mods=cnc Graphics.Renderer=${myrenderer}" \ + "OpenRA CNC" ${PN} + make_desktop_entry "${PN} Game.Mods=ra Graphics.Renderer=${myrenderer}" \ + "OpenRA RA" ${PN} + make_desktop_entry "${PN} Game.Mods=d2k Graphics.Renderer=${myrenderer}" \ + "OpenRA Dune2k" ${PN} + make_desktop_entry "${PN}-editor" "OpenRA Map Editor" ${PN} + + dodoc "${FILESDIR}"/README.gentoo README HACKING CHANGELOG + + # file permissions + prepgamesdirs +} + +pkg_preinst() { + games_pkg_preinst + gnome2_icon_savelist +} + +pkg_postinst() { + games_pkg_postinst + gnome2_icon_cache_update + + if ! use cg ; then + elog "If you have problems starting the game consider switching" + elog "to Graphics.Renderer=Cg in openra*.desktop or manually" + elog "run:" + elog "${PN} Game.Mods=\$mod Graphics.Renderer=Cg" + fi +} + +pkg_postrm() { + gnome2_icon_cache_update +} |