OpenPKG CVS Repository http://cvs.openpkg.org/ ____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: [email protected] Module: openpkg-src Date: 28-Mar-2009 09:34:36 Branch: HEAD Handle: 2009032808343600 Added files: openpkg-src/ldns ldns.patch ldns.spec Log: new package: ldns 1.5.1 (DNS Library) Summary: Revision Changes Path 1.1 +12 -0 openpkg-src/ldns/ldns.patch 1.1 +108 -0 openpkg-src/ldns/ldns.spec ____________________________________________________________________________ patch -p0 <<'@@ .' Index: openpkg-src/ldns/ldns.patch ============================================================================ $ cvs diff -u -r0 -r1.1 ldns.patch --- /dev/null 2009-03-28 09:34:32 +0100 +++ ldns.patch 2009-03-28 09:34:36 +0100 @@ -0,0 +1,12 @@ +Index: Makefile.in +--- Makefile.in.orig 2008-12-18 15:09:29 +0100 ++++ Makefile.in 2009-03-28 00:40:47 +0100 +@@ -131,8 +131,6 @@ + destclean: uninstall + + install-manpages: manpages +- ${INSTALL} -d $(DESTDIR)$(mandir)/man3 +- cp -Rp doc/man/man3/* $(DESTDIR)$(mandir)/man3/ + + uninstall-manpages: + for i in `cat doc/ldns_manpages`; do \ @@ . patch -p0 <<'@@ .' Index: openpkg-src/ldns/ldns.spec ============================================================================ $ cvs diff -u -r0 -r1.1 ldns.spec --- /dev/null 2009-03-28 09:34:32 +0100 +++ ldns.spec 2009-03-28 09:34:36 +0100 @@ -0,0 +1,108 @@ +## +## ldns.spec -- OpenPKG RPM Package Specification +## Copyright (c) 2000-2008 OpenPKG Foundation e.V. <http://openpkg.net/> +## +## Permission to use, copy, modify, and distribute this software for +## any purpose with or without fee is hereby granted, provided that +## the above copyright notice and this permission notice appear in all +## copies. +## +## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +## SUCH DAMAGE. +## + +# package information +Name: ldns +Summary: DNS Library +URL: http://www.nlnetlabs.nl/projects/ldns/ +Vendor: Miek Gieben, Jelte Jansen, Wouter Wijngaards +Packager: OpenPKG Foundation e.V. +Distribution: OpenPKG Community +Class: EVAL +Group: DNS +License: MIT-style +Version: 1.5.1 +Release: 20090328 + +# list of sources +Source0: http://www.nlnetlabs.nl/downloads/ldns/ldns-%{version}.tar.gz +Patch0: ldns.patch + +# build information +Prefix: %{l_prefix} +BuildRoot: %{l_buildroot} +BuildPreReq: OpenPKG, openpkg >= 20060823, make +PreReq: OpenPKG, openpkg >= 20060823 +AutoReq: no +AutoReqProv: no + +%description + LDNS is a C library which simplifies DNS programming. It supports + recent RFCs like the DNSSEC documents, and allows developers to + easily create software conforming to current RFCs, and experimental + software for current Internet Drafts. It has support for IP4, IP6, + TSIG and DNSSEC (signing and verification). + +%track + prog ldns = { + version = %{version} + url = http://www.nlnetlabs.nl/projects/ldns/ + regex = ldns-(__VER__)\.tar\.gz + } + +%prep + %setup -q + %patch -p0 + +%build + CC="%{l_cc}" \ + CFLAGS="%{l_cflags -O}" \ + CPPFLAGS="%{l_cppflags}" \ + LDFLAGS="%{l_ldflags}" \ + ./configure \ + --prefix=%{l_prefix} \ + --mandir=%{l_prefix}/man \ + --with-ssl=%{l_prefix} \ + --enable-sha2 \ + --disable-shared + %{l_make} %{l_mflags -O} + ( cd drill + CC="%{l_cc}" \ + CFLAGS="%{l_cflags -O}" \ + CPPFLAGS="%{l_cppflags}" \ + LDFLAGS="%{l_ldflags}" \ + LIBS="-lssl -lcrypto" \ + ./configure \ + --prefix=%{l_prefix} \ + --mandir=%{l_prefix}/man \ + --with-ssl=%{l_prefix} + %{l_make} %{l_mflags -O} + ) || exit $? + +%install + rm -rf $RPM_BUILD_ROOT + %{l_shtool} mkdir -f -p -m 755 \ + $RPM_BUILD_ROOT%{l_prefix}/bin \ + $RPM_BUILD_ROOT%{l_prefix}/man/man3 + %{l_make} %{l_mflags} install DESTDIR=$RPM_BUILD_ROOT + ( cd drill + %{l_make} %{l_mflags} install DESTDIR=$RPM_BUILD_ROOT + ) || exit $? + strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true + %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} + +%files -f files + +%clean + rm -rf $RPM_BUILD_ROOT + @@ . ______________________________________________________________________ OpenPKG http://openpkg.org CVS Repository Commit List [email protected]
