2004-09-09 07:33:28 +00:00
|
|
|
Summary: Internationalized Domain Name support library
|
|
|
|
Name: libidn
|
2005-09-19 17:41:33 +00:00
|
|
|
Version: 0.5.19
|
2005-05-06 07:59:19 +00:00
|
|
|
Release: 1
|
2004-09-09 07:33:28 +00:00
|
|
|
URL: http://www.gnu.org/software/libidn
|
|
|
|
License: LGPL
|
2004-09-09 07:33:35 +00:00
|
|
|
Source0: http://josefsson.org/libidn/releases/libidn-%{version}.tar.gz
|
2004-09-29 23:10:57 +00:00
|
|
|
Group: System Environment/Libraries
|
2004-09-09 07:33:28 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
2004-09-09 07:33:56 +00:00
|
|
|
BuildRequires: pkgconfig, gettext
|
2005-05-05 15:47:31 +00:00
|
|
|
Requires(post): /sbin/install-info
|
|
|
|
Requires(postun): /sbin/ldconfig
|
|
|
|
Requires(pre): /sbin/ldconfig, /sbin/install-info
|
2004-09-09 07:33:28 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
GNU Libidn is an implementation of the Stringprep, Punycode and
|
|
|
|
IDNA specifications defined by the IETF Internationalized Domain
|
|
|
|
Names (IDN) working group, used for internationalized domain
|
|
|
|
names.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for the libidn library
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: pkgconfig
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package includes header files and libraries necessary for
|
|
|
|
developing programs which use the GNU libidn library.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%check
|
|
|
|
make %{?_smp_mflags} -C tests check
|
|
|
|
|
|
|
|
%install
|
2004-11-09 11:55:23 +00:00
|
|
|
rm -rf %{buildroot}
|
2004-09-09 07:33:28 +00:00
|
|
|
%makeinstall
|
|
|
|
|
|
|
|
# provide more examples
|
|
|
|
make %{?_smp_mflags} -C examples distclean
|
|
|
|
|
|
|
|
# clean up docs
|
|
|
|
find doc -name "Makefile*" | xargs rm
|
2004-09-09 07:33:56 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/info/dir
|
2004-09-09 07:33:28 +00:00
|
|
|
|
2004-09-09 07:33:56 +00:00
|
|
|
%find_lang %{name}
|
2004-09-09 07:33:28 +00:00
|
|
|
|
2004-09-09 07:33:56 +00:00
|
|
|
%post
|
|
|
|
/sbin/install-info %{_infodir}/%{name}.info.gz %{_infodir}/dir
|
|
|
|
/sbin/ldconfig
|
2004-09-09 07:33:28 +00:00
|
|
|
|
2004-09-09 07:33:56 +00:00
|
|
|
%preun
|
|
|
|
if [ $1 = 0 ]; then
|
|
|
|
/sbin/install-info --delete %{_infodir}/%{name}.info.gz %{_infodir}/dir
|
|
|
|
fi
|
2004-09-09 07:34:33 +00:00
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
2004-09-09 07:33:28 +00:00
|
|
|
|
|
|
|
%clean
|
2004-11-09 11:55:23 +00:00
|
|
|
rm -rf %{buildroot}
|
2004-09-09 07:33:28 +00:00
|
|
|
|
2004-09-09 07:33:56 +00:00
|
|
|
%files -f %{name}.lang
|
2004-09-09 07:33:28 +00:00
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc ChangeLog NEWS FAQ README THANKS COPYING*
|
|
|
|
%{_bindir}/idn
|
|
|
|
%{_mandir}/man1/idn.1*
|
|
|
|
%{_datadir}/emacs/site-lisp
|
|
|
|
%{_libdir}/libidn.so.*
|
2004-09-09 07:33:43 +00:00
|
|
|
%{_libdir}/libidn.la
|
2004-09-09 07:33:56 +00:00
|
|
|
%{_infodir}/%{name}.info.gz
|
2004-09-09 07:33:28 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(0644,root,root,755)
|
|
|
|
%doc doc/libidn.html examples contrib
|
|
|
|
%{_libdir}/libidn.so
|
2004-09-09 07:33:43 +00:00
|
|
|
%{_libdir}/libidn.a
|
2004-09-09 07:33:28 +00:00
|
|
|
%{_includedir}/*.h
|
|
|
|
%{_libdir}/pkgconfig/*.pc
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
|
|
%changelog
|
2005-09-19 17:41:33 +00:00
|
|
|
* Mon Sep 19 2005 Joe Orton <jorton@redhat.com> 0.5.19-1
|
|
|
|
- update to 0.5.19
|
|
|
|
|
2005-05-27 08:58:16 +00:00
|
|
|
* Fri May 27 2005 Joe Orton <jorton@redhat.com> 0.5.17-1
|
|
|
|
- update to 0.5.17
|
|
|
|
|
2005-05-06 07:59:19 +00:00
|
|
|
* Fri May 6 2005 Joe Orton <jorton@redhat.com> 0.5.16-1
|
|
|
|
- update to 0.5.16
|
|
|
|
|
2005-05-05 15:47:31 +00:00
|
|
|
* Thu May 5 2005 Joe Orton <jorton@redhat.com> 0.5.15-2
|
|
|
|
- constify data tables in pr29.c
|
|
|
|
- clean up pre/post/postun requires
|
|
|
|
|
2005-03-20 09:41:19 +00:00
|
|
|
* Sun Mar 20 2005 Joe Orton <jorton@redhat.com> 0.5.15-1
|
|
|
|
- update to 0.5.15
|
|
|
|
|
2005-03-04 10:13:05 +00:00
|
|
|
* Fri Mar 4 2005 Joe Orton <jorton@redhat.com> 0.5.13-2
|
|
|
|
- rebuild
|
|
|
|
|
2005-01-31 10:00:23 +00:00
|
|
|
* Mon Jan 31 2005 Joe Orton <jorton@redhat.com> 0.5.13-1
|
|
|
|
- update to 0.5.13
|
|
|
|
|
2004-12-05 22:54:13 +00:00
|
|
|
* Sun Dec 5 2004 Joe Orton <jorton@redhat.com> 0.5.12-1
|
|
|
|
- update to 0.5.12
|
|
|
|
|
2004-11-29 09:43:17 +00:00
|
|
|
* Mon Nov 29 2004 Joe Orton <jorton@redhat.com> 0.5.11-1
|
|
|
|
- update to 0.5.11 (#141094)
|
|
|
|
|
2004-11-09 11:55:23 +00:00
|
|
|
* Tue Nov 9 2004 Joe Orton <jorton@redhat.com> 0.5.10-1
|
|
|
|
- update to 0.5.10
|
|
|
|
- buildroot cleanup fix (Robert Scheck)
|
|
|
|
|
2004-11-08 16:20:01 +00:00
|
|
|
* Mon Nov 8 2004 Joe Orton <jorton@redhat.com> 0.5.9-1
|
|
|
|
- update to 0.5.9 (#138296)
|
|
|
|
|
2004-10-07 16:00:22 +00:00
|
|
|
* Thu Oct 7 2004 Joe Orton <jorton@redhat.com> 0.5.6-1
|
|
|
|
- update to 0.5.6 (#134343)
|
|
|
|
|
2004-09-29 23:10:57 +00:00
|
|
|
* Thu Sep 30 2004 Miloslav Trmac <mitr@redhat.com> - 0.5.4-3
|
|
|
|
- Fix Group: (#134068)
|
|
|
|
|
2004-09-09 07:34:33 +00:00
|
|
|
* Tue Aug 31 2004 Joe Orton <jorton@redhat.com> 0.5.4-2
|
|
|
|
- move ldconfig from preun to postun (#131280)
|
|
|
|
|
2004-09-09 07:34:20 +00:00
|
|
|
* Sun Aug 8 2004 Joe Orton <jorton@redhat.com> 0.5.4-1
|
|
|
|
- update to 0.5.4 (#129341)
|
|
|
|
|
2004-09-09 07:33:56 +00:00
|
|
|
* Thu Jul 15 2004 Robert Scheck <redhat@linuxnetz.de> 0.5.2-1
|
|
|
|
- upgrade to 0.5.2, enabled i18n support and info files (#127906)
|
|
|
|
|
2004-09-09 07:33:52 +00:00
|
|
|
* Fri Jul 9 2004 Joe Orton <jorton@redhat.com> 0.5.1-1
|
|
|
|
- update to 0.5.1 (#127496)
|
|
|
|
|
2004-09-09 07:33:50 +00:00
|
|
|
* Mon Jun 28 2004 Joe Orton <jorton@redhat.com> 0.5.0-1
|
|
|
|
- update to 0.5.0 (#126836)
|
|
|
|
|
2004-09-09 07:33:43 +00:00
|
|
|
* Tue Jun 22 2004 Than Ngo <than@redhat.com> 0.4.9-2
|
|
|
|
- add prereq: /sbin/ldconfig
|
|
|
|
- move la file in main package
|
|
|
|
|
2004-09-09 07:33:35 +00:00
|
|
|
* Tue Jun 15 2004 Robert Scheck <redhat@linuxnetz.de> 0.4.9-1
|
|
|
|
- upgrade to 0.4.9 (#126353)
|
|
|
|
|
2004-09-09 07:33:31 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 07:33:35 +00:00
|
|
|
* Thu Apr 29 2004 Joe Orton <jorton@redhat.com> 0.4.4-1
|
|
|
|
- update to 0.4.4; remove contrib from -devel docs
|
|
|
|
|
2004-09-09 07:33:28 +00:00
|
|
|
* Thu Apr 29 2004 Joe Orton <jorton@redhat.com> 0.4.3-1
|
|
|
|
- update to 0.4.3, remove -rpath patch
|
|
|
|
|
|
|
|
* Tue Jan 27 2004 Joe Orton <jorton@redhat.com> 0.3.7-1
|
|
|
|
- update to 0.3.7, simplify
|
|
|
|
|
|
|
|
* Wed Jan 07 2004 Lenny Cartier <lenny@mandrakesoft.com> 0.3.6-1mdk
|
|
|
|
- 0.3.6
|
|
|
|
|
|
|
|
* Mon Dec 15 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 0.3.5-1mdk
|
|
|
|
- 0.3.5
|
|
|
|
|
|
|
|
* Sun Oct 19 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 0.3.3-2mdk
|
|
|
|
- drop the "soname fix" and use the correct way...
|
|
|
|
|
|
|
|
* Sat Oct 18 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 0.3.3-1mdk
|
|
|
|
- 0.3.3
|
|
|
|
|
|
|
|
* Mon Oct 13 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 0.3.2-1mdk
|
|
|
|
- initial cooker contrib
|
|
|
|
- used the package from PLD as a start point
|