diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-07-29 22:07:03 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-07-29 22:07:03 +0000 |
commit | b46e326df56f5231f2635123a465f34e9b812f15 (patch) | |
tree | 40f38aa71cc92e9b1ad87384a725170f50c91181 /games-action | |
parent | Improve multilib support: alsa and sqlite are actually only needed for instal... (diff) | |
download | gentoo-2-b46e326df56f5231f2635123a465f34e9b812f15.tar.gz gentoo-2-b46e326df56f5231f2635123a465f34e9b812f15.tar.bz2 gentoo-2-b46e326df56f5231f2635123a465f34e9b812f15.zip |
version bump wrt #475426
(Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/cs2d/ChangeLog | 9 | ||||
-rw-r--r-- | games-action/cs2d/cs2d-0122.ebuild | 68 |
2 files changed, 75 insertions, 2 deletions
diff --git a/games-action/cs2d/ChangeLog b/games-action/cs2d/ChangeLog index 102ea674b259..de5f9a2e3f93 100644 --- a/games-action/cs2d/ChangeLog +++ b/games-action/cs2d/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-action/cs2d -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/cs2d/ChangeLog,v 1.5 2012/09/07 15:14:46 maksbotan Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/cs2d/ChangeLog,v 1.6 2013/07/29 22:07:03 hasufell Exp $ + +*cs2d-0122 (29 Jul 2013) + + 29 Jul 2013; Julian Ospald <hasufell@gentoo.org> +cs2d-0122.ebuild: + version bump wrt #475426 *cs2d-0121 (07 Sep 2012) diff --git a/games-action/cs2d/cs2d-0122.ebuild b/games-action/cs2d/cs2d-0122.ebuild new file mode 100644 index 000000000000..7ddc5c54175d --- /dev/null +++ b/games-action/cs2d/cs2d-0122.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/cs2d/cs2d-0122.ebuild,v 1.1 2013/07/29 22:07:03 hasufell Exp $ + +EAPI=5 + +inherit eutils games + +DESCRIPTION="Counter-Strike 2D is freeware clone of Counter-Strike with some added features in gameplay." +HOMEPAGE="http://www.cs2d.com/" +SRC_URI="http://dev.gentoo.org/~maksbotan/cs2d/cs2d_${PV}_linux.zip + http://dev.gentoo.org/~maksbotan/cs2d/cs2d_${PV}_win.zip + http://dev.gentoo.org/~maksbotan/cs2d/cs2d.png" +LICENSE="freedist" + +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND=" + x86? ( + media-libs/openal + media-libs/freetype:2 + x11-libs/libX11 + x11-libs/libXxf86vm + virtual/opengl + ) + amd64? ( + app-emulation/emul-linux-x86-sdl + app-emulation/emul-linux-x86-opengl + app-emulation/emul-linux-x86-xlibs + )" + +QA_PRESTRIPPED="opt/cs2d/CounterStrike2D" +QA_EXECSTACK="opt/cs2d/CounterStrike2D" + +S=${WORKDIR} + +src_prepare() { + # removing windows files + rm -f *.exe *.bat + + # OpenAL is default sound driver + sed -i -e 's:^sounddriver.*$:sounddriver OpenAL Default:' sys/config.cfg || die +} + +src_install() { + insinto "${GAMES_PREFIX_OPT}"/${PN} + doins -r . + # avoid file collision with untracked file + rm -f "${ED%/}/${GAMES_PREFIX_OPT}"/${PN}/sys/core/started.cfg + + make_desktop_entry CounterStrike2D "Counter Strike 2D" + make_desktop_entry "CounterStrike2D -fullscreen -24bit" "Counter Strike 2D - FULLSCREEN" + games_make_wrapper CounterStrike2D ./CounterStrike2D \ + "${GAMES_PREFIX_OPT}"/${PN} "${GAMES_PREFIX_OPT}"/${PN} + + doicon "${DISTDIR}"/${PN}.png + + prepgamesdirs + + # fixing permissions + fperms -R g+w "${GAMES_PREFIX_OPT}"/${PN}/maps + fperms -R g+w "${GAMES_PREFIX_OPT}"/${PN}/screens + fperms -R g+w "${GAMES_PREFIX_OPT}"/${PN}/sys + fperms ug+x "${GAMES_PREFIX_OPT}"/${PN}/CounterStrike2D +} |