diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-10-26 09:53:40 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-10-26 09:53:40 +0000 |
commit | 6d4d31c2f041ccb6f5b980fdb415e02d27692859 (patch) | |
tree | 2b71ee8a52994eb027a3467a9459399721c19909 /games/mvdsv | |
parent | 46362ccf0109fa2f9f259e6b52d3cba797eefc7d (diff) | |
download | ports-6d4d31c2f041ccb6f5b980fdb415e02d27692859.tar.gz ports-6d4d31c2f041ccb6f5b980fdb415e02d27692859.zip |
- Update to version 0.19. We had finally happened to agree on version
numbering scheme, so this is pretty official now. Bump PORTEPOCH,
hopefully the last time
- Provide better MASTER_SITES locations
Notes
Notes:
svn path=/head/; revision=146376
Diffstat (limited to 'games/mvdsv')
-rw-r--r-- | games/mvdsv/Makefile | 9 | ||||
-rw-r--r-- | games/mvdsv/distinfo | 4 | ||||
-rw-r--r-- | games/mvdsv/files/Makefile | 15 |
3 files changed, 20 insertions, 8 deletions
diff --git a/games/mvdsv/Makefile b/games/mvdsv/Makefile index 5420ff07131d..836e044d3707 100644 --- a/games/mvdsv/Makefile +++ b/games/mvdsv/Makefile @@ -6,11 +6,12 @@ # PORTNAME?= mvdsv -PORTVERSION= 0.178 -PORTEPOCH= 1 +PORTVERSION= 0.19 +PORTEPOCH= 2 CATEGORIES?= games -MASTER_SITES= http://quakeworld.ru/files/vvd/mvdsv/ \ - http://freebsd.nsu.ru/distfiles/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ + http://quakeworld.ru/files/vvd/mvdsv/ +MASTER_SITE_SUBDIR= ${PORTNAME} DISTNAME= mvdsv_${PORTVERSION}_sources MAINTAINER= danfe@FreeBSD.org diff --git a/games/mvdsv/distinfo b/games/mvdsv/distinfo index fab5645d7afb..98008bf29eb6 100644 --- a/games/mvdsv/distinfo +++ b/games/mvdsv/distinfo @@ -1,2 +1,2 @@ -MD5 (mvdsv_0.178_sources.tar.bz2) = 4c730cc7186770a393a40b10e637db6f -SIZE (mvdsv_0.178_sources.tar.bz2) = 766244 +MD5 (mvdsv_0.19_sources.tar.bz2) = 5caa724ff8d3664886e8824082d019b7 +SIZE (mvdsv_0.19_sources.tar.bz2) = 850145 diff --git a/games/mvdsv/files/Makefile b/games/mvdsv/files/Makefile index 9a9e2d05330c..501c08f56dd7 100644 --- a/games/mvdsv/files/Makefile +++ b/games/mvdsv/files/Makefile @@ -11,7 +11,8 @@ # Created on Wednesday, May 21 2003 by Alexey Dokuchaev <danfe@regency.nsu.ru> # -DO_CFLAGS = ${CFLAGS} -funsigned-char -I${LOCALBASE}/include -DSERVERONLY -Dstricmp=strcasecmp +DO_CFLAGS = ${CFLAGS} -funsigned-char -I${LOCALBASE}/include -Dstricmp=strcasecmp \ + -DSERVERONLY -DUSE_PR2 .if ${MACHINE_ARCH} == "i386" && !defined(WITHOUT_X86_ASM) DO_CFLAGS += -Did386 @@ -35,12 +36,18 @@ SV_OBJS = \ pr_edict.o \ pr_exec.o \ \ + pr2_cmds.o \ + pr2_edict.o \ + pr2_exec.o \ + pr2_vm.o \ +\ sv_ccmds.o \ sv_demo.o \ sv_ents.o \ sv_init.o \ sv_login.o \ sv_main.o \ + sv_mod_frags.o \ sv_model.o \ sv_move.o \ sv_nchan.o \ @@ -62,7 +69,11 @@ SV_OBJS = \ sha1.o \ version.o \ world.o \ - zone.o + zone.o \ +\ + pcre/chartables.o \ + pcre/get.o \ + pcre/pcre.o .if ${MACHINE_ARCH} == "i386" && !defined(WITHOUT_X86_ASM) SV_AS_OBJS = \ |