source: projects/specs/trunk/k/kio-ftps/kio-ftps-vl.spec @ 10763

Revision 10763, 1.6 KB checked in by ara_t, 8 years ago (diff)

rebuild with gcc-5.4.0

Line 
1Name:           kio-ftps
2Summary:        An ftps KIO slave for KDE
3Version:        0.2
4Release:        4%{?_dist_release}
5
6Group:          System Environment/Libraries
7License:        GPLv2+
8URL:            http://kasablanca.berlios.de/kio-ftps/
9
10Source0:        http://download.berlios.de/kasablanca/%{name}-%{version}.tar.gz
11Patch0:         qtnetwork.patch
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14BuildRequires:  kdelibs4-devel
15BuildRequires:  cmake
16
17#{?_kde4_macros_api:Requires: kde4-macros(api) = %{_kde4_macros_api} }
18
19%description
20An ftps KIO slave for KDE, based on rfc4217. It should work yet with
21most server implementations.
22
23%prep
24%setup -q -n %{name}
25%patch0 -p0 -b .qtnetwork
26
27%build
28mkdir -p %{_target_platform}
29pushd %{_target_platform}
30%{cmake} \
31    -DCMAKE_BUILD_TYPE=release \
32    -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
33    -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
34    -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
35    ..
36popd
37
38make %{?_smp_mflags} -C %{_target_platform}
39
40
41%install
42rm -rf %{buildroot}
43mkdir %{buildroot}
44make install DESTDIR=%{buildroot} -C %{_target_platform}
45
46
47%clean
48rm -rf %{buildroot}
49
50
51%files
52%defattr(-,root,root,-)
53%doc README LICENSE.txt rfc4217.txt
54%{_libdir}/kde4/kio_ftps.so
55%{_datadir}/kde4/services/ftps.protocol
56
57
58%changelog
59* Fri Sep 02 2016 Toshiaki Ara <ara_t@384.jp> - 0.2-4
60- rebuild with gcc-5.4.0
61
62* Sun Jan 11 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.2-3
63- rebuilt on current VineSeed
64
65* Sun Jan 16 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.2-2
66- initial build for Vine Linux
67
68* Tue Apr 28 2009 Jaroslav Reznik <jreznik@redhat.com> - 0.2-1
69- initial package
Note: See TracBrowser for help on using the repository browser.