summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorkristerw <kristerw@pkgsrc.org>2002-12-14 14:59:38 +0000
committerkristerw <kristerw@pkgsrc.org>2002-12-14 14:59:38 +0000
commit148665ba3f628bc3dff3794abff8c957cb63f834 (patch)
tree9e5c7b9b011a1eb60efb0a770a2ca12b71990bfc /emulators
parentc294e628b9e70399704530b4870ad9ce11af3e99 (diff)
downloadpkgsrc-148665ba3f628bc3dff3794abff8c957cb63f834.tar.gz
Update xmame to 0.62.1 rc3 and bump PKGREVISION to 3.
Changes since PKGREVISION 2 include: - All path and directory options in fileio.c now support expansion of environment variables such as $HOME.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/xmame/Makefile11
-rw-r--r--emulators/xmame/distinfo10
-rw-r--r--emulators/xmame/patches/patch-ab158
-rw-r--r--emulators/xmame/patches/patch-ac22
-rw-r--r--emulators/xmame/patches/patch-ae17
5 files changed, 14 insertions, 204 deletions
diff --git a/emulators/xmame/Makefile b/emulators/xmame/Makefile
index b8f34fd54ab..2033dd58288 100644
--- a/emulators/xmame/Makefile
+++ b/emulators/xmame/Makefile
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.84 2002/12/08 13:09:44 kristerw Exp $
+# $NetBSD: Makefile,v 1.85 2002/12/14 14:59:38 kristerw Exp $
#
-DISTNAME= xmame-0.62.1-rc1
+DISTNAME= xmame-0.62.1-rc3
PKGNAME= xmame-0.62.1
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= emulators games x11
-MASTER_SITES= http://x.mame.net/download/ \
- http://roms2.mame.dk/emu/
+MASTER_SITES= http://x.mame.net/download/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= kristerw@netbsd.org
@@ -86,7 +85,7 @@ post-configure:
cd ${WRKSRC}/doc; \
${SED} -e "s|@ROMPATH@|${ROMPATH}|g" \
-e "s|@SPOOLDIR@|${SPOOLDIR}|g" \
- xmamerc.dist > ${TARGET}rc
+ ${TARGET}rc.dist > ${TARGET}rc
.if !empty(MAKE_FLAGS:M*USB*)
${LN} -fs /usr/include/usb.h ${BUILDLINK_DIR}/include
for FILE in /usr/lib/libusb*; do \
diff --git a/emulators/xmame/distinfo b/emulators/xmame/distinfo
index 1e8e861de02..33525e911f2 100644
--- a/emulators/xmame/distinfo
+++ b/emulators/xmame/distinfo
@@ -1,9 +1,7 @@
-$NetBSD: distinfo,v 1.28 2002/12/08 13:09:45 kristerw Exp $
+$NetBSD: distinfo,v 1.29 2002/12/14 14:59:38 kristerw Exp $
-SHA1 (xmame-0.62.1-rc1.tar.bz2) = 9f05a2a4112f0e7e4e64d374fba99079780df2d8
-Size (xmame-0.62.1-rc1.tar.bz2) = 6115463 bytes
+SHA1 (xmame-0.62.1-rc3.tar.bz2) = efea14b36573d89dd47634872cfe38efa57d668d
+Size (xmame-0.62.1-rc3.tar.bz2) = 8322423 bytes
SHA1 (patch-aa) = be131167296c50e3aea55da46288dfc16bf3ad8e
-SHA1 (patch-ab) = 0d44d698a37fa1a1991fa71b1d9f4a8d0393c00a
-SHA1 (patch-ac) = f13c5f8aad547270df52206da8cc8728b5dc4ac0
SHA1 (patch-ad) = e389102fc29bd7c40711cfd493bad902ee102ae2
-SHA1 (patch-ae) = cb851b96ff0911a872f7eb07abf24aec8ad9dae2
+SHA1 (patch-ae) = 3ede9f4b71168e41205fc30c68a9327fbe2f7054
diff --git a/emulators/xmame/patches/patch-ab b/emulators/xmame/patches/patch-ab
deleted file mode 100644
index 80d23bf7a7b..00000000000
--- a/emulators/xmame/patches/patch-ab
+++ /dev/null
@@ -1,158 +0,0 @@
-$NetBSD: patch-ab,v 1.15 2002/12/08 13:09:46 kristerw Exp $
---- src/unix/video.c.orig 2002-12-01 11:26:42.000000000 -0700
-+++ src/unix/video.c 2002-12-07 15:08:00.000000000 -0700
-@@ -48,6 +48,10 @@
- static int video_ror = 0;
- static int video_rol = 0;
-
-+static int video_width;
-+static int video_height;
-+static int video_depth;
-+
- static struct mame_bitmap *adjusted_bitmap = NULL;
-
-
-@@ -351,7 +355,7 @@
- options.use_artwork = ARTWORK_USE_NONE;
- }
-
--void orient_rect(struct rectangle *rect, struct mame_bitmap *bitmap)
-+void orient_rect(struct rectangle *rect)
- {
- int temp;
-
-@@ -370,16 +374,16 @@
- /* apply X flip */
- if (blit_flipx)
- {
-- temp = bitmap->width - rect->min_x - 1;
-- rect->min_x = bitmap->width - rect->max_x - 1;
-+ temp = video_width - rect->min_x - 1;
-+ rect->min_x = video_width - rect->max_x - 1;
- rect->max_x = temp;
- }
-
- /* apply Y flip */
- if (blit_flipy)
- {
-- temp = bitmap->height - rect->min_y - 1;
-- rect->min_y = bitmap->height - rect->max_y - 1;
-+ temp = video_height - rect->min_y - 1;
-+ rect->min_y = video_height - rect->max_y - 1;
- rect->max_y = temp;
- }
- }
-@@ -417,17 +421,18 @@
- normal_widthscale *= 2;
- }
- }
--
-+
- if (blit_swapxy)
- {
-- visual_width = params->height;
-- visual_height = params->width;
-+ visual_width = video_width = params->height;
-+ visual_height = video_height = params->width;
- }
- else
- {
-- visual_width = params->width;
-- visual_height = params->height;
-+ visual_width = video_width = params->width;
-+ visual_height = video_height = params->height;
- }
-+ video_depth = params->depth;
-
- if (!blit_swapxy)
- aspect_ratio = (double)params->aspect_x
-@@ -524,9 +529,8 @@
-
- if (blit_flipx || blit_flipy || blit_swapxy)
- {
-- bitmap_free(adjusted_bitmap);
-- adjusted_bitmap = bitmap_alloc_depth(visual_width,
-- visual_height, params->depth);
-+ adjusted_bitmap = bitmap_alloc_depth(video_width,
-+ video_height, video_depth);
- if (!adjusted_bitmap)
- return -1;
- }
-@@ -626,21 +630,21 @@
-
- static void update_visible_area(struct mame_display *display)
- {
-+ normal_visual = display->game_visible_area;
-+
- if (blit_swapxy)
- {
-- normal_visual.min_x = display->game_visible_area.min_y;
-- normal_visual.max_x = display->game_visible_area.max_y;
-- normal_visual.min_y = display->game_visible_area.min_x;
-- normal_visual.max_y = display->game_visible_area.max_x;
-+ video_width = display->game_bitmap->height;
-+ video_height = display->game_bitmap->width;
- }
- else
- {
-- normal_visual.min_x = display->game_visible_area.min_x;
-- normal_visual.max_x = display->game_visible_area.max_x;
-- normal_visual.min_y = display->game_visible_area.min_y;
-- normal_visual.max_y = display->game_visible_area.max_y;
-+ video_width = display->game_bitmap->width;
-+ video_height = display->game_bitmap->height;
- }
-
-+ orient_rect(&normal_visual);
-+
- /*
- * round to 8, since the new dirty code works with 8x8 blocks,
- * and we need to round to sizeof(long) for the long copies anyway
-@@ -656,6 +660,17 @@
- display->game_visible_area.min_y,
- display->game_visible_area.max_x,
- display->game_visible_area.max_y);
-+
-+ /*
-+ * Allocate a new destination bitmap for the code that handles
-+ * rotation/flipping.
-+ */
-+ if (blit_flipx || blit_flipy || blit_swapxy)
-+ {
-+ bitmap_free(adjusted_bitmap);
-+ adjusted_bitmap = bitmap_alloc_depth(video_width,
-+ video_height, video_depth);
-+ }
- }
-
- static void update_palette(struct mame_display *display, int force_dirty)
-@@ -692,7 +707,6 @@
- static void update_debug_display(struct mame_display *display)
- {
- struct sysdep_palette_struct *backup_palette = current_palette;
-- struct rectangle backup_updatebounds = updatebounds;
-
- if (!debug_palette)
- {
-@@ -714,10 +728,8 @@
- }
-
- current_palette = debug_palette;
-- updatebounds = debug_visual;
- sysdep_update_display(display->debug_bitmap);
- current_palette = backup_palette;
-- updatebounds = backup_updatebounds;
- }
-
- static void osd_free_colors(void)
-@@ -988,8 +1000,8 @@
- {
- int x, y;
- int bx1, bx2, by1, by2;
--
-- orient_rect(&bounds, destbitmap);
-+
-+ orient_rect(&bounds);
-
- bx1 = bounds.min_x;
- bx2 = bounds.max_x;
diff --git a/emulators/xmame/patches/patch-ac b/emulators/xmame/patches/patch-ac
deleted file mode 100644
index bada04ce8a1..00000000000
--- a/emulators/xmame/patches/patch-ac
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ac,v 1.8 2002/12/08 13:09:47 kristerw Exp $
---- src/unix/video-drivers/x11.c.orig 2002-12-01 15:12:12.000000000 -0700
-+++ src/unix/video-drivers/x11.c 2002-12-07 15:08:56.000000000 -0700
-@@ -16,9 +16,6 @@
- #include "input.h"
- #include "keyboard.h"
-
--#ifdef USE_XV
--int use_xv = 0; /* use xv extension if available */
--#endif
- #ifdef USE_HWSCALE
- long hwscale_redmask;
- long hwscale_greenmask;
-@@ -175,7 +172,7 @@
- return OSD_NOT_OK;
- }
- #ifdef USE_HWSCALE
-- if(use_xv)
-+ if(use_hwscale)
- {
- display_palette_info.red_mask = hwscale_redmask;
- display_palette_info.green_mask = hwscale_greenmask;
diff --git a/emulators/xmame/patches/patch-ae b/emulators/xmame/patches/patch-ae
index 14e2a7f86ab..f04180c2292 100644
--- a/emulators/xmame/patches/patch-ae
+++ b/emulators/xmame/patches/patch-ae
@@ -1,7 +1,7 @@
-$NetBSD: patch-ae,v 1.16 2002/12/02 00:14:34 kristerw Exp $
---- doc/xmamerc.dist.orig Fri Nov 29 01:45:12 2002
-+++ doc/xmamerc.dist Mon Dec 2 00:42:16 2002
-@@ -69,20 +69,19 @@
+$NetBSD: patch-ae,v 1.17 2002/12/14 14:59:39 kristerw Exp $
+--- doc/xmamerc.dist.orig Mon Dec 9 03:15:24 2002
++++ doc/xmamerc.dist Sat Dec 14 14:00:15 2002
+@@ -69,13 +69,13 @@
mouse 1
### Fileio Related ###
@@ -13,7 +13,7 @@ $NetBSD: patch-ae,v 1.16 2002/12/02 00:14:34 kristerw Exp $
-cheat_file /usr/games/lib/xmame/cheat.dat
-hiscore_file /usr/games/lib/xmame/hiscore.dat
-history_file /usr/games/lib/xmame/history.dat
--mameinfo_fie /usr/games/lib/xmame/mameinfo.dat
+-mameinfo_file /usr/games/lib/xmame/mameinfo.dat
+cheat_file @SPOOLDIR@/cheat.dat
+hiscore_file @SPOOLDIR@/hiscore.dat
+history_file @SPOOLDIR@/history.dat
@@ -21,10 +21,3 @@ $NetBSD: patch-ae,v 1.16 2002/12/02 00:14:34 kristerw Exp $
### Mame Related ###
defaultgame pacman
- language english
- fuzzycmp 1
- cheat 0
--debug 0
-
- ### Frontend Related ###
- clones 1