]> git.pld-linux.org Git - packages/gnome-keyring.git/blob - gnome-keyring.spec
- updated for gnome-keyring-0.2.1
[packages/gnome-keyring.git] / gnome-keyring.spec
1 Summary:        Keep passwords and other user's secrets
2 Summary(pl):    Przechowywanie hase³ i innych tajnych danych u¿ytkowników
3 Name:           gnome-keyring
4 Version:        0.2.1
5 Release:        1
6 License:        LGPL v2+/GPL v2+
7 Group:          X11/Applications
8 Source0:        http://ftp.gnome.org/pub/gnome/sources/%{name}/0.2/%{name}-%{version}.tar.bz2
9 # Source0-md5:  2fe5fb39cc18d1a6792fd3281223dfff
10 Patch0:         %{name}-locale-names.patch
11 URL:            http://www.gnome.org/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  glib2-devel >= 1:2.4.0
15 BuildRequires:  gtk+2-devel >= 2:2.4.0
16 BuildRequires:  libtool
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 Gnome Keyring is a program that keeps password and other secrets for
21 users. It is run as a deamon in the session, similar to ssh-agent, and
22 other applications can locate it by an environment variable.
23
24 The library libgnome-keyring is used by applications to integrate with
25 the GNOME keyring system.
26
27 %description -l pl
28 Gnome Keyring to program do przechowywania hase³ i innych tajnych
29 danych u¿ytkowników. Dzia³a jako demon w sesji, podobnie do
30 ssh-agenta, a inne aplikacje mog± znale¼æ go poprzez zmienn±
31 ¶rodowiskow±.
32
33 Biblioteka libgnome-keyring jest u¿ywana przez aplikacje do integracji
34 z systemem kluczy GNOME.
35
36 %package libs
37 Summary:        Gnome keyring library
38 Summary(pl):    Biblioteka gnome keyring
39 Group:          Libraries
40
41 %description libs
42 Gnome keyring library.
43
44 %description libs -l pl
45 Biblioteka gnome keyring.
46
47 %package devel
48 Summary:        Headers for gnome keyring library
49 Summary(pl):    Pliki nag³ówkowe biblioteki gnome keyring
50 Group:          Development/Libraries
51 Requires:       %{name}-libs = %{version}-%{release}
52 Requires:       glib2-devel >= 1:2.4.0
53
54 %description devel
55 Headers for gnome keyring library.
56
57 %description devel -l pl
58 Pliki nag³ówkowe biblioteki gnome keyring.
59
60 %package static
61 Summary:        Static gnome keyring libraries
62 Summary(pl):    Statyczne biblioteki gnome keyring
63 Group:          Development/Libraries
64 Requires:       %{name}-devel = %{version}-%{release}
65
66 %description static
67 Static version of gnome keyring libraries.
68
69 %description static -l pl
70 Statyczne biblioteki gnome keyring.
71
72 %prep
73 %setup -q
74 %patch0 -p1
75
76 mv po/{no,nb}.po
77
78 %build
79 %{__libtoolize}
80 %{__aclocal}
81 %{__autoconf}
82 %{__automake}
83 %configure \
84         --enable-static 
85
86 %{__make}
87
88 %install
89 rm -rf $RPM_BUILD_ROOT
90
91 %{__make} install \
92         DESTDIR=$RPM_BUILD_ROOT \
93         pkgconfigdir=%{_pkgconfigdir}
94
95 %find_lang %{name} --with-gnome --all-name
96
97 %clean
98 rm -rf $RPM_BUILD_ROOT
99
100 %post   libs -p /sbin/ldconfig
101 %postun libs -p /sbin/ldconfig
102
103 %files -f %{name}.lang
104 %defattr(644,root,root,755)
105 %doc AUTHORS ChangeLog NEWS README TODO
106 %attr(755,root,root) %{_bindir}/*
107 %attr(755,root,root) %{_libexecdir}/%{name}-ask
108
109 %files libs
110 %defattr(644,root,root,755)
111 %attr(755,root,root) %{_libdir}/lib*.so.*.*
112
113 %files devel
114 %defattr(644,root,root,755)
115 %attr(755,root,root) %{_libdir}/lib*.so
116 %{_libdir}/lib*.la
117 %{_pkgconfigdir}/*.pc
118 %{_includedir}/*
119
120 %files static
121 %defattr(644,root,root,755)
122 %{_libdir}/lib*.a
This page took 0.093426 seconds and 3 git commands to generate.