libunbound: initial release

This commit is contained in:
Juergen Daubert 2018-05-22 12:52:37 +02:00
parent bf3189b612
commit 8154c2554b
4 changed files with 68 additions and 0 deletions

43
libunbound/.footprint Normal file
View File

@ -0,0 +1,43 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/unbound.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libunbound.a
-rw-r--r-- root/root usr/lib/libunbound.la
lrwxrwxrwx root/root usr/lib/libunbound.so -> libunbound.so.2.5.9
lrwxrwxrwx root/root usr/lib/libunbound.so.2 -> libunbound.so.2.5.9
-rwxr-xr-x root/root usr/lib/libunbound.so.2.5.9
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/libunbound.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_cancel.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_add_ta.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_add_ta_file.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_async.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_config.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_create.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_data_add.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_data_remove.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_debuglevel.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_debugout.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_delete.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_get_option.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_hosts.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_print_local_zones.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_resolvconf.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_set_fwd.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_set_option.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_trustedkeys.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_zone_add.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_ctx_zone_remove.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_fd.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_poll.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_process.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_resolve.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_resolve_async.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_resolve_free.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_result.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_strerror.3.gz
-rw-r--r-- root/root usr/share/man/man3/ub_wait.3.gz

1
libunbound/.md5sum Normal file
View File

@ -0,0 +1 @@
e3614d9746e1fd45f191a2b88ad8df04 unbound-1.7.1.tar.gz

5
libunbound/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/daKi9SwNN8ffGWexcn1X/gLRFEE5Lq9+oLxvqtQKznhduojMBqDaSnRF7Y/SINZJ1dlp80qJETydH+qBcW1pAg=
SHA256 (Pkgfile) = dac99c6e775403a6844803b8eec076ea4c954bed2fb3709628be55e93e7236bd
SHA256 (.footprint) = 306c990c4a7ead37fde679c22e0b54e665bce59d798fe7bc2e7fd9aa4423f32f
SHA256 (unbound-1.7.1.tar.gz) = 56e085ef582c5372a20207de179d0edb4e541e59f87be7d4ee1d00d12008628d

19
libunbound/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Validating resolver library
# URL: http://unbound.net/index.html
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: openssl
name=libunbound
version=1.7.1
release=1
source=(https://unbound.net/downloads/unbound-$version.tar.gz)
build () {
cd unbound-$version
./configure --prefix=/usr \
--with-libunbound-only
make
make DESTDIR=$PKG install
}