summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-03-11 12:00:42 +0000
committerMike Frysinger <vapier@gentoo.org>2006-03-11 12:00:42 +0000
commit640277443116ce030a8b40eefd8ea6be01c78960 (patch)
treea4b69658bb735db748b99ce6adfaa14da782218c /games-fps/quake3
parentDepend on postresql client libs rather than the server. Add ~sparc to KEYWORD... (diff)
downloadhistorical-640277443116ce030a8b40eefd8ea6be01c78960.tar.gz
historical-640277443116ce030a8b40eefd8ea6be01c78960.tar.bz2
historical-640277443116ce030a8b40eefd8ea6be01c78960.zip
old
Diffstat (limited to 'games-fps/quake3')
-rw-r--r--games-fps/quake3/files/digest-quake3-1.33_alpha3641
-rw-r--r--games-fps/quake3/quake3-1.33_alpha364.ebuild110
2 files changed, 0 insertions, 111 deletions
diff --git a/games-fps/quake3/files/digest-quake3-1.33_alpha364 b/games-fps/quake3/files/digest-quake3-1.33_alpha364
deleted file mode 100644
index 1c522c64cff5..000000000000
--- a/games-fps/quake3/files/digest-quake3-1.33_alpha364
+++ /dev/null
@@ -1 +0,0 @@
-MD5 2343dd5306acd0653ef10ad4deeabe91 quake3-1.33_SVN364M.tar.bz2 1903807
diff --git a/games-fps/quake3/quake3-1.33_alpha364.ebuild b/games-fps/quake3/quake3-1.33_alpha364.ebuild
deleted file mode 100644
index 5f0ee03c5c2c..000000000000
--- a/games-fps/quake3/quake3-1.33_alpha364.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3/quake3-1.33_alpha364.ebuild,v 1.4 2006/01/08 14:52:00 wolf31o2 Exp $
-
-# quake3-9999 -> latest svn
-# quake3-9999.REV -> use svn REV
-# quake3-VER_alphaREV -> svn snapshot REV for version VER
-# quake3-VER -> normal quake release
-
-if [[ ${PV} == 9999* ]] ; then
- [[ ${PV} == 9999.* ]] && ESVN_UPDATE_CMD="svn up -r ${PV/9999.}"
- ESVN_REPO_URI="svn://svn.icculus.org/quake3/trunk"
- inherit subversion games toolchain-funcs
-
- SRC_URI=""
- S=${WORKDIR}/trunk
-elif [[ ${PV} == *_alpha* ]] ; then
- inherit games toolchain-funcs
-
- MY_PV=${PV/_alpha*}
- SNAP=${PV/*_alpha}
- MY_P=${PN}-${MY_PV}_SVN${SNAP}M
- SRC_URI="mirror://gentoo/${MY_P}.tar.bz2"
- S=${WORKDIR}/${MY_P}
-else
- inherit games toolchain-funcs
-
- SRC_URI="http://icculus.org/quake3/${P}.tar.bz2"
-fi
-
-DESCRIPTION="Quake III Arena - 3rd installment of the classic id 3D first-person shooter"
-HOMEPAGE="http://icculus.org/quake3/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="dedicated opengl"
-
-RDEPEND="opengl? (
- virtual/opengl
- media-libs/openal
- || (
- (
- x11-libs/libXext
- x11-libs/libX11
- x11-libs/libXau
- x11-libs/libXdmcp )
- virtual/x11 )
- media-libs/libsdl )
- !dedicated? (
- virtual/opengl
- || (
- (
- x11-libs/libXext
- x11-libs/libX11
- x11-libs/libXau
- x11-libs/libXdmcp )
- virtual/x11 )
- media-libs/libsdl )
- games-fps/quake3-data"
-
-src_unpack() {
- if [[ ${PV} == 9999* ]] ; then
- subversion_src_unpack
- else
- unpack ${A}
- fi
-}
-
-src_compile() {
- buildit() { use $1 && echo 1 || echo 0 ; }
- emake \
- BUILD_SERVER=$(buildit dedicated) \
- BUILD_CLIENT=$(buildit opengl) \
- TEMPDIR="${T}" \
- CC="$(tc-getCC)" \
- ARCH=$(tc-arch-kernel) \
- OPTIMIZE="${CFLAGS}" \
- DEFAULT_BASEDIR="${GAMES_DATADIR}/quake3" \
- DEFAULT_LIBDIR="${GAMES_LIBDIR}/quake3" \
- || die
-}
-
-src_install() {
- dodoc id-readme.txt TODO README BUGS ChangeLog
- cd code/unix
- dodoc README.*
-
- doicon quake3.xpm
- make_desktop_entry quake3 "Quake III Arena" quake3.xpm
-
- cd release*
- for x in linux* ; do
- newgamesbin ${x} ${x/linux} || die "dobin ${x}"
- done
- exeinto ${GAMES_LIBDIR}/${PN}/baseq3
- doexe baseq3/*.so || die "baseq3 .so"
- exeinto ${GAMES_LIBDIR}/${PN}/missionpack
- doexe missionpack/*.so || die "missionpack .so"
-
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
- echo
- ewarn "The source version of Quake 3 will not work with Punk Buster."
- ewarn "If you need pb support, then use the quake3-bin package."
- echo
-}