diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2006-08-19 03:38:42 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2006-08-19 03:38:42 +0000 |
commit | 2d62f9be28c6a0ad72de5b53bff94e37ec6f6c02 (patch) | |
tree | cc506c24aeb1b86ac69bb6d92f12e164bdbba8f2 /emulators | |
parent | b3d9f7973ad6563c568858766cdf13343019fc30 (diff) | |
download | ports-2d62f9be28c6a0ad72de5b53bff94e37ec6f6c02.tar.gz ports-2d62f9be28c6a0ad72de5b53bff94e37ec6f6c02.zip |
Notes
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/quasi88/Makefile | 3 | ||||
-rw-r--r-- | emulators/quasi88/distinfo | 6 | ||||
-rw-r--r-- | emulators/quasi88/files/extra-patch-aa | 12 | ||||
-rw-r--r-- | emulators/quasi88/files/patch-arch | 101 |
4 files changed, 111 insertions, 11 deletions
diff --git a/emulators/quasi88/Makefile b/emulators/quasi88/Makefile index 97d190ad182e..45e67bf021b8 100644 --- a/emulators/quasi88/Makefile +++ b/emulators/quasi88/Makefile @@ -6,8 +6,7 @@ # PORTNAME= quasi88 -PORTVERSION= 0.5.4 -PORTREVISION= 1 +PORTVERSION= 0.5.5 CATEGORIES= emulators MASTER_SITES= http://www.117.ne.jp/~show/pc8801/ EXTRACT_SUFX= .tgz diff --git a/emulators/quasi88/distinfo b/emulators/quasi88/distinfo index 9b3e478aec88..0555d7132ed2 100644 --- a/emulators/quasi88/distinfo +++ b/emulators/quasi88/distinfo @@ -1,3 +1,3 @@ -MD5 (quasi88-0.5.4.tgz) = 4a382554084b67da715c52c75fdd785c -SHA256 (quasi88-0.5.4.tgz) = 9fc645b96c3a89b93e004be5d2a4b48c0295ea9e06d6e28e7ff0a39bd4dfe8ae -SIZE (quasi88-0.5.4.tgz) = 562622 +MD5 (quasi88-0.5.5.tgz) = 23e3e09484179031a84550bc6b9d39df +SHA256 (quasi88-0.5.5.tgz) = 0e85e04fdd17e8a332fa65b6ecf87bb932aa3ad90dd1672332d3288a58501569 +SIZE (quasi88-0.5.5.tgz) = 577091 diff --git a/emulators/quasi88/files/extra-patch-aa b/emulators/quasi88/files/extra-patch-aa index 28764d0a6ac7..4f4055738923 100644 --- a/emulators/quasi88/files/extra-patch-aa +++ b/emulators/quasi88/files/extra-patch-aa @@ -4,17 +4,17 @@ # 動作確認が取れているのは、freebsd/linux のみです #---------------------- FreeBSD --# ARCH = freebsd -+ARCH = freebsd +-# OSARCH = freebsd ++OSARCH = freebsd #---------------------- Linux - # ARCH = linux + # OSARCH = linux #---------------------- NetBSD @@ -166,7 +166,7 @@ #---------------------- BeOS on Intel - # ARCH = beos + # OSARCH = beos #---------------------- generic unix, no sound --ARCH = generic -+# ARCH = generic +-OSARCH = generic ++# OSARCH = generic diff --git a/emulators/quasi88/files/patch-arch b/emulators/quasi88/files/patch-arch new file mode 100644 index 000000000000..4b9c5eb0b252 --- /dev/null +++ b/emulators/quasi88/files/patch-arch @@ -0,0 +1,101 @@ +--- Makefile.orig Thu Aug 17 17:58:17 2006 ++++ Makefile Thu Aug 17 17:59:12 2006 +@@ -142,31 +142,31 @@ + # 動作確認が取れているのは、freebsd/linux のみです + + #---------------------- FreeBSD +-# ARCH = freebsd ++# OSARCH = freebsd + #---------------------- Linux +-# ARCH = linux ++# OSARCH = linux + #---------------------- NetBSD +-# ARCH = netbsd ++# OSARCH = netbsd + #---------------------- OpenBSD +-# ARCH = openbsd ++# OSARCH = openbsd + #---------------------- Solaris / SunOS +-# ARCH = solaris ++# OSARCH = solaris + #---------------------- QNX Neutrino (QNX4\QNX6) +-# ARCH = nto ++# OSARCH = nto + #---------------------- OpenStep on NeXT systems +-# ARCH = next ++# OSARCH = next + #---------------------- OpenStep on Apple systems (Cocoa) +-# ARCH = macosx ++# OSARCH = macosx + #---------------------- IRIX ( with sound requires the dmedia package ) (*) +-# ARCH = irix ++# OSARCH = irix + #---------------------- IRIX ( with sound using the new al package) (*) +-# ARCH = irix_al ++# OSARCH = irix_al + #---------------------- aix ( with sound, you'll need the UMS and SOM lpp's installed ( under AIX4 )) +-# ARCH = aix ++# OSARCH = aix + #---------------------- BeOS on Intel +-# ARCH = beos ++# OSARCH = beos + #---------------------- generic unix, no sound +-ARCH = generic ++OSARCH = generic + + + +@@ -306,7 +306,7 @@ + ####################################################################### + # サウンドが有効になっている場合の各種定義 + ####################################################################### +-ifneq ($(ARCH),generic) ++ifneq ($(OSARCH),generic) + + # + # サウンド有効時の、追加オブジェクト ( OS依存部 + 共用部 ) +@@ -346,7 +346,7 @@ + #these need to be converted to plugins first + #SOUND_OBJS.aix = $(DSP_DIR)/aix.o + +-SOUND_OBJS = $(SOUND_OBJS.$(ARCH)) \ ++SOUND_OBJS = $(SOUND_OBJS.$(OSARCH)) \ + $(DSP_DIR)/esound.o \ + $(DSP_DIR)/artssound.o\ + $(DSP_DIR)/arts.o \ +@@ -391,7 +391,7 @@ + #these need to be converted to plugins first + #CFLAGS.aix = -DSYSDEP_DSP_AIX -I/usr/include/UMS -I/usr/lpp/som/include + +-SOUND_OPT = -DUSE_SOUND $(CFLAGS.$(ARCH)) -I$(SRCDIR)/$(QUASI_DIR) -I$(SRCDIR)/$(SRC_DIR) -I$(SRCDIR)/$(UNIX_DIR) -I$(SRCDIR)/$(SOUND_DIR) -I$(SRCDIR)/$(SYSDEP_DIR) -I$(SRCDIR)/$(DSP_DIR) -I$(SRCDIR)/$(MIXER_DIR) ++SOUND_OPT = -DUSE_SOUND $(CFLAGS.$(OSARCH)) -I$(SRCDIR)/$(QUASI_DIR) -I$(SRCDIR)/$(SRC_DIR) -I$(SRCDIR)/$(UNIX_DIR) -I$(SRCDIR)/$(SOUND_DIR) -I$(SRCDIR)/$(SYSDEP_DIR) -I$(SRCDIR)/$(DSP_DIR) -I$(SRCDIR)/$(MIXER_DIR) + + + # +@@ -408,7 +408,7 @@ + LIBS.nto = -lsocket -lasound + LIBS.beos = `$(SDL_CONFIG) --libs` + +-SOUND_LIB = -lm $(LIBS.$(ARCH)) ++SOUND_LIB = -lm $(LIBS.$(OSARCH)) + + + # +@@ -495,7 +495,7 @@ + -DBIT32='$(TYPE_SPECIFIER_OF_32BIT)' $(JOYSTICK) $(IGNORE_OPT) \ + -DQ_TITLE='"$(NAME)"' -DQ_VERSION='"$(VERSION)"' $(SELECT) \ + $(MONITOR) $(SSS_CMD) $(USELOCALE) $(KEYBOARD_BUG) $(USE_FMGEN) \ +- -D__ARCH_$(ARCH) -DPI=M_PI $(SOUND_OPT) $(CONFIG) ++ -D__ARCH_$(OSARCH) -DPI=M_PI $(SOUND_OPT) $(CONFIG) + + CXXFLAGS += -Isrc $(X11INC) $(USEINLINE) \ + -DROM_DIR='"$(ROMDIR)"' -DDISK_DIR='"$(DISKDIR)"' \ +@@ -503,7 +503,7 @@ + -DBIT32='$(TYPE_SPECIFIER_OF_32BIT)' $(JOYSTICK) $(IGNORE_OPT) \ + -DQ_TITLE='"$(NAME)"' -DQ_VERSION='"$(VERSION)"' $(SELECT) \ + $(MONITOR) $(SSS_CMD) $(USELOCALE) $(KEYBOARD_BUG) $(USE_FMGEN) \ +- -D__ARCH_$(ARCH) -DPI=M_PI $(SOUND_OPT) $(CONFIG) ++ -D__ARCH_$(OSARCH) -DPI=M_PI $(SOUND_OPT) $(CONFIG) + + LIBS = $(X11LIB) -lX11 -lXext $(DGA_LIB) $(READLINELIB) $(SOUND_LIB) $(MY_LIBS) + |