source: projects/specs/trunk/m/mate-keyring/mate-keyring-vl.spec @ 6172

Revision 6172, 2.7 KB checked in by Takemikaduchi, 12 years ago (diff)

new upstream release

Line 
1Summary:        MATE Password Management daemon
2Name:           mate-keyring
3Version:        1.2.1
4Release:        1%{?_dist_release}
5Source0:        %{name}-%{version}.tar.xz
6License:        GPLv2
7Group:          System Environment/Libraries
8URL:            https://matsusoft.com.ar/projects/mate/
9
10BuildRequires:  mate-common
11BuildRequires:  gtk2-devel
12BuildRequires:  libgcrypt-devel
13BuildRequires:  dbus-devel
14BuildRequires:  libtasn1-devel
15BuildRequires:  pam-devel
16BuildRequires:  gtk-doc
17BuildRequires:  autoconf
18BuildRequires:  automake
19
20BuildRoot:      %{_tmppath}/%{name}-%{version}-root
21
22Vendor:         Project Vine
23Distribution:   Vine Linux
24Packager:       Takemikaduchi
25
26
27%description
28PolicyKit-mate provides an Authentication Agent for PolicyKit that
29integrates well with the MATE desktop environment
30
31
32%package        devel
33Summary:        Development tools for mate-keyring
34Summary(ja):    mate-keyring の開発環境
35Group:          Development/Libraries
36Requires:       %{name} = %{version}-%{release}
37Requires:       pkgconfig
38
39%description    devel
40Header files and libraries for building a extension library for the
41mate-keyring.
42
43
44%package        doc
45Summary:        Documentation for mate-keyring
46Summary(ja):    mate-keyring 用のドキュメント
47Group:          Documentation
48Requires:       %{name} = %{version}-%{release}
49BuildArch:      noarch
50
51%description    doc
52This package contains documentation for mate-keyring.
53
54
55%prep
56%setup -q
57
58
59%build
60(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; fi)
61%configure \
62        --libexecdir=%{_libexecdir}/mate \
63        --with-pam-dir=/%{_lib}/security \
64        --disable-static
65
66%{__make} %{?_smp_mflags}
67
68
69%install
70%{__rm} -rf ${RPM_BUILD_ROOT}
71%{__make} install DESTDIR=${RPM_BUILD_ROOT}
72
73find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} \;
74find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
75
76%find_lang %{name}
77
78
79%clean
80%{__rm} -rf ${RPM_BUILD_ROOT}
81
82%post -p /sbin/ldconfig
83
84%postun -p /sbin/ldconfig
85
86%files -f %{name}.lang
87%defattr(-,root,root,-)
88%doc COPYING ChangeLog NEWS README
89/%{_lib}/security/pam_mate_keyring.so
90%{_sysconfdir}/xdg/autostart/*.desktop
91%{_bindir}/mate-keyring
92%{_bindir}/mate-keyring-daemon
93%{_libdir}/*.so.*
94%{_libdir}/mate-keyring
95%{_libexecdir}/mate/mate-keyring-prompt
96%{_datadir}/MateConf/gsettings/*.convert
97%{_datadir}/dbus-1/services/*.service
98%{_datadir}/glib-2.0/schemas/*.xml
99%{_datadir}/mate-keyring
100%{_datadir}/mategcr
101
102%files devel
103%defattr(-,root,root,-)
104%{_includedir}/gp11
105%{_includedir}/mate-gp11
106%{_includedir}/mategcr
107%{_libdir}/*.so
108%{_libdir}/pkgconfig/*.pc
109
110%files doc
111%defattr(-,root,root,-)
112%{_datadir}/gtk-doc/html/mate-gcr-0
113%{_datadir}/gtk-doc/html/mate-gp11
114
115
116%changelog
117* Sat May 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.1-1
118- new upstream release
119
120* Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-1
121- initial build for Vine Linux
122
Note: See TracBrowser for help on using the repository browser.