summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordinoex <dinoex@FreeBSD.org>2011-04-02 18:54:37 +0000
committerdinoex <dinoex@FreeBSD.org>2011-04-02 18:54:37 +0000
commit0606f92cc715f4fafb010c4972a34e26cffe3e21 (patch)
tree383ee9eafc3fdc5b48193020a6c94c8d8834cbf7
parent558cdd30999019a4c870bc666d92d552acd0a49f (diff)
downloadFreeBSD-ports-0606f92cc715f4fafb010c4972a34e26cffe3e21.zip
FreeBSD-ports-0606f92cc715f4fafb010c4972a34e26cffe3e21.tar.gz
- update to 2.3
-rw-r--r--emulators/vice/Makefile36
-rw-r--r--emulators/vice/distinfo5
-rw-r--r--emulators/vice/files/patch-RegExp.c10
-rw-r--r--emulators/vice/files/patch-RegExp.h12
-rw-r--r--emulators/vice/files/patch-joy_usb.c16
-rw-r--r--emulators/vice/pkg-plist18
6 files changed, 40 insertions, 57 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile
index 6d866f2..f19b5d1 100644
--- a/emulators/vice/Makefile
+++ b/emulators/vice/Makefile
@@ -5,8 +5,7 @@
# $FreeBSD$
PORTNAME= vice
-PORTVERSION= 2.2
-PORTREVISION= 4
+PORTVERSION= 2.3
CATEGORIES= emulators
MASTER_SITES= http://www.viceteam.org/online/ \
http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/ \
@@ -68,6 +67,19 @@ MLINKS= vice.1 x64.1 \
vice.1 xplus4.1 \
vice.1 xcbm2.1
+FIX_XAW= src/arch/unix/x11/xaw/about.c \
+ src/arch/unix/x11/xaw/uicartridge.c \
+ src/arch/unix/x11/xaw/uiedisk.c \
+ src/arch/unix/x11/xaw/uimenu.c \
+ src/arch/unix/x11/xaw/uiscreenshot.c \
+ src/arch/unix/x11/xaw/uisnapshot.c \
+ src/arch/unix/x11/xaw/x11ui.c \
+ src/arch/unix/x11/xaw/widgets/FileSel.c \
+ src/arch/unix/x11/xaw/widgets/FileSelP.h \
+ src/arch/unix/x11/xaw/widgets/MultiList.h \
+ src/arch/unix/x11/xaw/widgets/MultiListP.h \
+ src/arch/unix/x11/xaw/widgets/ScrList.c \
+
.if !defined(NOPORTDOCS)
INFO= vice
.endif
@@ -90,10 +102,6 @@ PLIST_SUB+= FCCACHE="@comment "
PLIST_SUB+= NOFCCACHE=""
.endif
-.if exists(${LOCALBASE}/include/esd.h) && !defined(WITHOUT_ESOUND)
-WITH_ESOUND?=yes
-.endif
-
# will be picked up by configure
.if exists(${LOCALBASE}/include/ffmpeg/avformat.h)
LIB_DEPENDS+= avcodec.1:${PORTSDIR}/multimedia/ffmpeg
@@ -113,17 +121,10 @@ PLIST_SUB+= NLS="@comment "
.if !defined(WITHOUT_SDL)
USE_SDL= sdl
-CONFIGURE_ARGS+= --with-sdl --with-sdlsound
+CONFIGURE_ARGS+= --with-sdlsound
CPPFLAGS+= -I${LOCALBASE}/include/SDL
.endif
-.if defined(WITH_ESOUND)
-LIB_DEPENDS+= esd.2:${PORTSDIR}/audio/esound
-CONFIGURE_ARGS+= --with-esd
-.else
-CONFIGURE_ARGS+= --without-esd
-.endif
-
.if defined(VICE_WITH_ASOUND)
LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib
.endif
@@ -146,6 +147,13 @@ post-patch:
.if defined(NOPORTDOCS)
${REINPLACE_CMD} -e 's| doc||' ${WRKSRC}/Makefile.in
.endif
+.if defined(NOPORTDOCS)
+.if defined(VICE_WITH_XAW3D)
+.for i in ${FIX_XAW}
+ ${REINPLACE_CMD} -e 's|X11/Xaw/|X11/Xaw3d/|' ${WRKSRC}/${i}
+.endfor
+.endif
+.endif
pre-install:
.if !defined(NOPORTDOCS)
diff --git a/emulators/vice/distinfo b/emulators/vice/distinfo
index e2ae2c3..1e25737 100644
--- a/emulators/vice/distinfo
+++ b/emulators/vice/distinfo
@@ -1,3 +1,2 @@
-MD5 (vice-2.2.tar.gz) = 6737f540806205384e9129026898b0a1
-SHA256 (vice-2.2.tar.gz) = 5d581bf817c97f1887651f92e73dd1f5e3c14627fa86fc70732491be7cba1551
-SIZE (vice-2.2.tar.gz) = 9597027
+SHA256 (vice-2.3.tar.gz) = b1817c8dce023069d5c15234c2b4da0a152d297ee8ed01f0b361795c4beeb50e
+SIZE (vice-2.3.tar.gz) = 11602378
diff --git a/emulators/vice/files/patch-RegExp.c b/emulators/vice/files/patch-RegExp.c
deleted file mode 100644
index db4b97c..0000000
--- a/emulators/vice/files/patch-RegExp.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/arch/unix/x11/xaw/widgets/RegExp.c.orig 2009-10-21 18:46:45.000000000 +0200
-+++ src/arch/unix/x11/xaw/widgets/RegExp.c 2010-08-02 19:58:49.000000000 +0200
-@@ -120,7 +120,6 @@
- /* Dummy for system that don't have neither <regex.h> and <regexp.h>. */
-
- void RegExpInit(fwf_regex_t *r)
-- ;
- {
- return;
- }
diff --git a/emulators/vice/files/patch-RegExp.h b/emulators/vice/files/patch-RegExp.h
deleted file mode 100644
index 0b87db1..0000000
--- a/emulators/vice/files/patch-RegExp.h
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/arch/unix/x11/xaw/widgets/RegExp.h.orig Sat Dec 4 19:31:32 1999
-+++ src/arch/unix/x11/xaw/widgets/RegExp.h Fri Sep 17 07:49:53 2004
-@@ -34,6 +34,9 @@
- #if defined __FreeBSD__ || defined __NetBSD__
- #undef HAVE_REGEXP_H
- #endif
-+#if defined __FreeBSD__
-+#undef HAVE_REGEX_H
-+#endif
-
- #if defined HAVE_REGEX_H /* POSIX */
-
diff --git a/emulators/vice/files/patch-joy_usb.c b/emulators/vice/files/patch-joy_usb.c
deleted file mode 100644
index 915bbd07..0000000
--- a/emulators/vice/files/patch-joy_usb.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- src/arch/unix/joy_usb.c.orig 2009-10-21 18:46:46.000000000 +0200
-+++ src/arch/unix/joy_usb.c 2009-12-25 18:32:15.000000000 +0100
-@@ -179,11 +179,9 @@
- found = 0;
- is_joy = 0;
- #if !defined(HAVE_USBHID_H) && !defined(HAVE_LIBUSB_H) && defined(HAVE_LIBUSBHID)
-- for (d = hid_start_parse(report, id) {
-- }
-+ for (d = hid_start_parse(report, id);
- #else
-- for (d = hid_start_parse(report, 1 << hid_input, id) {
-- }
-+ for (d = hid_start_parse(report, 1 << hid_input, id);
- #endif
- hid_get_item(d, &h);
- )
diff --git a/emulators/vice/pkg-plist b/emulators/vice/pkg-plist
index 8420bb6..9c42486 100644
--- a/emulators/vice/pkg-plist
+++ b/emulators/vice/pkg-plist
@@ -5,10 +5,12 @@ bin/vsid
bin/x128
bin/x64
bin/x64dtv
+bin/x64sc
bin/xcbm2
bin/xpet
bin/xplus4
bin/xvic
+info/vice.txt
%%NLS%%share/locale/da/LC_MESSAGES/vice.mo
%%NLS%%share/locale/de/LC_MESSAGES/vice.mo
%%NLS%%share/locale/fr/LC_MESSAGES/vice.mo
@@ -95,6 +97,7 @@ lib/vice/CBM-II/rom256l.vrs
lib/vice/CBM-II/rom500.vrs
lib/vice/CBM-II/white.vpl
lib/vice/CBM-II/x11_buks.vkm
+lib/vice/CBM-II/x11_buks_de.vkm
lib/vice/DRIVES/d1541II
lib/vice/DRIVES/d1571cr
lib/vice/DRIVES/dos1001
@@ -131,9 +134,17 @@ lib/vice/PET/rom4b80.vrs
lib/vice/PET/rom4g40.vrs
lib/vice/PET/white.vpl
lib/vice/PET/x11_bdep.vkm
+lib/vice/PET/x11_bdep_de.vkm
lib/vice/PET/x11_bdes.vkm
+lib/vice/PET/x11_bdes_de.vkm
lib/vice/PET/x11_bgrs.vkm
+lib/vice/PET/x11_bgrs_de.vkm
lib/vice/PET/x11_buks.vkm
+lib/vice/PET/x11_buks_de.vkm
+lib/vice/PET/x11_bgrp.vkm
+lib/vice/PET/x11_bgrp_de.vkm
+lib/vice/PET/x11_bukp.vkm
+lib/vice/PET/x11_bukp_de.vkm
lib/vice/PLUS4/3plus1hi
lib/vice/PLUS4/3plus1lo
lib/vice/PLUS4/basic
@@ -143,6 +154,7 @@ lib/vice/PLUS4/kernal
lib/vice/PLUS4/vice.vpl
lib/vice/PLUS4/x11_pos.vkm
lib/vice/PLUS4/x11_sym.vkm
+lib/vice/PLUS4/x11_sym_de.vkm
lib/vice/PRINTER/cbm1526
lib/vice/PRINTER/mps801
lib/vice/PRINTER/mps803
@@ -161,6 +173,7 @@ lib/vice/fonts/CBM.ttf
%%NOFCCACHE%%lib/vice/fonts/fonts.dir
%%PORTDOCS%%%%DOCSDIR%%/64doc.txt
%%PORTDOCS%%%%DOCSDIR%%/BUGS
+%%PORTDOCS%%%%DOCSDIR%%/CIA-README.txt
%%PORTDOCS%%%%DOCSDIR%%/COPYING
%%PORTDOCS%%%%DOCSDIR%%/CommodoreInnovationPriceSoftware2008.jpg
%%PORTDOCS%%%%DOCSDIR%%/GP2X-Howto.txt
@@ -178,19 +191,20 @@ lib/vice/fonts/CBM.ttf
%%PORTDOCS%%%%DOCSDIR%%/ReadmeMacOSX.txt
%%PORTDOCS%%%%DOCSDIR%%/ReadmeSDL.txt
%%PORTDOCS%%%%DOCSDIR%%/TODO
+%%PORTDOCS%%%%DOCSDIR%%/VIC-Addendum.txt
+%%PORTDOCS%%%%DOCSDIR%%/VIC-Article.txt
+%%PORTDOCS%%%%DOCSDIR%%/VIC-Artikel.txt
%%PORTDOCS%%%%DOCSDIR%%/Walkthrough-Howto.txt
%%PORTDOCS%%%%DOCSDIR%%/Win32-Cygwin-HOWTO.txt
%%PORTDOCS%%%%DOCSDIR%%/Win32-Howto.txt
%%PORTDOCS%%%%DOCSDIR%%/amigaos.html
%%PORTDOCS%%%%DOCSDIR%%/beos.html
-%%PORTDOCS%%%%DOCSDIR%%/cartconv.txt
%%PORTDOCS%%%%DOCSDIR%%/cbm_basic_tokens.txt
%%PORTDOCS%%%%DOCSDIR%%/coding-guidelines.txt
%%PORTDOCS%%%%DOCSDIR%%/drive_info.txt
%%PORTDOCS%%%%DOCSDIR%%/iec-bus.txt
%%PORTDOCS%%%%DOCSDIR%%/index.html
%%PORTDOCS%%%%DOCSDIR%%/macosx.html
-%%PORTDOCS%%%%DOCSDIR%%/mon.txt
%%PORTDOCS%%%%DOCSDIR%%/new.gif
%%PORTDOCS%%%%DOCSDIR%%/openGLsync-howto.txt
%%PORTDOCS%%%%DOCSDIR%%/qnx.html
OpenPOWER on IntegriCloud