diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-03 11:35:11 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-03 11:35:11 +0000 |
commit | 8d4c577781d4d7b31c3d66f3b075c1abd9e1e9e8 (patch) | |
tree | 769c58424d3b04febd5a882f4cb6383c12742cdd /games-fps/ut2003 | |
parent | Initial import. Fixes #46267 (Manifest recommit) (diff) | |
download | gentoo-2-8d4c577781d4d7b31c3d66f3b075c1abd9e1e9e8.tar.gz gentoo-2-8d4c577781d4d7b31c3d66f3b075c1abd9e1e9e8.tar.bz2 gentoo-2-8d4c577781d4d7b31c3d66f3b075c1abd9e1e9e8.zip |
Ddir into src_install; fix dir -> die typo; skip unnecessary dodir
Diffstat (limited to 'games-fps/ut2003')
-rw-r--r-- | games-fps/ut2003/ChangeLog | 5 | ||||
-rw-r--r-- | games-fps/ut2003/ut2003-2225-r2.ebuild | 14 |
2 files changed, 11 insertions, 8 deletions
diff --git a/games-fps/ut2003/ChangeLog b/games-fps/ut2003/ChangeLog index 38d55cc56079..4c3c8d0c26a0 100644 --- a/games-fps/ut2003/ChangeLog +++ b/games-fps/ut2003/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-fps/ut2003 # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2003/ChangeLog,v 1.19 2004/04/02 03:26:52 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2003/ChangeLog,v 1.20 2004/06/03 11:35:11 mr_bones_ Exp $ + + 03 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> ut2003-2225-r2.ebuild: + Ddir into src_install; fix dir -> die typo; skip unnecessary dodir 01 Apr 2004; Chris Gianelloni <wolf31o2@gentoo.org> ut2003-2225-r2.ebuild: Adding some ewarn info at the bottom to inform users of potential security diff --git a/games-fps/ut2003/ut2003-2225-r2.ebuild b/games-fps/ut2003/ut2003-2225-r2.ebuild index 265427030484..3454e178fa2d 100644 --- a/games-fps/ut2003/ut2003-2225-r2.ebuild +++ b/games-fps/ut2003/ut2003-2225-r2.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2003/ut2003-2225-r2.ebuild,v 1.2 2004/04/02 03:26:52 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2003/ut2003-2225-r2.ebuild,v 1.3 2004/06/03 11:35:11 mr_bones_ Exp $ inherit games -IUSE="dedicated" DESCRIPTION="Unreal Tournament 2003 - Sequel to the 1999 Game of the Year multi-player first-person shooter" HOMEPAGE="http://www.unrealtournament2003.com/" SRC_URI="http://unreal.epicgames.com/linux/ut2003/${PN}lnx_2107to${PV}.sh.bin @@ -14,6 +13,7 @@ SRC_URI="http://unreal.epicgames.com/linux/ut2003/${PN}lnx_2107to${PV}.sh.bin LICENSE="ut2003" SLOT="0" KEYWORDS="x86" +IUSE="dedicated" RESTRICT="nostrip" DEPEND="virtual/glibc @@ -21,10 +21,9 @@ DEPEND="virtual/glibc RDEPEND="dedicated? ( games-server/ut2003-ded ) !dedicated? ( virtual/opengl )" -S=${WORKDIR} +S="${WORKDIR}" -dir=${GAMES_PREFIX_OPT}/${PN} -Ddir=${D}/${dir} +dir="${GAMES_PREFIX_OPT}/${PN}" pkg_setup() { check_license || die "License check failed" @@ -42,14 +41,15 @@ src_unpack() { } src_install() { - dodir ${dir} + local Ddir="${D}/${dir}" + dodir ${dir}/System # Disk 1 einfo "Copying files from Disk 1..." cp -r ${CDROM_ROOT}/{Animations,ForceFeedback,Help,KarmaData,Maps,Sounds,Textures,Web} ${Ddir} || die "copying files" cp -r ${CDROM_ROOT}/System/{editorres,*.{bmp,dat,det,est,frt,ini,int,itt,md5,u,upl,url}} ${Ddir}/System || die "copying files" - mkdir -p ${Ddir}/Benchmark/Stuff || dir "creating benchamrk folders" + mkdir -p ${Ddir}/Benchmark/Stuff || die "creating benchamrk folders" cp -r ${CDROM_ROOT}/Benchmark/Stuff/* ${Ddir}/Benchmark/Stuff || die "copying benchmark files" cdrom_load_next_cd |