View | Details | Raw Unified | Return to bug 89331 | Differences between
and this patch

Collapse All | Expand All

(-)scummvm-tools/Makefile (-3 / +4 lines)
Lines 6-17 Link Here
6
#
6
#
7
7
8
PORTNAME=	scummvm-tools
8
PORTNAME=	scummvm-tools
9
PORTVERSION=	0.7.0
9
PORTVERSION=	0.8.0
10
CATEGORIES=	games emulators
10
CATEGORIES=	games emulators
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	scummvm
12
MASTER_SITE_SUBDIR=	scummvm
13
13
14
MAINTAINER=	ports@FreeBSD.org
14
MAINTAINER=	freebsd.alex@trull.org
15
COMMENT=	Tools for use with the SCUMMVM game emulator
15
COMMENT=	Tools for use with the SCUMMVM game emulator
16
16
17
RUN_DEPENDS=	scummvm:${PORTSDIR}/games/scummvm
17
RUN_DEPENDS=	scummvm:${PORTSDIR}/games/scummvm
Lines 23-28 Link Here
23
USE_BZIP2=	yes
23
USE_BZIP2=	yes
24
USE_GMAKE=	yes
24
USE_GMAKE=	yes
25
USE_REINPLACE=	yes
25
USE_REINPLACE=	yes
26
WRKSRC=         ${WRKDIR}/tools-${PORTVERSION}
26
27
27
.include <bsd.port.pre.mk>
28
.include <bsd.port.pre.mk>
28
29
Lines 31-37 Link Here
31
.endif
32
.endif
32
33
33
do-install:
34
do-install:
34
.for i in descumm extract md5table mm_nes_extract queenrebuild rescumm
35
.for i in compress_queen compress_saga compress_san compress_scumm_bun compress_scumm_sou compress_simon compress_sword1 compress_sword2 extract_kyra extract_loom_tg16 extract_mm_c64 extract_mm_nes extract_scumm_mac extract_simon1_amiga extract_zak_c64 dekyra descumm desword2
35
	@${INSTALL_PROGRAM} ${WRKSRC}/$i ${PREFIX}/bin
36
	@${INSTALL_PROGRAM} ${WRKSRC}/$i ${PREFIX}/bin
36
.endfor
37
.endfor
37
38
(-)scummvm-tools/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
MD5 (scummvm-tools-0.7.0.tar.bz2) = eeebbd4e309a8564dd911d5c26fed2f0
1
MD5 (scummvm-tools-0.8.0.tar.bz2) = cc7e13ea10acf692c10e90b9507074ed
2
SIZE (scummvm-tools-0.7.0.tar.bz2) = 98664
2
SHA256 (scummvm-tools-0.8.0.tar.bz2) = b60936416e201eda18c627c85bc29ba742e1b6c98d79bc9935ed4827a2e47fa0
3
SIZE (scummvm-tools-0.8.0.tar.bz2) = 92983
(-)scummvm-tools/files/patch-simon1descr.c (-19 lines)
Lines 1-19 Link Here
1
--- simon1decr.c.orig	Mon Apr 12 00:10:19 2004
2
+++ simon1decr.c	Tue Jan  4 15:36:39 2005
3
@@ -26,14 +26,9 @@
4
 
5
 #define EndGetM32(a)  ((((a)[0])<<24)|(((a)[1])<<16)|(((a)[2])<<8)|((a)[3]))
6
 
7
-#define SD_GETBIT(var) do { \
8
-  if (!bits--) { s -= 4; if (s < src) return 0; bb=EndGetM32(s); bits=31; } \
9
-  (var) = bb & 1; bb >>= 1; \
10
-} while (0)
11
+#define SD_GETBIT(var) do { if (!bits--) { s -= 4; if (s < src) return 0; bb=EndGetM32(s); bits=31; } (var) = bb & 1; bb >>= 1; } while (0)
12
 
13
-#define SD_GETBITS(var, nbits) do { \
14
-  bc=(nbits); (var)=0; while (bc--) {(var)<<=1; SD_GETBIT(bit); (var)|=bit; } \
15
-} while (0)
16
+#define SD_GETBITS(var, nbits) do { bc=(nbits); (var)=0; while (bc--) {(var)<<=1; SD_GETBIT(bit); (var)|=bit; } } while (0)
17
 
18
 #define SD_TYPE_LITERAL (0)
19
 #define SD_TYPE_MATCH   (1)
(-)scummvm-tools/pkg-plist (-5 / +17 lines)
Lines 1-8 Link Here
1
bin/compress_queen
2
bin/compress_saga
3
bin/compress_san
4
bin/compress_scumm_bun
5
bin/compress_scumm_sou
6
bin/compress_simon
7
bin/compress_sword1
8
bin/compress_sword2
9
bin/extract_kyra
10
bin/extract_loom_tg16
11
bin/extract_mm_c64
12
bin/extract_mm_nes
13
bin/extract_scumm_mac
14
bin/extract_simon1_amiga
15
bin/extract_zak_c64
16
bin/dekyra
1
bin/descumm
17
bin/descumm
2
bin/extract
18
bin/desword2
3
bin/md5table
4
bin/mm_nes_extract
5
bin/queenrebuild
6
bin/rescumm
7
%%PORTDOCS%%share/doc/scummvm-tools/README
19
%%PORTDOCS%%share/doc/scummvm-tools/README
8
%%PORTDOCS%%@dirrm share/doc/scummvm-tools
20
%%PORTDOCS%%@dirrm share/doc/scummvm-tools

Return to bug 89331