mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-08-09 18:25:33 +00:00
- updated documentation
- building RPMs works now
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
Summary: A free, portable Mac II emulator
|
Summary: A free, portable Mac II emulator
|
||||||
Name: BasiliskII
|
Name: BasiliskII
|
||||||
Version: 0.7
|
Version: 0.7
|
||||||
Release: 1
|
Release: 2
|
||||||
URL: http://www.uni-mainz.de/~bauec002/B2Main.html
|
URL: http://www.uni-mainz.de/~bauec002/B2Main.html
|
||||||
Source: BasiliskII_src_03101999.tar.gz
|
Source: BasiliskII_src_03101999.tar.gz
|
||||||
Copyright: GPL
|
Copyright: GPL
|
||||||
@@ -45,8 +45,3 @@ make install
|
|||||||
/usr/X11R6/bin/BasiliskII
|
/usr/X11R6/bin/BasiliskII
|
||||||
/usr/man/man1/BasiliskII.1
|
/usr/man/man1/BasiliskII.1
|
||||||
/usr/share/BasiliskII/keycodes
|
/usr/share/BasiliskII/keycodes
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Fri Jul 23 1999 Roman Niewiarowski <newrom@pasjo.net.pl>
|
|
||||||
[0.6-1]
|
|
||||||
- First rpm release
|
|
||||||
|
@@ -1,8 +1,12 @@
|
|||||||
V0.7 (alpha)
|
V0.7 (alpha)
|
||||||
- Source tree imported into CVS
|
- Source tree imported into CVS
|
||||||
|
- Added BasiliskII.spec file and top-level Makefile to simplify
|
||||||
|
making distributions [with assistance from Roman Niewiarowski]
|
||||||
- Unix: "basilisk_ii_keycodes" renamed to "keycodes", default
|
- Unix: "basilisk_ii_keycodes" renamed to "keycodes", default
|
||||||
location of keycodes file is now /usr/local/share/BasiliskII/keycodes
|
location of keycodes file is now /usr/local/share/BasiliskII/keycodes
|
||||||
- Unix: improved the install target
|
- Unix: improved the install target, added uninstall target
|
||||||
|
- Unix/Linux/NetDriver: removed MAKEDEV, functionality now included
|
||||||
|
in Makefile ("make dev")
|
||||||
- Unix/sys_unix.cpp: Sys_open() checks whether an HFS volume is currently
|
- Unix/sys_unix.cpp: Sys_open() checks whether an HFS volume is currently
|
||||||
mounted under Linux and tries to unmount it
|
mounted under Linux and tries to unmount it
|
||||||
- Unix/sys_unix.cpp: implemented SysAddDiskPrefs() for Linux (scans
|
- Unix/sys_unix.cpp: implemented SysAddDiskPrefs() for Linux (scans
|
||||||
@@ -10,6 +14,11 @@ V0.7 (alpha)
|
|||||||
- Unix/sys_unix.cpp: implemented Sys(Prevent/Allow)Removal() [Ryan Cumming]
|
- Unix/sys_unix.cpp: implemented Sys(Prevent/Allow)Removal() [Ryan Cumming]
|
||||||
- Unix/main_unix.cpp: added call to gtk_set_locale() before gtk_init()
|
- Unix/main_unix.cpp: added call to gtk_set_locale() before gtk_init()
|
||||||
[Toshimitsu Tanaka]
|
[Toshimitsu Tanaka]
|
||||||
|
- Unix/video_x.cpp: "dga" screen preferences now takes width and
|
||||||
|
height as parameters (e.g. dga/640/480), like "win" [Pablo Averbuj]
|
||||||
|
- Unix/video_x.cpp: Caps Lock behaves as expected [Pablo Averbuj]
|
||||||
|
- Unix/prefs_editor_gtk.cpp: made the window width/height widgets
|
||||||
|
comboboxes providing some useful defaults
|
||||||
|
|
||||||
V0.7 (alpha) - 25.Jul.1999
|
V0.7 (alpha) - 25.Jul.1999
|
||||||
- with 32-bit clean ROMs, the CPU type is now reported as a 68030
|
- with 32-bit clean ROMs, the CPU type is now reported as a 68030
|
||||||
|
@@ -69,13 +69,13 @@ Unix:
|
|||||||
To use Ethernet networking under Linux, you either have to configure your
|
To use Ethernet networking under Linux, you either have to configure your
|
||||||
kernel for ethertap support or make and install the "sheep_net" driver:
|
kernel for ethertap support or make and install the "sheep_net" driver:
|
||||||
|
|
||||||
cd src/Unix
|
|
||||||
make modules
|
make modules
|
||||||
|
|
||||||
This should produce a kernel module "sheep_net.o" in the "Linux/NetDriver"
|
This should produce a kernel module "sheep_net.o" in the "Linux/NetDriver"
|
||||||
directory. Now su root and say
|
directory. Now su root and say
|
||||||
|
|
||||||
./MAKEDEV
|
cd Linux/NetDriver
|
||||||
|
make dev
|
||||||
/sbin/insmod sheep_net.o
|
/sbin/insmod sheep_net.o
|
||||||
|
|
||||||
This will install the device node "/dev/sheep_net" and load the driver.
|
This will install the device node "/dev/sheep_net" and load the driver.
|
||||||
|
@@ -1,15 +1,19 @@
|
|||||||
# Makefile for creating Basilisk II distributions
|
# Makefile for creating Basilisk II distributions
|
||||||
# Written in 1999 by Christian Bauer <Christian.Bauer@uni-mainz.de>
|
# Written in 1999 by Christian Bauer <Christian.Bauer@uni-mainz.de>
|
||||||
|
|
||||||
VERSION = $(shell grep '^Version' <BasiliskII.spec | sed 's/Version: *//')
|
VERSION = $(shell sed <BasiliskII.spec -n '/^Version: */s///p')
|
||||||
|
RELEASE = $(shell sed <BasiliskII.spec -n '/^Release: */s///p')
|
||||||
|
|
||||||
SRCARCHIVE = $(shell date +BasiliskII_src_%d%m%Y.tar.gz)
|
SRCARCHIVE = $(shell date +BasiliskII_src_%d%m%Y.tar.gz)
|
||||||
AMIGAARCHIVE = $(shell date +BasiliskII_amiga_%d%m%Y.lha)
|
SRCRPM = BasiliskII-$(VERSION)-$(RELEASE).src.rpm
|
||||||
BEOSPPCARCHIVE = $(shell date +BasiliskII_beos_ppc_%d%m%Y.zip)
|
I386RPM = BasiliskII-$(VERSION)-$(RELEASE).i386.rpm
|
||||||
BEOSX86ARCHIVE = $(shell date +BasiliskII_beos_x86_%d%m%Y.zip)
|
AMIGAARCHIVE = BasiliskII-$(VERSION)-$(RELEASE).amiga.lha
|
||||||
|
BEOSPPCARCHIVE = BasiliskII-$(VERSION)-$(RELEASE).beosppc.zip
|
||||||
|
BEOSX86ARCHIVE = BasiliskII-$(VERSION)-$(RELEASE).beosx86.zip
|
||||||
|
|
||||||
BUILDDIR = /tmp/build
|
BUILDDIR = /tmp/build
|
||||||
DOCS = ChangeLog COPYING INSTALL README TECH TODO
|
RPMDIR = /usr/src/redhat
|
||||||
|
DOCS = $(shell sed <BasiliskII.spec -n '/^\%doc */s///p')
|
||||||
SRCS = src
|
SRCS = src
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@@ -22,11 +26,16 @@ default:
|
|||||||
help:
|
help:
|
||||||
@echo "The following targets are available:"
|
@echo "The following targets are available:"
|
||||||
@echo " tarball source tarball ($(SRCARCHIVE))"
|
@echo " tarball source tarball ($(SRCARCHIVE))"
|
||||||
@echo " rpm source and binary RPMs"
|
@echo " rpm source and binary RPMs ($(SRCRPM) and $(I386RPM))"
|
||||||
@echo " amiga AmigaOS binary archive ($(AMIGAARCHIVE))"
|
@echo " amiga AmigaOS binary archive ($(AMIGAARCHIVE))"
|
||||||
@echo " beosppc BeOS/ppc binary archive ($(BEOSPPCARCHIVE))"
|
@echo " beosppc BeOS/ppc binary archive ($(BEOSPPCARCHIVE))"
|
||||||
@echo " beosx86 BeOS/x86 binary archive ($(BEOSX86ARCHIVE))"
|
@echo " beosx86 BeOS/x86 binary archive ($(BEOSX86ARCHIVE))"
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-rm -f $(SRCARCHIVE)
|
||||||
|
-rm -f $(SRCRPM)
|
||||||
|
-rm -f $(AMIGAARCHIVE) $(BEOSPPCARCHIVE) $(BEOSX86ARCHIVE)
|
||||||
|
|
||||||
#
|
#
|
||||||
# Source tarball
|
# Source tarball
|
||||||
#
|
#
|
||||||
@@ -43,13 +52,21 @@ $(SRCARCHIVE): $(SRCS) $(DOCS)
|
|||||||
rm -rf $(BUILDDIR)
|
rm -rf $(BUILDDIR)
|
||||||
|
|
||||||
#
|
#
|
||||||
# RPMs
|
# RPMs (source and i386 binary)
|
||||||
#
|
#
|
||||||
rpm: /usr/src/redhat/SOURCES/$(SRCARCHIVE) BasiliskII.spec
|
rpm: $(SRCRPM) $(I386RPM)
|
||||||
|
|
||||||
|
$(RPMDIR)/SOURCES/$(SRCARCHIVE): $(SRCARCHIVE)
|
||||||
|
cp $(SRCARCHIVE) $(RPMDIR)/SOURCES
|
||||||
|
|
||||||
|
$(RPMDIR)/SRPMS/$(SRCRPM) $(RPMDIR)/RPMS/i386/$(I386RPM): $(RPMDIR)/SOURCES/$(SRCARCHIVE) BasiliskII.spec
|
||||||
rpm -ba BasiliskII.spec
|
rpm -ba BasiliskII.spec
|
||||||
|
|
||||||
/usr/src/redhat/SOURCES/$(SRCARCHIVE): $(SRCARCHIVE)
|
$(SRCRPM): $(RPMDIR)/SRPMS/$(SRCRPM)
|
||||||
cp $(SRCARCHIVE) /usr/src/redhat/SOURCES
|
cp $(RPMDIR)/SRPMS/$(SRCRPM) .
|
||||||
|
|
||||||
|
$(I386RPM): $(RPMDIR)/RPMS/i386/$(I386RPM)
|
||||||
|
cp $(RPMDIR)/RPMS/i386/$(I386RPM) .
|
||||||
|
|
||||||
#
|
#
|
||||||
# Binary archive for AmigaOS
|
# Binary archive for AmigaOS
|
||||||
|
@@ -198,11 +198,13 @@ screen <video mode>
|
|||||||
Color display in an X11 window of the given size. The color depth
|
Color display in an X11 window of the given size. The color depth
|
||||||
(8/15/24 bit) depends on the depth of the underlying X11 screen.
|
(8/15/24 bit) depends on the depth of the underlying X11 screen.
|
||||||
This is the default.
|
This is the default.
|
||||||
dga
|
dga/<width>/<height>
|
||||||
Full-screen display using the X11 DGA extensions. The color depth
|
Full-screen display using the X11 DGA extensions. The color depth
|
||||||
(8/15/24 bit) depends on the depth of the underlying X11 screen.
|
(8/15/24 bit) depends on the depth of the underlying X11 screen.
|
||||||
For DGA to work, Basilisk II must be compiled with DGA support
|
"width" and "height" specify the maximum width/height to use.
|
||||||
enabled (selectable in the configure script).
|
Saying "dga/0/0" means "complete screen". For DGA to work, Basilisk II
|
||||||
|
must be compiled with DGA support enabled (selectable in the configure
|
||||||
|
script).
|
||||||
|
|
||||||
AmigaOS:
|
AmigaOS:
|
||||||
The "video mode" is one of the following:
|
The "video mode" is one of the following:
|
||||||
|
Reference in New Issue
Block a user