]> git.pld-linux.org Git - packages/gnutls.git/blob - gnutls.spec
- updated for 1.0.14
[packages/gnutls.git] / gnutls.spec
1 Summary:        The GNU Transport Layer Security Library
2 Summary(pl):    Biblioteka GNU TLS (Transport Layer Security)
3 Name:           gnutls
4 Version:        1.0.14
5 Release:        1
6 License:        LGPL
7 Group:          Libraries
8 Source0:        ftp://gnutls.hellug.gr/pub/gnutls/%{name}-%{version}.tar.bz2
9 # Source0-md5:  6bf79feb3425ad437c52c87463b70e53
10 URL:            http://www.gnu.org/software/gnutls/
11 BuildRequires:  autoconf >= 2.57
12 BuildRequires:  automake
13 BuildRequires:  libcfg+-devel
14 BuildRequires:  libgcrypt-devel >= 1.1.94
15 BuildRequires:  libtasn1-devel >= 0.2.5
16 BuildRequires:  libtool >= 1:1.4.2-9
17 BuildRequires:  lzo-devel
18 BuildRequires:  opencdk-devel >= 0.5.3
19 BuildRequires:  zlib-devel
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 GnuTLS is a project that aims to develop a library which provides a
24 secure layer, over a reliable transport layer (ie. TCP/IP). Currently
25 the gnuTLS library implements the proposed standards by the IETF's TLS
26 working group.
27
28 %description -l pl
29 GnuTLS to projekt maj±cy na celu stworzenie biblioteki udostêpniaj±cej
30 pow³okê bezpieczeñstwa ponad pow³ok± transportow± (np. TCP/IP).
31 Aktualnie biblioteka gnuTLS implementuje standardy proponowane przez
32 grupê robocz± IETF TLS.
33
34 %package devel
35 Summary:        Header files etc to develop gnutls applications
36 Summary(pl):    Pliki nag³ówkowe i inne do gnutls
37 Group:          Development/Libraries
38 Requires:       %{name} = %{version}-%{release}
39 Requires:       libgcrypt-devel >= 1.1.94
40 Requires:       libtasn1-devel >= 0.2.5
41 Requires:       zlib-devel
42
43 %description devel
44 Header files etc to develop gnutls applications.
45
46 %description devel -l pl
47 Pliki nag³ówkowe i inne do gnutls.
48
49 %package static
50 Summary:        Static gnutls library
51 Summary(pl):    Biblioteka statyczna gnutls
52 Group:          Development/Libraries
53 Requires:       %{name}-devel = %{version}-%{release}
54
55 %description static
56 Static gnutls library.
57
58 %description static -l pl
59 Biblioteka statyczna gnutls.
60
61 %prep
62 %setup -q
63
64 rm -f acinclude.m4
65
66 %build
67 # supplied libtool is broken (relink)
68 %{__libtoolize}
69 %{__aclocal}
70 %{__autoconf}
71 %{__autoheader}
72 %{__automake}
73 %configure \
74         --disable-dependency-tracking
75
76 %{__make}
77
78 %install
79 rm -rf $RPM_BUILD_ROOT
80
81 %{__make} install \
82         DESTDIR=$RPM_BUILD_ROOT \
83         m4datadir=%{_aclocaldir}
84
85 %clean
86 rm -rf $RPM_BUILD_ROOT
87
88 %post   -p /sbin/ldconfig
89 %postun -p /sbin/ldconfig
90
91 %files
92 %defattr(644,root,root,755)
93 %doc AUTHORS ChangeLog NEWS README THANKS
94 %attr(755,root,root) %{_bindir}/certtool
95 %attr(755,root,root) %{_bindir}/gnutls*
96 %attr(755,root,root) %{_bindir}/srptool
97 %attr(755,root,root) %{_libdir}/lib*.so.*.*
98 %{_mandir}/man1/certtool.1*
99 %{_mandir}/man1/gnutls-*
100 %{_mandir}/man1/srptool.1*
101
102 %files devel
103 %defattr(644,root,root,755)
104 %attr(755,root,root) %{_bindir}/libgnutls*-config
105 %attr(755,root,root) %{_libdir}/lib*.so
106 %{_libdir}/lib*.la
107 %{_includedir}/gnutls
108 %{_aclocaldir}/*
109
110 %files static
111 %defattr(644,root,root,755)
112 %{_libdir}/lib*.a
This page took 0.554923 seconds and 3 git commands to generate.