# # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2020, Michal Nowak # Copyright (c) 2022, Niklas Poslovski # Copyright (c) 2023, Friedrich Kink # USE_DEFAULT_TEST_TRANSFORMS= yes include ../../../make-rules/shared-macros.mk COMPONENT_TEST_DIR = $(@D)/tests COMPONENT_NAME= bind COMPONENT_VERSION= 9.18.21 COMPONENT_SUMMARY= BIND DNS name server and configuration tools. COMPONENT_DESCRIPTION= BIND is open source software that implements the Domain Name System \ (DNS) protocols for the Internet. This package contains the DNS \ server 'named' and tools used to setup and validate configuration. COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION) COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.xz COMPONENT_PROJECT_URL= https://www.isc.org/software/bind/ COMPONENT_ARCHIVE_HASH= sha256:a556be22505d9ea4f9c6717aee9c549739c68498aff3ca69035787ecc648fec5 COMPONENT_ARCHIVE_URL= https://ftp.isc.org/isc/bind9/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE) COMPONENT_FMRI= network/dns/$(COMPONENT_NAME) COMPONENT_CLASSIFICATION= Applications/Internet COMPONENT_LICENSE= MPL v2.0 COMPONENT_LICENSE_FILE= COPYRIGHT include $(WS_MAKE_RULES)/common.mk PKG_MACROS += PYVER=$(PYTHON_VERSION) COMPONENT_PREP_ACTION= ( cd $(@D) && autoreconf -fi ) # Missing files in build dir without this (mainly man pages). COMPONENT_PRE_CONFIGURE_ACTION= ( $(CLONEY) $(SOURCE_DIR) $(@D) ) CFLAGS += $(CPP_XPG6MODE) # Build. # # FYI, The configure options are displayed by 'named -V'. Previously # that was overriden by setting CONFIGARGS to hide build server # pathnames. # DNS libraries are in usr/lib/dns - Override settings from configure.mk CONFIGURE_LIBDIR.64= $(CONFIGURE_PREFIX)/lib/dns/$(MACH64) CONFIGURE_OPTIONS += --disable-static CONFIGURE_OPTIONS += --sysconfdir=/etc CONFIGURE_OPTIONS += --localstatedir=/var CONFIGURE_OPTIONS += --with-openssl=/usr CONFIGURE_OPTIONS += --enable-warn-error CONFIGURE_OPTIONS += --enable-fixed-rrset CONFIGURE_OPTIONS += --enable-full-report CONFIGURE_OPTIONS += --with-cmocka CONFIGURE_OPTIONS += --with-gssapi CONFIGURE_OPTIONS += --with-libidn2 CONFIGURE_OPTIONS += --with-libxml2 CONFIGURE_OPTIONS += --with-json-c CONFIGURE_OPTIONS += --with-libnghttp2=yes CONFIGURE_OPTIONS += --enable-pthread-rwlock CONFIGURE_OPTIONS += --with-readline=readline CONFIGURE_OPTIONS += --with-tuning=default CONFIGURE_OPTIONS += --disable-linux-caps CONFIGURE_OPTIONS += READLINE_CFLAGS=-I/usr/include/readline CONFIGURE_OPTIONS += READLINE_LIBS="-lreadline -ltermcap" # Install. # # Currently manual pages are distributed from pkg:/system/manual@. # While there are some changes in our manuals, additions to named(1M) for SMF - that could be fixed # by a patch. # # In addition to BIND deliverables we also deliver SMF files and # migration notes. There is no need to install these extras into the # prototype directory, they are simply referenced in relevant manifest # (p5m) file. COMPONENT_TEST_ENV_CMD = COMPONENT_TEST_ENV += PATH=$(PATH.gnu) COMPONENT_TEST_ENV += LC_ALL=C.UTF-8 # The user running the test needs an profiles=Network Management entry in /etc/user_attr in order to successfully run the following ifconfig.sh up script: COMPONENT_PRE_TEST_ACTION= ( cd $(BUILD_DIR_64)/bin/tests/system && pfexec sh ./ifconfig.sh up ) COMPONENT_POST_TEST_ACTION= ( cd $(BUILD_DIR_64)/bin/tests/system && pfexec sh ./ifconfig.sh down ) # required for tests TEST_REQUIRED_PACKAGES += library/cmocka # Auto-generated dependencies REQUIRED_PACKAGES += SUNWcs REQUIRED_PACKAGES += database/lmdb REQUIRED_PACKAGES += library/json-c REQUIRED_PACKAGES += library/libidn2 REQUIRED_PACKAGES += library/libuv REQUIRED_PACKAGES += library/libxml2 REQUIRED_PACKAGES += library/nghttp2 REQUIRED_PACKAGES += library/readline REQUIRED_PACKAGES += library/security/openssl-31 REQUIRED_PACKAGES += library/zlib REQUIRED_PACKAGES += service/security/kerberos-5 REQUIRED_PACKAGES += shell/ksh93 REQUIRED_PACKAGES += system/library REQUIRED_PACKAGES += system/library/security/gss