View | Details | Raw Unified | Return to bug 91456
Collapse All | Expand All

(-)emulators/atari800/Makefile (-4 / +2 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	atari800
8
PORTNAME=	atari800
9
PORTVERSION=	1.3.6
9
PORTVERSION=	2.0.0
10
CATEGORIES=	emulators
10
CATEGORIES=	emulators
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 88-96 Link Here
88
post-patch:
88
post-patch:
89
	@${CP} ${FILESDIR}/atari800.cfg ${WRKSRC}
89
	@${CP} ${FILESDIR}/atari800.cfg ${WRKSRC}
90
	@${REINPLACE_CMD} -e 's|GUMBY|${DATADIR}|g' ${WRKSRC}/atari800.cfg
90
	@${REINPLACE_CMD} -e 's|GUMBY|${DATADIR}|g' ${WRKSRC}/atari800.cfg
91
	@${REINPLACE_CMD} -e 's|/etc|${DATADIR}|g' ${WRKSRC}/rt-config.c
91
	@${REINPLACE_CMD} -e 's|/etc|${DATADIR}|g' ${WRKSRC}/atari.c
92
	@${REINPLACE_CMD} -e 's|tmpnam|mkstemp|g' ${WRKSRC}/devices.c \
93
		${WRKSRC}/compfile.c
94
	@${REINPLACE_CMD} -e 's|sdl-config|$$SDL_CONFIG|g' \
92
	@${REINPLACE_CMD} -e 's|sdl-config|$$SDL_CONFIG|g' \
95
		${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
93
		${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
96
94
(-)emulators/atari800/distinfo (-3 / +3 lines)
Lines 1-6 Link Here
1
MD5 (atari800/atari800-1.3.6.tar.gz) = 98b58d26aabeedb124233787677c32c3
1
MD5 (atari800/atari800-2.0.0.tar.gz) = df9ffbc7eab97fe97c0c5b762e7181fc
2
SHA256 (atari800/atari800-1.3.6.tar.gz) = 4236db413d23d8c3694aa3581b2ceb169752f517fa5627d7fe17386763f3ca98
2
SHA256 (atari800/atari800-2.0.0.tar.gz) = 2615700ae35dd16d18afda9ae81230d7c5190ea2ffcc4def8e7da17f41281f54
3
SIZE (atari800/atari800-1.3.6.tar.gz) = 1012231
3
SIZE (atari800/atari800-2.0.0.tar.gz) = 984952
4
MD5 (atari800/xf25.zip) = 4dc3b6b4313e9596c4d474785a37b94d
4
MD5 (atari800/xf25.zip) = 4dc3b6b4313e9596c4d474785a37b94d
5
SHA256 (atari800/xf25.zip) = 98ae0ad10413dd6f35ed80f5662dba6d790def70c7829046e52012a03b574b8a
5
SHA256 (atari800/xf25.zip) = 98ae0ad10413dd6f35ed80f5662dba6d790def70c7829046e52012a03b574b8a
6
SIZE (atari800/xf25.zip) = 188942
6
SIZE (atari800/xf25.zip) = 188942
(-)emulators/atari800/files/patch-configure (-34 lines)
Lines 1-34 Link Here
1
--- configure.orig	Sat Apr 30 23:18:04 2005
2
+++ configure	Sat May 28 02:59:23 2005
3
@@ -1369,7 +1369,7 @@
4
         a8_target="UNKNOWN"
5
         ;;
6
 esac
7
-if [ "$a8_target" == "UNKNOWN" ]; then
8
+if [ "$a8_target" = "UNKNOWN" ]; then
9
     echo
10
     echo "Usage: configure --target=<target> <other options>"
11
     echo
12
@@ -1569,11 +1569,11 @@
13
         ;;
14
 esac
15
 
16
-if [ "X_$CFLAGS" == "X_" ]; then
17
+if [ "X_$CFLAGS" = "X_" ]; then
18
     CFLAGS="-O2 -Wall"
19
 fi
20
 
21
-if [ "X_$LDFLAGS" == "X_" ]; then
22
+if [ "X_$LDFLAGS" = "X_" ]; then
23
     LDFLAGS="-s"
24
 fi
25
26
@@ -4386,7 +4386,7 @@
27
 
28
 
29
 OBJS=
30
-if [ "$a8_host" == "win" ]; then
31
+if [ "$a8_host" = "win" ]; then
32
 
33
 as_ac_Lib=`echo "ac_cv_lib_gdi32''_main" | $as_tr_sh`
34
 echo "$as_me:$LINENO: checking for main in -lgdi32" >&5

Return to bug 91456