Marcus Meissner
b264302d00
- Add back init scripts, systemd units aren't ready yet - Add python3-bind subpackage to allow python bind interactions - Sync configure options with RH package and remove unused ones * Enable python3 * Enable gssapi * Enable dnssec scripts - Drop idnkit from the build, the bind uses libidn since 2007 to run all the resolutions in dig/etc. bsc#1030306 - Add patch to make sure we build against system idn: * bind-99-libidn.patch - Refresh patch: * pie_compile.diff - Remove patches that are unused due to above: * idnkit-powerpc-ltconfig.patch * runidn.diff - drop bind-openssl11.patch (merged upstream) - Remove systemd conditionals as we are not building on sle11 anyway - Force the systemd to be base for the initscript deployment - Bump up version of most of the libraries - Rename the subpackages to match the version updates - Add macros for easier handling of the library package names - Drop more unneeded patches * dns_dynamic_db.patch (upstream) OBS-URL: https://build.opensuse.org/request/show/545259 OBS-URL: https://build.opensuse.org/package/show/network/bind?expand=0&rev=224
16 lines
858 B
Diff
16 lines
858 B
Diff
Index: bind-9.11.2/bin/named/Makefile.in
|
|
===================================================================
|
|
--- bind-9.11.2.orig/bin/named/Makefile.in 2017-07-24 07:36:50.000000000 +0200
|
|
+++ bind-9.11.2/bin/named/Makefile.in 2017-08-15 10:27:54.263889946 +0200
|
|
@@ -168,9 +168,7 @@ installdirs:
|
|
install:: named@EXEEXT@ lwresd@EXEEXT@ installdirs
|
|
${LIBTOOL_MODE_INSTALL} ${INSTALL_PROGRAM} named@EXEEXT@ ${DESTDIR}${sbindir}
|
|
(cd ${DESTDIR}${sbindir}; rm -f lwresd@EXEEXT@; @LN@ named@EXEEXT@ lwresd@EXEEXT@)
|
|
- ${INSTALL_DATA} ${srcdir}/named.8 ${DESTDIR}${mandir}/man8
|
|
- ${INSTALL_DATA} ${srcdir}/lwresd.8 ${DESTDIR}${mandir}/man8
|
|
- ${INSTALL_DATA} ${srcdir}/named.conf.5 ${DESTDIR}${mandir}/man5
|
|
+ for m in ${MANPAGES}; do ${INSTALL_DATA} ${srcdir}/$$m ${DESTDIR}${mandir}/man$${m##*.}; done
|
|
|
|
uninstall::
|
|
rm -f ${DESTDIR}${mandir}/man5/named.conf.5
|