]> git.pld-linux.org Git - packages/vice.git/blob - vice.spec
Update URL, vice has moved.
[packages/vice.git] / vice.spec
1 #
2 # Conditional build:
3 # _without_gnome - without GNOME support
4 #
5 Summary:        Commodore emulator
6 Summary(pl):    Emulator Commodore
7 Name:           vice
8 Version:        1.8
9 Release:        1
10 License:        GPL
11 Group:          Applications/Emulators
12 Source0:        ftp://ftp.funet.fi/pub/cbm/crossplatform/emulators/VICE/%{name}-%{version}.tar.gz
13 Patch0:         %{name}-info.patch
14 Patch1:         %{name}-DESTDIR.patch
15 Patch2:         %{name}-acamfixes.patch
16 URL:            http://viceteam.bei.t-online.de/
17 BuildRequires:  SDL-devel >= 1.2.0
18 BuildRequires:  XFree86-devel
19 BuildRequires:  Xaw3d-devel
20 BuildRequires:  automake
21 BuildRequires:  autoconf
22 BuildRequires:  bison
23 BuildRequires:  esound-devel
24 BuildRequires:  flex
25 BuildRequires:  gettext-devel
26 %{!?_without_gnome:BuildRequires:       gnome-libs-devel}
27 BuildRequires:  libpng-devel
28 BuildRequires:  readline-devel
29 BuildRequires:  texinfo
30 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
31
32 %define         _prefix         /usr/X11R6
33 %define         _mandir         %{_prefix}/man
34
35 %description
36 VICE is a Versatile Commodore Emulator, i.e. a program that runs on a
37 Unix, MS-DOS, Win95/NT, OS/2, RiscOS or BeOS machine and executes
38 programs intended for the old 8-bit Commodore computers. The current
39 version emulates the C64, the C128 (80 column screen is included now),
40 the VIC20, all the PET models (except the SuperPET 9000, which is out
41 of line anyway) and the CBM-II (aka C610).
42
43 %description -l pl
44 VICE jest wszechstronnym emulatorem 8-bitowego komputera Commodore.
45 Aktualna wersja emuluje C64, C128 (wraz z trybem pracy 80 kolumnowym),
46 VIC20, wszystkie modele PET (poza SuperPET 9000) oraz CBM-II (C610).
47
48 %prep
49 %setup -q
50 %patch0 -p1
51 %patch1 -p1
52 %patch2 -p1
53
54 %build
55 rm -f missing
56 gettextize --copy --force
57 aclocal
58 autoconf
59 autoheader
60 automake -a -c -f
61 cd src/resid
62 autoconf
63 cd ../..
64 %configure \
65         --enable-autobpp \
66         --with-sdl \
67         --with-x \
68         --enable-fullscreen \
69         --without-xaw3d \
70         %{!?_without_gnome:--enable-gnomeui} \
71         --enable-nls \
72         --without-included-gettext
73 %{__make}
74
75 %install
76 rm -rf $RPM_BUILD_ROOT
77
78 %{__make} install \
79         DESTDIR=$RPM_BUILD_ROOT
80
81 gzip -9nf AUTHORS  Chan* FEEDBACK NEWS README 
82
83 %clean
84 rm -rf $RPM_BUILD_ROOT
85
86 %post
87 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
88
89 %postun
90 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
91
92 %files
93 %defattr(644,root,root,755)
94 %doc *.gz
95 %attr(0755,root,root) %{_bindir}/*
96 %{_libdir}/vice
97 %{_mandir}/man?/*
98 %{_infodir}/*.info*
This page took 0.036352 seconds and 4 git commands to generate.