diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-10-30 18:12:44 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-10-30 18:12:44 +0000 |
commit | df0376c4f6c9b0a4d0fb2d63c511c4b92890d069 (patch) | |
tree | ead5925856d4f1549ac44ff0fd616146c444b7cf /games-fps | |
parent | Added missing libtool inherit (for elibtoolize requested by FreeBSD). (diff) | |
download | gentoo-2-df0376c4f6c9b0a4d0fb2d63c511c4b92890d069.tar.gz gentoo-2-df0376c4f6c9b0a4d0fb2d63c511c4b92890d069.tar.bz2 gentoo-2-df0376c4f6c9b0a4d0fb2d63c511c4b92890d069.zip |
Version bumped and closing bug #93255.
(Portage version: 2.0.53_rc6)
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/americas-army/ChangeLog | 8 | ||||
-rw-r--r-- | games-fps/americas-army/americas-army-250.ebuild | 91 | ||||
-rw-r--r-- | games-fps/americas-army/files/digest-americas-army-250 | 2 |
3 files changed, 100 insertions, 1 deletions
diff --git a/games-fps/americas-army/ChangeLog b/games-fps/americas-army/ChangeLog index e35d7d3d07d7..deb84e54b56e 100644 --- a/games-fps/americas-army/ChangeLog +++ b/games-fps/americas-army/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-fps/americas-army # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/americas-army/ChangeLog,v 1.36 2005/10/23 21:14:53 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/americas-army/ChangeLog,v 1.37 2005/10/30 18:12:44 wolf31o2 Exp $ + +*americas-army-250 (30 Oct 2005) + + 30 Oct 2005; Chris Gianelloni <wolf31o2@gentoo.org> + +americas-army-250.ebuild: + Version bumped and closing bug #93255. 23 Oct 2005; Chris Gianelloni <wolf31o2@gentoo.org> americas-army-230.ebuild: diff --git a/games-fps/americas-army/americas-army-250.ebuild b/games-fps/americas-army/americas-army-250.ebuild new file mode 100644 index 000000000000..f0fa8bd3ec4a --- /dev/null +++ b/games-fps/americas-army/americas-army-250.ebuild @@ -0,0 +1,91 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/americas-army/americas-army-250.ebuild,v 1.1 2005/10/30 18:12:44 wolf31o2 Exp $ + +inherit eutils games + +MY_P="armyops${PV}-linux.run" +DESCRIPTION="America's Army: Special Forces - military simulations by the U.S. Army to provide civilians with insights on soldiering" +HOMEPAGE="http://www.americasarmy.com/" +SRC_URI="http://treefort.icculus.org/armyops/${MY_P} + http://0day.icculus.org/armyops/${MY_P} + mirror://3dgamers/${PN/-/}/${MY_P} + dedicated? ( + http://dev.gentoo.org/~wolf31o2/sources/dump/${PN}-all-0.1.tar.bz2 + mirror://gentoo/${PN}-all-0.1.tar.bz2 )" + +LICENSE="Army-EULA" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="nostrip nomirror" + +IUSE="opengl dedicated" + +DEPEND="virtual/libc + app-arch/unzip" +RDEPEND="virtual/libc + opengl? ( virtual/opengl ) + amd64? ( app-emulation/emul-linux-x86-xlibs + app-emulation/emul-linux-x86-compat + || ( >=media-video/nvidia-glx-1.0.6629-r3 + >=media-video/ati-drivers-8.8.25-r1 ) ) + dedicated? ( app-misc/screen )" + +S=${WORKDIR} +dir=${GAMES_PREFIX_OPT}/${PN} +Ddir=${D}/${dir} + +pkg_setup() { + games_pkg_setup + ewarn "The installed game takes about 1.6GB of space when installed and 2.4GB of space in ${PORTAGE_TMPDIR} to build!" +} + +src_unpack() { + unpack_makeself ${DISTDIR}/${MY_P} || die "unpacking game" + tar -zxf setupstuff.tar.gz || die + if use dedicated; then + unpack ${PN}-all-0.1.tar.bz2 || die + fi +} + +src_install() { + einfo "This will take a while ... go get a pizza or something" + + dodir ${dir} + + tar -jxf armyops${PV}.tar.bz2 -C ${Ddir}/ || die "armyops untar failed" + tar -jxf binaries.tar.bz2 -C ${Ddir}/ || die "binaries untar failed" + + dodoc README.linux + insinto ${dir} + doins ArmyOps.xpm README.linux ArmyOps${PV}_EULA.txt || die "doins failed" + newicon ArmyOps.xpm armyops.xpm || die "doins failed" + exeinto ${dir} + doexe bin/armyops || die "doexe failed" + fperms ug+x ${dir}/System/bp/pbweb.x86 + + if use dedicated; then + newinitd ${S}/armyops-ded.rc armyops-ded + newconfd ${S}/armyops-ded.conf. armyops-ded + games_make_wrapper armyops-ded ./server-bin ${dir}/System + fi + + games_make_wrapper armyops ./armyops "${dir}" "${dir}" + + prepgamesdirs + make_desktop_entry armyops "America's Army" armyops.xpm +} + +pkg_postinst() { + games_pkg_postinst + if use dedicated; then + einfo "To start a dedicated server, run" + einfo " /etc/init.d/armyops-ded start" + echo + fi + if use opengl; then + einfo "To play the game run:" + einfo " armyops" + echo + fi +} diff --git a/games-fps/americas-army/files/digest-americas-army-250 b/games-fps/americas-army/files/digest-americas-army-250 new file mode 100644 index 000000000000..eae30fad492b --- /dev/null +++ b/games-fps/americas-army/files/digest-americas-army-250 @@ -0,0 +1,2 @@ +MD5 e60202fcd14a192d64d2522e205afdb4 americas-army-all-0.1.tar.bz2 680 +MD5 f0ebbc449aeb6be5fcdf68885d79d57a armyops250-linux.run 813453963 |