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

(-)emulators/dosbox/Makefile (-2 / +2 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	dosbox
8
PORTNAME=	dosbox
9
PORTVERSION=	0.65
9
PORTVERSION=	0.70
10
PORTREVISION=	1
11
CATEGORIES=	emulators
10
CATEGORIES=	emulators
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 17-22 Link Here
17
16
18
LIB_DEPENDS=	png.5:${PORTSDIR}/graphics/png
17
LIB_DEPENDS=	png.5:${PORTSDIR}/graphics/png
19
18
19
USE_AUTOTOOLS=	autoconf:259 aclocal:19
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
USE_SDL=	sdl net
21
USE_SDL=	sdl net
(-)emulators/dosbox/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (dosbox-0.65.tar.gz) = fef84c292c3aeae747368b9875c1575a
1
MD5 (dosbox-0.70.tar.gz) = ea0a936e88eb294038e67eeb0d7129c4
2
SHA256 (dosbox-0.65.tar.gz) = 23fd001e2006f66ffdfe63adb6478ba85027f65b5078d6c69ad59e7f678d761f
2
SHA256 (dosbox-0.70.tar.gz) = 05fdfd561eee33de12d978795b7f12338327c6da1ce65971463b58f2e90b48e4
3
SIZE (dosbox-0.65.tar.gz) = 848989
3
SIZE (dosbox-0.70.tar.gz) = 934649
(-)emulators/dosbox/files/patch-configure.in (+12 lines)
Line 0 Link Here
1
--- configure.in.orig
2
+++ configure.in
3
@@ -335,6 +335,9 @@
4
        AC_DEFINE(OS2, 1, [Compiling on OS/2 EMX])
5
        AC_DEFINE(C_DIRECTSERIAL, 1, [ Define to 1 if you want serial passthrough support (Win32, Posix and OS/2).])
6
        ;;
7
+    *-*-freebsd*)
8
+       AC_DEFINE(FREEBSD, 1, [Compiling on FREEBSD])
9
+       AC_DEFINE(C_DIRECTSERIAL, 1, [ Define to 1 if you want serial passthrough support (Win32, Posix and OS/2).])
10
 esac
11
 
12
 dnl Some stuff for the icon.
(-)emulators/dosbox/files/patch-src::hardware::serialport::misc_util.cpp (+11 lines)
Line 0 Link Here
1
--- src/hardware/serialport/misc_util.cpp.orig
2
+++ src/hardware/serialport/misc_util.cpp
3
@@ -6,7 +6,7 @@
4
 // C++ SDLnet wrapper
5
 
6
 // Socket inheritance
7
-#if defined LINUX || defined OS2
8
+#if defined LINUX || defined OS2 || defined FREEBSD
9
 #define CAPWORD (NETWRAPPER_TCP|NETWRAPPER_TCP_NATIVESOCKET)
10
 #ifdef OS2
11
 typedef int     socklen_t;
(-)emulators/dosbox/files/patch-src::hardware::serialport::misc_util.h (+11 lines)
Line 0 Link Here
1
--- src/hardware/serialport/misc_util.h.orig
2
+++ src/hardware/serialport/misc_util.h
3
@@ -6,7 +6,7 @@
4
 #include "SDL_net.h"
5
 #include "support.h"
6
 
7
-#if defined LINUX || defined OS2
8
+#if defined LINUX || defined OS2 || defined FREEBSD
9
 #define NATIVESOCKETS
10
 
11
 #elif defined WIN32

Return to bug 110250