SHA256
1
0
forked from pool/freerdp
freerdp/freerdp.spec

131 lines
4.1 KiB
RPMSpec

#
# spec file for package freerdp
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define soname 0
Name: freerdp
Version: 0.8.2
Release: 1
Summary: Remote Desktop Viewer
Url: http://www.freerdp.com/
License: GPL-2.0+
Group: Productivity/Networking/Other
Source0: http://sourceforge.net/projects/freerdp/files/0.8/freerdp-%{version}.tar.gz
# PATCH-FIX-OPENSUSE freerdp-remove_am_silent_rules.patch pascal.bleser@opensuse.org -- Remove the AM_SILENT_RULES tag, useless and is undefined on older dists when running autoreconf
Patch0: freerdp-remove_am_silent_rules.patch
BuildRequires: ed
BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(alsa)
BuildRequires: cups-devel
BuildRequires: xorg-x11-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: libfreerdp%{soname} = %{version}
%description
FreeRDP is a client-side implementation of the Remote Desktop Protocol (RDP)
following the Microsoft Open Specifications.
%package -n libfreerdp%{soname}
Summary: Remote Desktop Viewer Library
Group: System/Libraries
Provides: libfreerdpchanman%{soname} = %{version}-%{release}
Provides: libfreerdpgdi%{soname} = %{version}-%{release}
Provides: libfreerdpkbd%{soname} = %{version}-%{release}
%description -n libfreerdp%{soname}
FreeRDP is a client-side implementation of the Remote Desktop Protocol (RDP)
following the Microsoft Open Specifications.
This package provides the shared library as well as its plugins.
%package devel
Summary: Development Files for %{name}
Group: Development/Libraries/C and C++
Requires: libfreerdp%{soname} = %{version}
%description devel
This package contains development files necessary for developing applications
based on libfreerdp.
%prep
%setup -q
%patch0
# use a versioned subdirectory for plugins in order to comply with the shared
# library policy
ed -s configure.ac 2>/dev/null <<'EOF'
,s/PLUGIN_PATH='\${libdir}\/freerdp'/PLUGIN_PATH='\${libdir}\/freerdp%{soname}'/
w
EOF
%build
autoreconf -fi
%configure \
--disable-static \
--with-ipv6 \
--enable-smartcard \
--with-sound=alsa \
--with-crypto=openssl
make %{?_smp_mflags} V=1
%install
%make_install
find "%{buildroot}%{_libdir}" -name '*.la' -exec rm -f {} +
%post -n libfreerdp%{soname} -p /sbin/ldconfig
%postun -n libfreerdp%{soname} -p /sbin/ldconfig
%files
%defattr(-,root,root)
%doc COPYING AUTHORS doc/ipv6.txt doc/ChangeLog
%{_bindir}/xfreerdp
%{_datadir}/%{name}
%{_mandir}/man1/xfreerdp.1%{ext_man}
%files -n libfreerdp%{soname}
%defattr(-,root,root)
%doc COPYING
%{_libdir}/libfreerdp.so.%{soname}
%{_libdir}/libfreerdp.so.%{soname}.*
%{_libdir}/libfreerdpchanman.so.%{soname}
%{_libdir}/libfreerdpchanman.so.%{soname}.*
%{_libdir}/libfreerdpgdi.so.%{soname}
%{_libdir}/libfreerdpgdi.so.%{soname}.*
%{_libdir}/libfreerdpkbd.so.%{soname}
%{_libdir}/libfreerdpkbd.so.%{soname}.*
%dir %{_libdir}/freerdp%{soname}
%{_libdir}/freerdp%{soname}/audin.so
%{_libdir}/freerdp%{soname}/cliprdr.so
%{_libdir}/freerdp%{soname}/disk.so
%{_libdir}/freerdp%{soname}/drdynvc.so
%{_libdir}/freerdp%{soname}/parallel.so
%{_libdir}/freerdp%{soname}/pnpdr.so
%{_libdir}/freerdp%{soname}/printer.so
%{_libdir}/freerdp%{soname}/rdpdr.so
%{_libdir}/freerdp%{soname}/rdpsnd.so
%{_libdir}/freerdp%{soname}/serial.so
%files devel
%defattr(-,root,root)
%{_includedir}/freerdp
%{_libdir}/lib*.so
%{_libdir}/pkgconfig/freerdp.pc
%changelog