commit 038c3d9346bc31bb6440bd5925ecd7e9db6f939ffdd74e5ce695ce6a93b7e76e Author: Marcus Rueckert Date: Wed May 21 02:53:41 2008 +0000 OBS-URL: https://build.opensuse.org/package/show/server:dns/unbound?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/unbound-1.0.0.tar.gz b/unbound-1.0.0.tar.gz new file mode 100644 index 0000000..42c6bd2 --- /dev/null +++ b/unbound-1.0.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e27905cb2cbde604252fbdd19dcd915a3b970c55f2ba2a033dac02048de1fe +size 3554571 diff --git a/unbound-1.0.0_stupid_rpath.patch b/unbound-1.0.0_stupid_rpath.patch new file mode 100644 index 0000000..f0d7918 --- /dev/null +++ b/unbound-1.0.0_stupid_rpath.patch @@ -0,0 +1,26 @@ +Index: configure.ac +=================================================================== +--- configure.ac.orig ++++ configure.ac +@@ -497,7 +497,7 @@ AC_ARG_WITH(ssl, AC_HELP_STRING([--with- + else + AC_MSG_RESULT(found in $ssldir) + HAVE_SSL=yes +- LDFLAGS="$LDFLAGS -L$ssldir/lib" ++ LDFLAGS="$LDFLAGS" + if test "x$enable_rpath" = xyes; then + RUNTIME_PATH="$RUNTIME_PATH -R$ssldir/lib" + fi +Index: configure +=================================================================== +--- configure.orig ++++ configure +@@ -20884,7 +20884,7 @@ echo "$as_me: error: Cannot find the SSL + { echo "$as_me:$LINENO: result: found in $ssldir" >&5 + echo "${ECHO_T}found in $ssldir" >&6; } + HAVE_SSL=yes +- LDFLAGS="$LDFLAGS -L$ssldir/lib" ++ LDFLAGS="$LDFLAGS" + if test "x$enable_rpath" = xyes; then + RUNTIME_PATH="$RUNTIME_PATH -R$ssldir/lib" + fi diff --git a/unbound.changes b/unbound.changes new file mode 100644 index 0000000..ba09fb2 --- /dev/null +++ b/unbound.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Wed May 21 03:50:15 CEST 2008 - mrueckert@suse.de + +- initial package + diff --git a/unbound.spec b/unbound.spec new file mode 100644 index 0000000..cae8799 --- /dev/null +++ b/unbound.spec @@ -0,0 +1,41 @@ +# norootforbuild + +Name: unbound +Version: 1.0.0 +Release: 0 +# +Group: Productivity/Networking/DNS/Servers +License: BSD +# +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: openssl-devel +BuildRequires: ldns-devel +# +Url: http://www.unbound.net/ +Source: http://www.unbound.net/downloads/unbound-%{version}.tar.gz +Patch: unbound-1.0.0_stupid_rpath.patch +# +Summary: a validating, recursive, and caching DNS resolver +%description +a validating, recursive, and caching DNS resolver + + +%debug_package +%prep +%setup +%patch + +%build +%configure --disable-rpath --disable-static +%{__make} + +%install +%makeinstall + +%clean +%{__rm} -rf %{buildroot} + +%files +%defattr(-,root,root,-) + +%changelog