source: projects/specs/trunk/k/kwalletmanager/kwalletmanager-vl.spec @ 9222

Revision 9222, 2.1 KB checked in by Takemikaduchi, 9 years ago (diff)

R: rebuild
openbabel: add BR
k3b: new upstream release
others: KDE-4.14.3

Line 
1Name:    kwalletmanager
2Summary: Wallet Management Tool
3Version: 4.14.3
4Release: 1%{?_dist_release}
5
6License: GPLv2
7Group:   Applications/Accessories
8URL:     https://www.kde.org/
9
10Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.xz
11
12BuildRoot: %{_tmppath}/%{name}-%{version}-root
13
14BuildRequires: kdelibs-devel >= %{version}
15BuildRequires: soprano-devel
16
17# when split occurred
18Conflicts: kdeutils < 4.8.0
19
20Vendor: Project Vine
21Distribution: Vine Linux
22
23%description
24The wallet subsystem provides a convenient and secure way to manage
25all your passwords.
26
27
28%prep
29%setup -q
30
31
32%build
33mkdir -p %{_target_platform}
34pushd %{_target_platform}
35%cmake \
36    -DCMAKE_BUILD_TYPE=release \
37    -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
38    -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
39    -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
40    -DLIB_INSTALL_DIR:PATH=%{_libdir} \
41    -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
42    -DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \
43    ..
44popd
45
46make %{?_smp_mflags} -C %{_target_platform}
47
48
49%install
50rm -rf %{buildroot}
51
52make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
53
54
55%post
56touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
57
58%posttrans
59update-desktop-database -q &> /dev/null ||:
60gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
61
62%postun
63if [ $1 -eq 0 ] ; then
64  touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
65  gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
66  update-desktop-database -q &> /dev/null ||:
67fi
68
69
70%files
71%doc COPYING COPYING.LIB
72%{_sysconfdir}/dbus-1/system.d/org.kde.kcontrol.kcmkwallet.conf
73%{_bindir}/%{name}
74%{_libdir}/kde4/kcm_kwallet.so
75%{_libexecdir}/kde4/kcm_kwallet_helper
76%{_datadir}/applications/kde4/%{name}.desktop
77%{_datadir}/applications/kde4/%{name}-kwalletd.desktop
78%{_datadir}/dbus-1/system-services/org.kde.kcontrol.kcmkwallet.service
79%{_datadir}/icons/hicolor/*/*/*
80%{_datadir}/kde4/apps/%{name}
81%{_datadir}/kde4/services/*.desktop
82%{_datadir}/polkit-1/actions/org.kde.kcontrol.kcmkwallet.policy
83%{_docdir}/HTML/en/kwallet
84
85%changelog
86* Fri Jan 02 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.14.3-1
87- initila build
Note: See TracBrowser for help on using the repository browser.