diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2003-09-16 14:21:00 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2003-09-16 14:21:00 +0000 |
commit | abfebcdae56c1a0ec683b42a9d3c029e88122e0b (patch) | |
tree | 6b396cf91c42afc17aa961d56ae022fa7cb23863 /games | |
parent | 69576d038a3fc996c864ec3bb8457a746b5d34e7 (diff) | |
download | pkgsrc-abfebcdae56c1a0ec683b42a9d3c029e88122e0b.tar.gz |
Fix MASTER_SITES and don't try to depend on suse_* packages
if we're on a Linux machine.
Patch provided by Soren Jacobsen <snj@pobox.com> via PR pkg/22426.
Diffstat (limited to 'games')
-rw-r--r-- | games/quake3arena-demo/Makefile | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/games/quake3arena-demo/Makefile b/games/quake3arena-demo/Makefile index 6326b66534e..501356bce2f 100644 --- a/games/quake3arena-demo/Makefile +++ b/games/quake3arena-demo/Makefile @@ -1,21 +1,29 @@ -# $NetBSD: Makefile,v 1.14 2003/07/17 21:39:18 grant Exp $ +# $NetBSD: Makefile,v 1.15 2003/09/16 14:21:00 xtraeme Exp $ DISTNAME= linuxq3ademo-1_11-6_x86_gz PKGNAME= quake3arena-demo-1.11.6 WRKSRC= ${WRKDIR} CATEGORIES= games x11 -MASTER_SITES= http://download1.activision.com/activision/quake3/demo/ \ - http://download2.activision.com/activision/quake3/demo/ +MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/quake3/linux/ \ + ftp://mirrors.xmission.com/idsoftware/quake3/linux/ EXTRACT_SUFX= .sh MAINTAINER= wiz@NetBSD.org HOMEPAGE= http://www.quake3arena.com/ COMMENT= Quake 3 Arena -- first person shooter (linux demo) +CONFLICTS= quake3arena-[0-9]* + +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} != Linux DEPENDS+= suse_linux>=6.3:../../emulators/${SUSE_DIR_PREFIX}_linux DEPENDS+= suse_glx>=6.4:../../emulators/${SUSE_DIR_PREFIX}_glx - -CONFLICTS= quake3arena-[0-9]* +.include "../../emulators/suse_linux/Makefile.application" +.else +USE_X11= yes +.include "../../graphics/MesaLib/buildlink2.mk" +.endif NO_CONFIGURE= yes EXTRACT_CMD= ${SED} '1,/^END_OF_STUB$$/d' ${DOWNLOADED_DISTFILE} | \ @@ -55,5 +63,4 @@ do-install: cd ${WRKSRC} && ${PAX} -rw Help ${SHAREDIR} ${MV} ${SHAREDIR}/Help ${SHAREDIR}/quake3arena-Help -.include "../../emulators/suse_linux/Makefile.application" .include "../../mk/bsd.pkg.mk" |