FreeBSD Bugzilla – Attachment 54008 Details for
Bug 81725
Update port: emulators/atari800 to 1.3.6
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 4.22 KB, created by
tkato432
on 2005-05-31 17:10:03 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
tkato432
Created:
2005-05-31 17:10:03 UTC
Size:
4.22 KB
patch
obsolete
>diff -urN /usr/ports/emulators/atari800/Makefile emulators/atari800/Makefile >--- /usr/ports/emulators/atari800/Makefile Tue Apr 12 14:04:59 2005 >+++ emulators/atari800/Makefile Sat May 28 03:03:42 2005 >@@ -6,7 +6,7 @@ > # > > PORTNAME= atari800 >-PORTVERSION= 1.3.5 >+PORTVERSION= 1.3.6 > CATEGORIES= emulators > MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} > MASTER_SITE_SUBDIR= ${PORTNAME} >@@ -18,6 +18,7 @@ > COMMENT= Atari 8-bit computer emulator > > BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip >+LIB_DEPENDS= png.5:${PORTSDIR}/graphics/libpng > > RESTRICTED= "xf25 contains copyright ROMs and cannot be distributed." > >@@ -27,15 +28,19 @@ > USE_GMAKE= yes > GNU_CONFIGURE= yes > CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} >+CONFIGURE_ENV= LDFLAGS="${LDFLAGS}" > > MAN1= atari800.1 > >+CFLAGS+= -I${LOCALBASE}/include/libpng >+LDFLAGS= -L${LOCALBASE}/lib >+ > ATARI_XF= ataribas.rom atariosb.rom atarixl.rom demos1.xfd \ > demos2.xfd dos25.xfd mydos45d.atr > > .if defined(WITH_SDL) > PKGNAMESUFFIX= -sdl >-USE_SDL= yes >+USE_SDL= sdl > CONFIGURE_ARGS+= --target=sdl > .else > USE_XLIB= yes >@@ -54,10 +59,6 @@ > CONFIGURE_ARGS+= --enable-cripsound > .endif > >-.if defined(WITH_SNAILMETER) >-CONFIGURE_ARGS+= --enable-snailmeter >-.endif >- > .if defined(WITH_PAGEDATTRIB) > CONFIGURE_ARGS+= --enable-pagedattrib > .endif >@@ -66,33 +67,22 @@ > CONFIGURE_ARGS+= --enable-bufferdlog > .endif > >-.if defined(WITH_DISKLED) >-CONFIGURE_ARGS+= --enable-diskled >-.endif >- > .if defined(WITH_VERYSLOW) > CONFIGURE_ARGS+= --enable-veryslow > .endif > >-.if defined(WITH_CURSORBLOCK) >-CONFIGURE_ARGS+= --enable-cursorblock >-.endif >- > pre-everything:: > @${ECHO_MSG} "" > @${ECHO_MSG} "Atari800 has the following tunable option(s):" > @${ECHO_MSG} " WITHOUT_SHM=yes Use X11 frontend without shared memory extensions" > @${ECHO_MSG} " WITH_SDL=yes Use SDL frontend" > @${ECHO_MSG} " WITH_SERIOSOUND=yes Use serial in/out sound" >- @${ECHO_MSG} " WITH_CLIPSOUND=yes Use bufferd debug output" >- @${ECHO_MSG} " WITH_SNAILMETER=yes Show how much the emulator is slower than the original" >+ @${ECHO_MSG} " WITH_CLIPSOUND=yes Use sound clipping" > @${ECHO_MSG} " WITH_PAGEDATTRIB=yes Use page-based attribute array" > @${ECHO_MSG} " WITH_BUFFERDLOG=yes Use buffered debug output" > @${ECHO_MSG} " (until the graphics mode switches back to text mode)" >- @${ECHO_MSG} " WITH_DISKLED=yes Show disk LED emulation on screen display" > @${ECHO_MSG} " WITH_VERYSLOW=yes Use very slow computer support" >- @${ECHO_MSG} " (disables generating screen completely)" >- @${ECHO_MSG} " WITH_CURSORBLOCK=yes Using cursor/ctrl keys for keyboard joystick" >+ @${ECHO_MSG} " (use with the -refresh option)" > @${ECHO_MSG} "" > > post-patch: >diff -urN /usr/ports/emulators/atari800/distinfo emulators/atari800/distinfo >--- /usr/ports/emulators/atari800/distinfo Sat Jan 1 05:22:41 2005 >+++ emulators/atari800/distinfo Sat May 28 02:36:39 2005 >@@ -1,4 +1,4 @@ >-MD5 (atari800/atari800-1.3.5.tar.gz) = 299922f3a1086410302eafe35c76b1cb >-SIZE (atari800/atari800-1.3.5.tar.gz) = 1007863 >+MD5 (atari800/atari800-1.3.6.tar.gz) = 98b58d26aabeedb124233787677c32c3 >+SIZE (atari800/atari800-1.3.6.tar.gz) = 1012231 > MD5 (atari800/xf25.zip) = 4dc3b6b4313e9596c4d474785a37b94d > SIZE (atari800/xf25.zip) = 188942 >diff -urN /usr/ports/emulators/atari800/files/patch-configure emulators/atari800/files/patch-configure >--- /usr/ports/emulators/atari800/files/patch-configure Thu Jan 1 09:00:00 1970 >+++ emulators/atari800/files/patch-configure Sat May 28 02:59:34 2005 >@@ -0,0 +1,34 @@ >+--- configure.orig Sat Apr 30 23:18:04 2005 >++++ configure Sat May 28 02:59:23 2005 >+@@ -1369,7 +1369,7 @@ >+ a8_target="UNKNOWN" >+ ;; >+ esac >+-if [ "$a8_target" == "UNKNOWN" ]; then >++if [ "$a8_target" = "UNKNOWN" ]; then >+ echo >+ echo "Usage: configure --target=<target> <other options>" >+ echo >+@@ -1569,11 +1569,11 @@ >+ ;; >+ esac >+ >+-if [ "X_$CFLAGS" == "X_" ]; then >++if [ "X_$CFLAGS" = "X_" ]; then >+ CFLAGS="-O2 -Wall" >+ fi >+ >+-if [ "X_$LDFLAGS" == "X_" ]; then >++if [ "X_$LDFLAGS" = "X_" ]; then >+ LDFLAGS="-s" >+ fi >+ >+@@ -4386,7 +4386,7 @@ >+ >+ >+ OBJS= >+-if [ "$a8_host" == "win" ]; then >++if [ "$a8_host" = "win" ]; then >+ >+ as_ac_Lib=`echo "ac_cv_lib_gdi32''_main" | $as_tr_sh` >+ echo "$as_me:$LINENO: checking for main in -lgdi32" >&5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 81725
: 54008