Author: aredridel Date: Wed May 21 13:59:09 2008 GMT Module: SPECS Tag: HEAD ---- Log message: - added, NFY
---- Files affected: SPECS: unbound.spec (NONE -> 1.1) (NEW) ---- Diffs: ================================================================ Index: SPECS/unbound.spec diff -u /dev/null SPECS/unbound.spec:1.1 --- /dev/null Wed May 21 15:59:09 2008 +++ SPECS/unbound.spec Wed May 21 15:59:04 2008 @@ -0,0 +1,119 @@ +# $Revision$, $Date$ +# +Summary: Recursive, validating DNS server +Name: unbound +Version: 1.0.0 +Release: 1 +License: BSD +Group: Applications +Source0: http://www.unbound.net/downloads/%{name}-%{version}.tar.gz +# Source0-md5: 05b7532c26e6005f7575d04fc44fb893 +URL: http://unbound.net/ +#BuildRequires: - +#BuildRequires: autoconf +#BuildRequires: automake +#BuildRequires: intltool +#BuildRequires: libtool +BuildRequires: rpmbuild(macros) >= 1.228 +Requires(post,preun): /sbin/chkconfig +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +%description +Unbound is a validating, recursive, and caching DNS resolver. + +The C implementation of Unbound is developed and maintained by NLnet +Labs. It is based on ideas and algorithms taken from a java prototype +developed by Verisign labs, Nominet, Kirei and ep.net. + +Unbound is designed as a set of modular components, so that also +DNSSEC (secure DNS) validation and stub-resolvers (that do not run as +a server, but are linked into an application) are easily possible. + +%package devel +Summary: Header files for unbound library +Summary(pl.UTF-8): Pliki nagłówkowe biblioteki unbound +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel +Header files for unbound library. + +%description devel -l pl.UTF-8 +Pliki nagłówkowe biblioteki unbound. + +%package static +Summary: Static unbound library +Summary(pl.UTF-8): Statyczna biblioteka unbound +Group: Development/Libraries +Requires: %{name}-devel = %{version}-%{release} + +%description static +Static unbound library. + +%description static -l pl.UTF-8 +Statyczna biblioteka unbound. + +%prep +%setup -q + +%build +%configure +%{__make} + +%install +rm -rf $RPM_BUILD_ROOT + +%{__make} install \ + DESTDIR=$RPM_BUILD_ROOT + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%if %{with initscript} +%post +/sbin/chkconfig --add %{name} +%service %{name} restart + +%preun +if [ "$1" = "0" ]; then + %service -q %{name} stop + /sbin/chkconfig --del %{name} +fi +%endif + +%files +%defattr(644,root,root,755) +%doc doc/Changelog doc/CREDITS doc/plan doc/example.conf doc/README +%doc doc/FEATURES doc/ietf67-design-02.odp doc/ietf67-design-02.pdf +%doc doc/requirements.txt doc/TODO +%{_sysconfdir}/%{name}/unbound.conf +%attr(755,root,root) %{_libdir}/libunbound.so.*.*.* +%attr(755,root,root) %{_sbindir}/unbound +%attr(755,root,root) %{_sbindir}/unbound-checkconf +%attr(755,root,root) %{_sbindir}/unbound-host +%{_mandir}/man1/unbound-host.1* +%{_mandir}/man5/unbound.conf.5* +%{_mandir}/man8/unbound-checkconf.8* +%{_mandir}/man8/unbound.8* + +%files devel +%{_includedir}/unbound.h +%{_libdir}/libunbound.la +%{_libdir}/libunbound.so +%{_mandir}/man3/libunbound.3* + +%files static +%{_libdir}/libunbound.a + +%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`) +%changelog +* %{date} PLD Team <[EMAIL PROTECTED]> +All persons listed below can be reached at <cvs_login>@pld-linux.org + +$Log$ +Revision 1.1 2008-05-21 13:59:04 aredridel +- added, NFY + ================================================================ _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
