]> git.pld-linux.org Git - packages/BasiliskII.git/blob - BasiliskII.spec
- patch which allow "manke install DESTDIR=</install/prefix>".
[packages/BasiliskII.git] / BasiliskII.spec
1 Summary:   A software emulation of the Aplle Macintosh
2 Summary(pl): Programowy emulator komputera Macintosh
3 Name:      BasiliskII
4 Version:   0.7
5 Release:   1
6 URL:       http://www.uni-mainz.de/~bauec002/B2Main.html
7 Source:    BasiliskII_src_250799.tar.gz
8 Copyright: GPL
9 Group:     Applications/Emulators
10 Group(pl):  Aplikacje/Emulatory
11 BuildRoot: /tmp/%{name}-%{version}-root
12
13 %description
14 BasiliskII is a software emulation of Aple Macintosh system
15 hardware, which enables you to run most available Mac software.  Since
16 it is a software emulation, no extra or special hardware is needed.
17 BasiliskII can be run with MacOS 7.X or 8.X (but 7.0.0 is not recommended)
18 ROM file are not included in this archive, You need a really mac 68k
19 Warning!!! This is the alpha release!!!
20
21 %description -l pl
22 BasiliskII jest programowym emulatorem komputera Aplle Macintosh, pozwal±jacym na 
23 uruchomienie wiêkszosci aplikacji MacOSa. Emulacja przeprowadzana jest programowo wiêc 
24 nie jest konieczne posiadanie dodatkowego sprzêtu. 
25 BasiliskII mo¿e pracowaæ z MacOSem 7.X lub 8.X (aczkolwiek 7.0.0 nie jest polecany)
26 Uwaga!!! Program jest w stadium alfa!!!!
27
28 %prep
29 %setup -n %{name}
30
31 %build
32 cd src/Unix
33 CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS="$RPM_OPT_FLAGS" CPPFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr
34
35 make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
36
37 %install
38 rm -rf $RPM_BUILD_ROOT
39
40 install -d $RPM_BUILD_ROOT/usr/lib/BasiliskII/Linux
41 install -d $RPM_BUILD_ROOT/usr/X11R6/bin
42
43 install -m755 -s src/Unix/BasiliskII $RPM_BUILD_ROOT/usr/X11R6/bin
44
45 cp -R src/Unix/Linux/* $RPM_BUILD_ROOT/usr/lib/BasiliskII/Linux
46 mkdir docs
47 cp CHANGES COPYING README TECH TODO docs
48 %clean
49 rm -rf $RPM_BUILD_ROOT
50
51 %files
52 %defattr(-,root,root)
53 %doc docs/*
54 /usr/lib/BasiliskII
55 /usr/X11R6/bin/*
56
57 %changelog
58 * Wed Jul 28 1999 Roman Niewiarowski <newrom@pasjo.net.pl>
59   [0.7-1]
60 -  with 32-bit clean ROMs, the CPU type is now reported as a 68030
61           (for those OpenTransport fans :-)
62 - added new prefs item "nosound" to disable sound output
63 - sound output implemented for BeOS, Linux, Solaris and AmigaOS (requires Sound Manager 3.x)
64 - dummy/audio_dummy.cpp: created
65 - dummy/prefs_dummy.cpp: created
66 - dummy/xpram_dummy.cpp: created
67 - macos_util.cpp: added FileDiskLayout()
68 - video.cpp: removed useless BlankMousePointer flag
69 - uae_cpu: updated to UAE 0.8.9
70 - uae_cpu/gencpu.c: fixed bug in CAS2, OpenTransport works now
71 - Unix: moved Linux- and FreeBSD-specific files to their respective directories
72 - Unix: added 64-bit data types (needed by timer_unix.cpp)
73 - Unix: added keyboard translation method using raw keycodes instead of keysyms (controlled by "keycodes" and "keycodefile" prefs items) which doesn't depend on the selected keymap
74 - Unix: when running as root, Basilisk II tries to assign real-time priorities to some threads
75 - Unix: calls to nanosleep() protected by autoconf define
76 - Unix/main_unix.cpp: tick thread replaced by POSIX.4 timer when possible
77 - Unix/timer_unix.cpp: uses POSIX.4 timing facilities when possible
78 - Unix/video_x.cpp: all X calls during emulation are now done from the redraw thread which is also active in DGA mode; as a result, XLockServer()/XUnlockServer() are no longer necessary
79 - Unix/sysdeps.h: changed C++ comments to C comments as this file is included by some *.c files in uae_cpu [Brian J. Johnson]
80 - Unix/sysdeps.h: added unaligned access functions for SGI MIPSPro compiler [Brian J. Johnson]
81 - Unix/Irix/unaligned.c: created [Brian J. Johnson]
82 * Fri Jul 23 1999 Roman Niewiarowski <newrom@pasjo.net.pl>
83   [0.6-1]
84 - First rpm release
85 - Hallo World ;)
This page took 0.068774 seconds and 3 git commands to generate.