- improved spec file

This commit is contained in:
cebix 1999-12-22 17:24:59 +00:00
parent 92be3b6781
commit 01dae2362f
2 changed files with 31 additions and 12 deletions

View File

@ -1,12 +1,19 @@
Summary: A free, portable Mac II emulator # Note that this is NOT a relocatable package
Name: BasiliskII %define ver 0.8
Version: 0.8 %define rel 1
Release: 1 %define prefix /usr
URL: http://www.uni-mainz.de/~bauec002/B2Main.html
Source: BasiliskII_src_02111999.tar.gz Summary: A free, portable Mac II emulator
Name: BasiliskII
Version: %ver
Release: %rel
Copyright: GPL Copyright: GPL
Group: Applications/Emulators Group: Applications/Emulators
Source: BasiliskII_src_02111999.tar.gz
BuildRoot: /tmp/BasiliskII-%{ver}-root
Packager: Christian Bauer <Christian.Bauer@uni-mainz.de> Packager: Christian Bauer <Christian.Bauer@uni-mainz.de>
URL: http://www.uni-mainz.de/~bauec002/B2Main.html
Docdir: %{prefix}/doc
%description %description
Basilisk II is a free, portable, Open Source 68k Mac emulator. It requires Basilisk II is a free, portable, Open Source 68k Mac emulator. It requires
@ -35,15 +42,26 @@ Some features of Basilisk II:
%build %build
cd src/Unix cd src/Unix
./configure --prefix=/usr CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS" if [ "$SMP" != "" ]; then
(make "MAKE=make -k -j $SMP"; exit 0)
make
else
make
fi
%install %install
rm -rf $RPM_BUILD_ROOT
cd src/Unix cd src/Unix
make install make prefix=$RPM_BUILD_ROOT%{prefix} install
%clean
rm -rf $RPM_BUILD_ROOT
%files %files
%defattr(-, root, root)
%doc ChangeLog COPYING INSTALL README TECH TODO %doc ChangeLog COPYING INSTALL README TECH TODO
/usr/bin/BasiliskII /usr/bin/BasiliskII
/usr/man/man1/BasiliskII.1 /usr/man/man1/BasiliskII.1
/usr/share/BasiliskII/keycodes /usr/share/BasiliskII/keycodes
/usr/share/BasiliskII/fbdevices

View File

@ -1,9 +1,10 @@
V0.8 - V0.8 (snapshot) - 22.Dec.1999
- imported UAE CPU 0.8.10 changes - imported UAE CPU 0.8.10 changes
- new utility functions Mac_memset, Mac2Host_memcpy, Host2Mac_memcpu - new utility functions Mac_memset, Mac2Host_memcpy, Host2Mac_memcpu
and Mac2Mac_memcpy and Mac2Mac_memcpy
- extfs.cpp: fixed bug in fs_rename() and fs_cat_move() (auxiliary - extfs.cpp: fixed bug in fs_rename() and fs_cat_move() (auxiliary
IOParam block was not in Mac address space) IOParam block was not in Mac address space and FSItem parent IDs
didn't get swapped) [Lauri Pesonen]
- extfs.cpp: several fixes [Lauri Pesonen] - extfs.cpp: several fixes [Lauri Pesonen]
- some provisions for using UAE CPU compiler (doesn't work yet) - some provisions for using UAE CPU compiler (doesn't work yet)
- video_x.cpp: XFree86 VidMode extension is used to switch modes - video_x.cpp: XFree86 VidMode extension is used to switch modes