diff options
author | arved <arved@FreeBSD.org> | 2007-07-31 12:59:28 +0000 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2007-07-31 12:59:28 +0000 |
commit | c5ea167df917de685ee7654a97cf1ce84e1041f7 (patch) | |
tree | 29affa4f2766c7397aa81d99da070fd159212c67 /emulators | |
parent | 12814a2596e1acadd4548353d8af603a4df71670 (diff) | |
download | FreeBSD-ports-c5ea167df917de685ee7654a97cf1ce84e1041f7.zip FreeBSD-ports-c5ea167df917de685ee7654a97cf1ce84e1041f7.tar.gz |
Update to 0.71
PR: 115057
Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua>
Approved by: "Tom Carrick" <knyght@gmail.com>
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/dosbox/Makefile | 3 | ||||
-rw-r--r-- | emulators/dosbox/distinfo | 6 | ||||
-rw-r--r-- | emulators/dosbox/files/patch-configure.in | 14 | ||||
-rw-r--r-- | emulators/dosbox/files/patch-src::hardware::serialport::misc_util.cpp | 11 | ||||
-rw-r--r-- | emulators/dosbox/files/patch-src::hardware::serialport::misc_util.h | 11 |
5 files changed, 10 insertions, 35 deletions
diff --git a/emulators/dosbox/Makefile b/emulators/dosbox/Makefile index a8e67bd..14dbb6c 100644 --- a/emulators/dosbox/Makefile +++ b/emulators/dosbox/Makefile @@ -6,8 +6,7 @@ # PORTNAME= dosbox -PORTVERSION= 0.70 -PORTREVISION= 1 +PORTVERSION= 0.71 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/emulators/dosbox/distinfo b/emulators/dosbox/distinfo index 786cbeb4..8139947 100644 --- a/emulators/dosbox/distinfo +++ b/emulators/dosbox/distinfo @@ -1,3 +1,3 @@ -MD5 (dosbox-0.70.tar.gz) = ea0a936e88eb294038e67eeb0d7129c4 -SHA256 (dosbox-0.70.tar.gz) = 05fdfd561eee33de12d978795b7f12338327c6da1ce65971463b58f2e90b48e4 -SIZE (dosbox-0.70.tar.gz) = 934649 +MD5 (dosbox-0.71.tar.gz) = 52ee21b69f7baaf88190d7935ea58359 +SHA256 (dosbox-0.71.tar.gz) = df492a9e05f7633ea188cc8ba4959acd362c7e857d23b9eef1513043a166c4c4 +SIZE (dosbox-0.71.tar.gz) = 989672 diff --git a/emulators/dosbox/files/patch-configure.in b/emulators/dosbox/files/patch-configure.in index 37b8d1e..579be22 100644 --- a/emulators/dosbox/files/patch-configure.in +++ b/emulators/dosbox/files/patch-configure.in @@ -1,12 +1,10 @@ --- configure.in.orig +++ configure.in -@@ -335,6 +335,9 @@ - AC_DEFINE(OS2, 1, [Compiling on OS/2 EMX]) +@@ -407,7 +407,6 @@ + LIBS="$LIBS -framework AudioUnit" + ;; + *-*-freebsd* | *-*-linux* | *-*-dragonfly* | *-*-netbsd* | *-*-openbsd*) +- AC_DEFINE(LINUX, 1, [Compiling on GNU/Linux or *BSD]) AC_DEFINE(C_DIRECTSERIAL, 1, [ Define to 1 if you want serial passthrough support (Win32, Posix and OS/2).]) ;; -+ *-*-freebsd*) -+ AC_DEFINE(FREEBSD, 1, [Compiling on FREEBSD]) -+ AC_DEFINE(C_DIRECTSERIAL, 1, [ Define to 1 if you want serial passthrough support (Win32, Posix and OS/2).]) - esac - - dnl Some stuff for the icon. + *-*-os2-emx*) diff --git a/emulators/dosbox/files/patch-src::hardware::serialport::misc_util.cpp b/emulators/dosbox/files/patch-src::hardware::serialport::misc_util.cpp deleted file mode 100644 index 775827be..0000000 --- a/emulators/dosbox/files/patch-src::hardware::serialport::misc_util.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- src/hardware/serialport/misc_util.cpp.orig -+++ src/hardware/serialport/misc_util.cpp -@@ -6,7 +6,7 @@ - // C++ SDLnet wrapper - - // Socket inheritance --#if defined LINUX || defined OS2 -+#if defined LINUX || defined OS2 || defined FREEBSD - #define CAPWORD (NETWRAPPER_TCP|NETWRAPPER_TCP_NATIVESOCKET) - #ifdef OS2 - typedef int socklen_t; diff --git a/emulators/dosbox/files/patch-src::hardware::serialport::misc_util.h b/emulators/dosbox/files/patch-src::hardware::serialport::misc_util.h deleted file mode 100644 index 31178f9..0000000 --- a/emulators/dosbox/files/patch-src::hardware::serialport::misc_util.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/hardware/serialport/misc_util.h.orig -+++ src/hardware/serialport/misc_util.h -@@ -6,7 +6,7 @@ - #include "SDL_net.h" - #include "support.h" - --#if defined LINUX || defined OS2 -+#if defined LINUX || defined OS2 || defined FREEBSD - #define NATIVESOCKETS - - #elif defined WIN32 |