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

Revision 5311, 2.5 KB checked in by Takemikaduchi, 13 years ago (diff)

NEW: MATE Desktop Environment
vala: new upstream release

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