diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-24 11:30:20 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-24 11:30:20 +0100 |
commit | 537a2c4eaa446e52c6ba07007eb9ae75998b5580 (patch) | |
tree | b48cc775042b4274dce470527826007de7a7fa84 /package/bind | |
parent | 18b3987c6d890f02c80b976b6cf6835053ef1fe9 (diff) | |
parent | ce621815fecece2b4d8a4cb7115eb82c1cb7ed44 (diff) |
Merge commit 'origin/confgen'
finally autogenerate menu Config.in files and Depends.mk
for packages. thx mirabilos
Conflicts:
.gitignore
Makefile
mk/build.mk
package/eglibc/Config.in
package/glibc/Config.in
package/uclibc++/Config.in
package/uclibc/Config.in
rules.mk
Diffstat (limited to 'package/bind')
-rw-r--r-- | package/bind/Config.in | 97 | ||||
-rw-r--r-- | package/bind/Makefile | 1 |
2 files changed, 1 insertions, 97 deletions
diff --git a/package/bind/Config.in b/package/bind/Config.in deleted file mode 100644 index b561312fc..000000000 --- a/package/bind/Config.in +++ /dev/null @@ -1,97 +0,0 @@ -config ADK_COMPILE_BIND - tristate - default n - select ADK_PACKAGE_LIBOPENSSL - -config ADK_DUMMY_BIND - prompt "bind.............................. A DNS server implementation" - tristate - default n - -config ADK_PACKAGE_BIND_RNDC - prompt "bind-rndc......................... Bind administration tools (rndc & rndc-confgen only)" - tristate - default n - depends on ADK_DUMMY_BIND - select ADK_COMPILE_BIND - select ADK_PACKAGE_LIBBIND - help - rndc, rndc-confgen - http://www.isc.org/sw/bind/ - -config ADK_PACKAGE_BIND_CHECK - prompt "bind-check........................ Bind administration tools (named-checkconf & named-checkzone only)" - tristate - default n - depends on ADK_DUMMY_BIND - select ADK_COMPILE_BIND - select ADK_PACKAGE_LIBBIND - help - named-checkconf, named-checkzone - http://www.isc.org/sw/bind/ - -config ADK_PACKAGE_BIND_DNSSEC - prompt "bind-dnssec....................... Bind administration tools (dnssec-keygen & dnssec-signzone only)" - tristate - default n - depends on ADK_DUMMY_BIND - select ADK_COMPILE_BIND - select ADK_PACKAGE_LIBBIND - help - dnssec-keygen, dnssec-signzone - http://www.isc.org/sw/bind/ - -config ADK_PACKAGE_BIND_HOST - prompt "bind-host......................... A simple DNS client" - tristate - default n - depends on ADK_DUMMY_BIND - select ADK_COMPILE_BIND - select ADK_PACKAGE_LIBBIND - help - host utility. - http://www.isc.org/sw/bind/ - - -config ADK_PACKAGE_BIND_DIG - prompt "bind-dig.......................... A DNS client" - tristate - default n - depends on ADK_DUMMY_BIND - select ADK_COMPILE_BIND - select ADK_PACKAGE_LIBBIND - help - dig utility. - http://www.isc.org/sw/bind/ - - -config ADK_PACKAGE_BIND_CLIENT - prompt "bind-client....................... A dynamic DNS client" - tristate - default n - depends on ADK_DUMMY_BIND - select ADK_COMPILE_BIND - select ADK_PACKAGE_LIBBIND - help - A DNS dynamic client (nsupdate) - http://www.isc.org/sw/bind/ - -config ADK_PACKAGE_BIND_SERVER - prompt "bind-server....................... A DNS server" - tristate - default n - depends on ADK_DUMMY_BIND - select ADK_COMPILE_BIND - select ADK_PACKAGE_LIBBIND - help - A DNS server (named) - http://www.isc.org/sw/bind/ - -config ADK_PACKAGE_LIBBIND - prompt "libbind........................... Support library for the bind tools and dns server/client." - tristate - default n - depends on ADK_DUMMY_BIND - select ADK_COMPILE_BIND - help - http://www.isc.org/sw/bind/ diff --git a/package/bind/Makefile b/package/bind/Makefile index a4e783e03..e1adae348 100644 --- a/package/bind/Makefile +++ b/package/bind/Makefile @@ -6,6 +6,7 @@ include ${TOPDIR}/rules.mk PKG_NAME:= bind PKG_VERSION:= 9.4.1 PKG_RELEASE:= 4 +PKG_BUILDDEP+= openssl PKG_MD5SUM:= 09b54d35036cb0423b2e618f21766285 PKG_DESCR:= popular DNS server PKG_SECTION:= net |