freerdp/freerdp.spec

279 lines
8.3 KiB
RPMSpec
Raw Normal View History

2010-11-08 22:37:46 +00:00
Name: freerdp
Version: 1.1.0
2013-09-10 11:58:50 +00:00
Release: 0.6.beta.2013071101%{?dist}
2013-09-10 00:13:13 +00:00
Epoch: 1
2010-11-08 22:37:46 +00:00
Summary: Remote Desktop Protocol client
License: ASL 2.0
2010-11-08 22:37:46 +00:00
URL: http://www.freerdp.com/
Source0: http://pub.freerdp.com/releases/%{name}-%{version}-beta+2013071101.tar.gz
2010-11-08 22:37:46 +00:00
BuildRequires: cmake
BuildRequires: xmlto
2010-11-08 22:37:46 +00:00
BuildRequires: openssl-devel
BuildRequires: libX11-devel
BuildRequires: libXext-devel
BuildRequires: libXinerama-devel
2010-11-08 22:37:46 +00:00
BuildRequires: libXcursor-devel
BuildRequires: libXdamage-devel
BuildRequires: libXv-devel
BuildRequires: libxkbfile-devel
BuildRequires: pulseaudio-libs-devel
BuildRequires: cups-devel
BuildRequires: pcsc-lite-devel
BuildRequires: desktop-file-utils
2010-11-08 22:37:46 +00:00
Provides: xfreerdp = %{version}-%{release}
2013-09-10 11:58:50 +00:00
Requires: %{name}-libs%{?_isa} = %{?epoch}:%{version}-%{release}
Requires: %{name}-libwinpr%{?_isa} = %{?epoch}:%{version}-%{release}
2010-11-08 22:37:46 +00:00
%description
2010-11-08 22:37:46 +00:00
The xfreerdp Remote Desktop Protocol (RDP) client from the FreeRDP
project.
xfreerdp can connect to RDP servers such as Microsoft Windows
machines, xrdp and VirtualBox.
%package libs
Summary: Core libraries implementing the RDP protocol
2013-09-10 11:58:50 +00:00
Requires: %{name}-libwinpr%{?_isa} = %{?epoch}:%{version}-%{release}
Obsoletes: %{name}-plugins < 1.1.0-0
Provides: %{name}-plugins = %{version}-%{release}
2010-11-08 22:37:46 +00:00
%description libs
libfreerdp-core can be embedded in applications.
2010-11-08 22:37:46 +00:00
libfreerdp-channels and libfreerdp-kbd might be convenient to use in X
applications together with libfreerdp-core.
2010-11-08 22:37:46 +00:00
libfreerdp-core can be extended with plugins handling RDP channels.
2010-11-08 22:37:46 +00:00
%package libwinpr
Summary: FreeRDP Windows API runtime
%description libwinpr
An implementation of much of Windows' APIs.
2010-11-08 22:37:46 +00:00
%package devel
Summary: Development files for %{name}
2013-09-10 11:58:50 +00:00
Requires: %{name}-libs%{?_isa} = %{?epoch}:%{version}-%{release}
Requires: %{name}-libwinpr%{?_isa} = %{?epoch}:%{version}-%{release}
2010-11-08 22:37:46 +00:00
Requires: pkgconfig
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name} libs.
2010-11-08 22:37:46 +00:00
%prep
%setup -q -n freerdp-1.1.0-beta+2013071101
2010-11-08 22:37:46 +00:00
cat << EOF > xfreerdp.desktop
[Desktop Entry]
Type=Application
Name=X FreeRDP
NoDisplay=true
Comment=Connect to RDP server and display remote desktop
Icon=%{name}
Exec=/usr/bin/xfreerdp
Terminal=false
Categories=Network;RemoteAccess;
EOF
2010-11-08 22:37:46 +00:00
%build
%cmake \
-DWITH_CUPS=ON \
-DWITH_PCSC=ON \
-DWITH_PULSEAUDIO=ON \
-DWITH_X11=ON \
-DWITH_XCURSOR=ON \
-DWITH_XEXT=ON \
-DWITH_XINERAMA=ON \
-DWITH_XKBFILE=ON \
-DWITH_XV=ON \
-DWITH_ALSA=OFF \
-DWITH_CUNIT=OFF \
-DWITH_DIRECTFB=OFF \
-DWITH_FFMPEG=OFF \
2013-09-01 19:14:39 +00:00
%ifarch x86_64
-DWITH_SSE2=ON \
%else
-DWITH_SSE2=OFF \
2013-09-01 19:14:39 +00:00
%endif
%ifarch armv7hl
-DARM_FP_ABI=hard \
-DWITH_NEON=OFF \
%endif
%ifarch armv7hnl
-DARM_FP_ABI=hard \
-DWITH_NEON=ON \
%endif
%ifarch armv5tel armv6l armv7l
-DARM_FP_ABI=soft \
-DWITH_NEON=OFF \
%endif
-DCMAKE_INSTALL_LIBDIR:PATH=%{_lib} \
.
2010-11-08 22:37:46 +00:00
make %{?_smp_mflags}
%install
make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
desktop-file-install --dir=$RPM_BUILD_ROOT%{_datadir}/applications xfreerdp.desktop
2013-09-01 11:57:08 +00:00
install -p -m 644 -D resources/FreeRDP_Icon_256px.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps/%{name}.png
rm $RPM_BUILD_ROOT%{_libdir}/libwinpr-makecert-tool.a
2010-11-08 22:37:46 +00:00
%post
# This is no gtk application, but try to integrate nicely with GNOME if it is available
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
2010-11-08 22:37:46 +00:00
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
2013-09-03 22:37:46 +00:00
%post libwinpr -p /sbin/ldconfig
%postun libwinpr -p /sbin/ldconfig
2010-11-08 22:37:46 +00:00
%files
%{_bindir}/xfreerdp
%{_mandir}/man1/xfreerdp.*
%{_datadir}/applications/xfreerdp.desktop
%{_datadir}/icons/hicolor/256x256/apps/%{name}.png
2010-11-08 22:37:46 +00:00
%files libs
%{_libdir}/lib%{name}-*.so.*
2013-09-05 01:06:01 +00:00
%{_libdir}/libxfreerdp-client.so.*
2010-11-08 22:37:46 +00:00
%files libwinpr
%doc LICENSE README ChangeLog
%{_libdir}/libwinpr-*.so.*
2010-11-08 22:37:46 +00:00
%files devel
%{_includedir}/%{name}/
%{_includedir}/winpr/
%{_libdir}/lib*.so
2013-09-05 01:06:01 +00:00
%{_libdir}/libxfreerdp-client.so
2010-11-08 22:37:46 +00:00
%{_libdir}/pkgconfig/%{name}.pc
%changelog
2013-09-10 11:58:50 +00:00
* Tue Sep 10 2013 Simone Caronni <negativo17@gmail.com> - 1.1.0-0.6.beta.2013071101
- Add epoch to requirements.
2013-09-10 00:13:13 +00:00
* Tue Sep 10 2013 Simone Caronni <negativo17@gmail.com> - 1.1.0-0.5.beta.2013071101
- Bump epoch.
2013-09-05 01:06:01 +00:00
* Thu Sep 05 2013 Mads Kiilerich <mads@kiilerich.com> - 1.1.0-0.4.beta.2013071101
- libxfreerdp-client is needed ...
* Tue Sep 03 2013 Mads Kiilerich <mads@kiilerich.com> - 1.1.0-0.3.beta1
2013-09-03 22:37:46 +00:00
- Add missing ldconfig for libwinpr
- Based on patch from Simone Caronni:
- Update to the latest beta 1 refresh (1.1.0-beta+2013071101).
- Remove obsolete defattr, Group and BuildRoot RPM tags for Fedora / RHEL 6+.
- Move license file and documentation to libwinpr subpackage so any combination
of installed packages result in the LICENSE file available.
2013-09-01 19:14:39 +00:00
* Sun Sep 01 2013 Mads Kiilerich <mads@kiilerich.com> - 1.1.0-0.2.beta1
- SSE2 should only be used on x86_64
* Sun Sep 01 2013 Dennis Gilmore <dennis@ausil.us> - 1.1.0-0.1.beta1
- disable neon on armv7hl and armv5tel
- set arm floating point correctly for the different targets
* Sun Sep 01 2013 Mads Kiilerich <mads@kiilerich.com> - 1.1.0-0.beta+2013071101
- Update to 1.1.0 beta1, add winpr package, drop plugins package.
- Drop unnecessary rm -rf of build roots.
2013-09-01 11:57:08 +00:00
* Sat Aug 31 2013 Mads Kiilerich <mads@kiilerich.com> - 1.0.2-4
- don't make freerdp.png executable
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2013-01-03 00:15:31 +00:00
* Wed Jan 02 2013 Mads Kiilerich <mads@kiilerich.com> - 1.0.2-1
- freerdp-1.0.2
* Sun Sep 30 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-7
- merge f17 1.0.1-6 - Backport fix for bug 816692
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Wed Feb 29 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-5
- Use new upstream tar with standard naming
- Use _isa for subpackage dependencies
* Tue Feb 28 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-4
- Include patch for sending invalid extra data
* Tue Feb 28 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-3
- Install a freedesktop .desktop file and a high-res icon instead of relying on
_NET_WM_ICON
* Sat Feb 25 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-2
- Explicit build requirement for xmlto - needed for EL6
* Wed Feb 22 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-1
- FreeRDP-1.0.1 - major upstream rewrite and relicensing under Apache license
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Fri Jan 28 2011 Mads Kiilerich <mads@kiilerich.com> - 0.8.2-2
- rebuild on rawhide because of broken dependencies
2010-11-15 23:53:50 +00:00
* Tue Nov 16 2010 Mads Kiilerich <mads@kiilerich.com> - 0.8.2-1
- freerdp-0.8.2
2010-11-08 22:37:46 +00:00
* Mon Nov 08 2010 Mads Kiilerich <mads@kiilerich.com> - 0.8.1-2
- make -devel require pkgconfig
- first official Fedora package
* Sun Nov 07 2010 Mads Kiilerich <mads@kiilerich.com> - 0.8.1-1
- freerdp-0.8.1
* Sat Sep 25 2010 Mads Kiilerich <mads@kiilerich.com> - 0.7.4-2
- hack the generated libtool to not set rpath on x86_64
- configure with alsa explicitly
* Tue Aug 24 2010 Mads Kiilerich <mads@kiilerich.com> - 0.7.4-1
- freerdp-0.7.4
- cleanup of packaging structure
* Wed Jul 28 2010 Mads Kiilerich <mads@kiilerich.com> - 0.7.3-1
- 0.7.3
- fix some minor pylint warnings
* Fri Jul 23 2010 Mads Kiilerich <mads@kiilerich.com> - 0.7.2-2
- 0.7.2
- Address many comments from cwickert:
- - cleanup of old formatting, alignment with spectemplate-lib.spec and
cwickert spec from #616193
- - add alsa as build requirement
- - remove superfluous configure options and disable static libs
- - add missing rpm groups
* Sun Jun 13 2010 Mads Kiilerich <mads@kiilerich.com> - 0.7.0-1
- First official release, first review request