1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
%define name tsclient
%define version 0.148
%define release 1
%define _desktop %{_datadir}/applications
%define _serverdir %{_prefix}/lib/bonobo/servers
%define _buildroot %{_tmppath}/%{name}-%{version}
Summary: Terminal Server Client is a frontend for rdesktop for the GNOME2 platform.
Name: %{name}
Version: %{version}
Release: %{release}
License: GPL
Group: User Interface/Desktops
URL: http://%{name}.sourceforge.net/
Vendor: Erick Woods <erick@gnomepro.com>
Source: %{name}-%{version}.tar.gz
BuildRoot: /var/tmp/%{name}-%{version}
Requires: glib2 >= 2.0.0, gtk2 >= 2.0.0, rdesktop >= 1.3.0, vnc >= 4.0
BuildRequires: glib2-devel >= 2.0.0, gtk2-devel >= 2.0.0
%description
Terminal Server Client is a frontend for rdesktop, vnc and other remote desktop tools.
%prep
%setup
%build
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%_prefix
make
%install
[ -n "%{_buildroot}" -a "%{_buildroot}" != / ] && rm -rf %{_buildroot}
make prefix=%{_buildroot}%{_prefix} install
mkdir -p %{_buildroot}%{_desktop}
cp *.png %{_buildroot}%{_datadir}/pixmaps/
%clean
[ -n "%{_buildroot}" -a "%{_buildroot}" != / ] && rm -rf %{_buildroot}
%files
%defattr(-,root,root)
%doc README ChangeLog AUTHORS NEWS
%{_prefix}/bin/tsclient
%{_prefix}/libexec/tsclient-applet
%{_serverdir}/GNOME_TSClientApplet.server
%{_desktop}/tsclient.desktop
%{_datadir}/pixmaps/*.png
%{_datadir}/pixmaps/tsclient
%{_datadir}/locale/*/LC_MESSAGES/tsclient.mo
%{_datadir}/application-registry/tsclient.*
%{_datadir}/mime-info/tsclient.*
%{_datadir}/man/man1/tsclient.1*
%changelog
* Mon Sep 30 2002 - Erick Woods <erick@gnomepro.com>
- This file was created
|