Date: Tue, 9 Jan 2018 07:40:56 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458513 - in head: Mk Mk/Uses audio/chromaprint audio/nas audio/xmixer audio/xoscope cad/calculix-ccx chinese/libtabe chinese/p5-Lingua-ZH-TaBE databases/libdrizzle databases/ruby-bdb d... Message-ID: <201801090740.w097eu1x060293@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Tue Jan 9 07:40:55 2018 New Revision: 458513 URL: https://svnweb.freebsd.org/changeset/ports/458513 Log: Remove support for variables that have been deprecated for a while. variables deprecation revision WITHOUT_NLS 2013-12-13 r336337 WITH_/WITHOUT_ 2014-02-24 r345870 NOPORT(DOC|EXAMPLE)S 2014-04-19 r351587 WITH_BDB_VER 2016-05-02 r414444 OVERRIDE_LINUX_BASE_PORT 2016-09-05 r421387 WITH_OPENSSL_(BASE|PORT) 2016-06-16 r416965 While there, add an ERROR variable that works like DEV_ERROR, but for user facing errors, and move NOPORTDOCS, NOPORTEXAMPLES and WITHOUT_NLS to it. Cleanup bsd.sanity.mk a bit. Fix fallout. PR: 224613 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D13490 Deleted: head/audio/nas/Makefile.man head/x11-toolkits/tk86/Makefile.man Modified: head/Mk/Uses/bdb.mk head/Mk/Uses/cran.mk head/Mk/Uses/gem.mk head/Mk/bsd.default-versions.mk (contents, props changed) head/Mk/bsd.options.mk (contents, props changed) head/Mk/bsd.port.mk (contents, props changed) head/Mk/bsd.sanity.mk (contents, props changed) head/audio/chromaprint/Makefile (contents, props changed) head/audio/xmixer/Makefile (contents, props changed) head/audio/xoscope/Makefile (contents, props changed) head/cad/calculix-ccx/Makefile (contents, props changed) head/chinese/libtabe/Makefile (contents, props changed) head/chinese/p5-Lingua-ZH-TaBE/Makefile (contents, props changed) head/databases/libdrizzle/Makefile (contents, props changed) head/databases/libdrizzle/pkg-plist (contents, props changed) head/databases/ruby-bdb/Makefile (contents, props changed) head/devel/cvsweb/Makefile (contents, props changed) head/devel/cvsweb3/Makefile (contents, props changed) head/devel/motor/Makefile (contents, props changed) head/dns/dnsjava/Makefile (contents, props changed) head/games/scummvm-tools/Makefile (contents, props changed) head/graphics/mscgen/Makefile (contents, props changed) head/graphics/povray37/Makefile (contents, props changed) head/graphics/xfig/Makefile (contents, props changed) head/lang/fpc/Makefile (contents, props changed) head/lang/icon/Makefile (contents, props changed) head/mail/fastforward/Makefile (contents, props changed) head/net-mgmt/jnettop/Makefile (contents, props changed) head/net/httpry/Makefile (contents, props changed) head/net/p5-Net-Proxy/Makefile (contents, props changed) head/net/ssltunnel-client/Makefile (contents, props changed) head/news/golded+/Makefile (contents, props changed) head/news/leafnode/Makefile (contents, props changed) head/security/cyrus-sasl2/Makefile.common (contents, props changed) head/security/p5-SAVI-Perl/Makefile (contents, props changed) head/security/samhain/Makefile (contents, props changed) head/sysutils/grub2-pcbsd/Makefile (contents, props changed) head/sysutils/webjob/Makefile (contents, props changed) head/textproc/elasticsearch/Makefile (contents, props changed) head/textproc/elasticsearch2/Makefile (contents, props changed) head/textproc/elasticsearch5/Makefile (contents, props changed) head/textproc/par/Makefile (contents, props changed) head/textproc/uim/Makefile (contents, props changed) head/www/rubygem-passenger/Makefile (contents, props changed) Modified: head/Mk/Uses/bdb.mk ============================================================================== --- head/Mk/Uses/bdb.mk Tue Jan 9 07:28:22 2018 (r458512) +++ head/Mk/Uses/bdb.mk Tue Jan 9 07:40:55 2018 (r458513) @@ -13,9 +13,6 @@ # INVALID_BDB_VER # - This variable can be defined when the port does not # support one or more versions of Berkeley DB. -# WITH_BDB_VER -# - User defined global variable to set Berkeley DB version. -# Deprecated, use DEFAULT_VERSIONS+=bdb=xx # <BDB_UNIQUENAME>_WITH_BDB_VER # - User defined port specific variable to set Berkeley DB # version. @@ -59,11 +56,6 @@ _bdb_ARGS?= yes # check if + works properly from test builds 01h12m23s BDB_UNIQUENAME?= ${PKGNAMEPREFIX}${PORTNAME} - -.if defined(WITH_BDB_VER) -WARNING+= "WITH_BDB_VER is deprecated and will be removed on 2016-08-01. Use DEFAULT_VERSIONS+=bdb=${WITH_BDB_VER}" -BDB_DEFAULT:=${WITH_BDB_VER} -.endif _BDB_DEFAULT_save:=${BDB_DEFAULT} Modified: head/Mk/Uses/cran.mk ============================================================================== --- head/Mk/Uses/cran.mk Tue Jan 9 07:28:22 2018 (r458512) +++ head/Mk/Uses/cran.mk Tue Jan 9 07:40:55 2018 (r458513) @@ -47,7 +47,7 @@ do-test: R_POSTCMD_INSTALL_OPTIONS+= -l ${STAGEDIR}${PREFIX}/${R_LIB_DIR} R_POSTCMD_INSTALL_OPTIONS+= --install-tests -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) R_POSTCMD_INSTALL_OPTIONS+= --no-docs --no-html .endif Modified: head/Mk/Uses/gem.mk ============================================================================== --- head/Mk/Uses/gem.mk Tue Jan 9 07:28:22 2018 (r458512) +++ head/Mk/Uses/gem.mk Tue Jan 9 07:40:55 2018 (r458513) @@ -111,7 +111,7 @@ do-install: ${RM} -r ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ext \ ${STAGEDIR}${PREFIX}/${CACHE_DIR} 2> /dev/null || ${TRUE} ${RMDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} 2> /dev/null || ${TRUE} -.if defined(NOPORTDOCS) +.if !${PORT_OPTIONS:MDOCS} -@${RMDIR} ${STAGEDIR}${PREFIX}/${DOC_DIR} .endif .endif @@ -120,7 +120,7 @@ do-install: _USES_install+= 820:gem-autoplist gem-autoplist: @${ECHO} ${GEM_SPEC} >> ${TMPPLIST} -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${FIND} -ds ${STAGEDIR}${PREFIX}/${DOC_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} .endif Modified: head/Mk/bsd.default-versions.mk ============================================================================== --- head/Mk/bsd.default-versions.mk Tue Jan 9 07:28:22 2018 (r458512) +++ head/Mk/bsd.default-versions.mk Tue Jan 9 07:40:55 2018 (r458513) @@ -18,8 +18,7 @@ LOCALBASE?= /usr/local .for lang in APACHE BDB FIREBIRD FORTRAN FPC GCC GHOSTSCRIPT LINUX LUA MYSQL \ PERL5 PGSQL PHP PYTHON PYTHON2 PYTHON3 RUBY SSL TCLTK .if defined(${lang}_DEFAULT) -WARNING+= "The variable ${lang}_DEFAULT is set and it should only be defined through DEFAULT_VERSIONS+=${lang:tl}=${${lang}_DEFAULT} in /etc/make.conf" -WARNING+= "This behaviour has never been supported and will be removed on 2017-01-31" +ERROR+= "The variable ${lang}_DEFAULT is set and it should only be defined through DEFAULT_VERSIONS+=${lang:tl}=${${lang}_DEFAULT} in /etc/make.conf" .endif #.undef ${lang}_DEFAULT .endfor @@ -50,10 +49,6 @@ LINUX_DEFAULT?= c6_64 # Possible values: c6 LINUX_DEFAULT?= c6 .endif -.if defined(OVERRIDE_LINUX_BASE_PORT) -LINUX_DEFAULT:= ${OVERRIDE_LINUX_BASE_PORT} -WARNING+= "OVERRIDE_LINUX_BASE_PORT is deprecated, please use DEFAULT_VERSIONS+=linux=${OVERRIDE_LINUX_BASE_PORT}." -.endif # Possible values: 5.1, 5.2, 5.3 LUA_DEFAULT?= 5.2 # Possible values: 5.5, 5.6, 5.7, 8.0, 5.5m, 10.0m, 10.1m, 10.2m, 5.5p, 5.6p, 5.7p, 5.6w @@ -91,20 +86,7 @@ SAMBA_DEFAULT?= 4.6 .if !defined(SSL_DEFAULT) # If no preference was set, check for an installed base version # but give an installed port preference over it. -. if defined(WITH_OPENSSL_PORT) -. if defined(OPENSSL_PORT) -SSL_DEFAULT:=${OPENSSL_PORT:T} -WARNING+= "Using WITH_OPENSSL_PORT and OPENSSL_PORT in make.conf is deprecated, replace them with DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT} in your make.conf" -. else -SSL_DEFAULT=openssl -WARNING+= "Using WITH_OPENSSL_PORT in make.conf is deprecated, replace it with DEFAULT_VERSIONS+=ssl=openssl in your make.conf" -. endif -. elif defined(WITH_OPENSSL_BASE) -SSL_DEFAULT=base -WARNING+= "Using WITH_OPENSSL_BASE in make.conf is deprecated, replace it with DEFAULT_VERSIONS+=ssl=base in your make.conf" -. elif !defined(WITH_OPENSSL_BASE) && \ - !defined(WITH_OPENSSL_PORT) && \ - !defined(SSL_DEFAULT) && \ +. if !defined(SSL_DEFAULT) && \ !exists(${DESTDIR}/${LOCALBASE}/lib/libcrypto.so) && \ exists(${DESTDIR}/usr/include/openssl/opensslv.h) SSL_DEFAULT= base Modified: head/Mk/bsd.options.mk ============================================================================== --- head/Mk/bsd.options.mk Tue Jan 9 07:28:22 2018 (r458512) +++ head/Mk/bsd.options.mk Tue Jan 9 07:40:55 2018 (r458513) @@ -196,31 +196,8 @@ _OPTIONS_TARGETS= fetch:300:pre fetch:500:do fetch:700 package:300:pre package:500:do package:700:post \ stage:800:post -# Set the default values for the global options, as defined by portmgr -.if !defined(NOPORTDOCS) -PORT_OPTIONS+= DOCS -.else -OPTIONS_WARNINGS+= "NOPORTDOCS" -WITHOUT+= DOCS -OPTIONS_WARNINGS_UNSET+= DOCS -.endif +PORT_OPTIONS+= DOCS NLS EXAMPLES IPV6 -.if !defined(WITHOUT_NLS) -PORT_OPTIONS+= NLS -.else -WITHOUT+= NLS -.endif - -.if !defined(NOPORTEXAMPLES) -PORT_OPTIONS+= EXAMPLES -.else -OPTIONS_WARNINGS+= "NOPORTEXAMPLES" -WITHOUT+= EXAMPLES -OPTIONS_WARNINGS_UNSET+= EXAMPLES -.endif - -PORT_OPTIONS+= IPV6 - # Add per arch options .for opt in ${OPTIONS_DEFINE_${ARCH}} .if empty(OPTIONS_DEFINE:M${opt}) @@ -325,21 +302,6 @@ NEW_OPTIONS:= ${NEW_OPTIONS:N${opt}} . endif . sinclude "${OPTIONS_FILE}.local" -### convert WITH and WITHOUT found in make.conf or reloaded from old optionsfile -# XXX once WITH_DEBUG is not magic any more, do remove the :NDEBUG from here. -.for opt in ${ALL_OPTIONS:NDEBUG} -.if defined(WITH_${opt}) -OPTIONS_WARNINGS+= "WITH_${opt}" -OPTIONS_WARNINGS_SET+= ${opt} -PORT_OPTIONS+= ${opt} -.endif -.if defined(WITHOUT_${opt}) -OPTIONS_WARNINGS+= "WITHOUT_${opt}" -OPTIONS_WARNINGS_UNSET+= ${opt} -PORT_OPTIONS:= ${PORT_OPTIONS:N${opt}} -.endif -.endfor - _OPTIONS_UNIQUENAME= ${PKGNAMEPREFIX}${PORTNAME} .for _k in SET UNSET SET_FORCE UNSET_FORCE .if defined(${_OPTIONS_UNIQUENAME}_${_k}) @@ -348,28 +310,6 @@ WARNING+= "${OPTIONS_NAME}_${_k}= ${${_OPTIONS_UNIQUEN .endif .endfor -.if defined(OPTIONS_WARNINGS) -WARNING+= "You are using the following deprecated options: ${OPTIONS_WARNINGS}" -WARNING+= "If you added them on the command line, you should replace them by" -WARNING+= "WITH=\"${OPTIONS_WARNINGS_SET}\" WITHOUT=\"${OPTIONS_WARNINGS_UNSET}\"" -WARNING+= "" -WARNING+= "If they are global options set in your make.conf, you should replace them with:" -.if defined(OPTIONS_WARNINGS_SET) -WARNING+= "OPTIONS_SET=${OPTIONS_WARNINGS_SET}" -.endif -.if defined(OPTIONS_WARNINGS_UNSET) -WARNING+= "OPTIONS_UNSET=${OPTIONS_WARNINGS_UNSET}" -.endif -WARNING+= "" -WARNING+= "If they are local to this port, you should use:" -.if defined(OPTIONS_WARNINGS_SET) -WARNING+= "${OPTIONS_NAME}_SET=${OPTIONS_WARNINGS_SET}" -.endif -.if defined(OPTIONS_WARNINGS_UNSET) -WARNING+= "${OPTIONS_NAME}_UNSET=${OPTIONS_WARNINGS_UNSET}" -.endif -.endif - ## Finish by using the options set by the port config dialog, if any . for opt in ${OPTIONS_FILE_SET} . if !empty(COMPLETE_OPTIONS_LIST:M${opt}) @@ -471,11 +411,15 @@ PORT_OPTIONS:= ${PORT_OPTIONS:O:u} ## Now some compatibility .if empty(PORT_OPTIONS:MDOCS) -NOPORTDOCS= yes +PLIST_SUB+= PORTDOCS="@comment " +.else +PLIST_SUB+= PORTDOCS="" .endif .if empty(PORT_OPTIONS:MEXAMPLES) -NOPORTEXAMPLES= yes +PLIST_SUB+= PORTEXAMPLES="@comment " +.else +PLIST_SUB+= PORTEXAMPLES="" .endif .if ${PORT_OPTIONS:MDEBUG} Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Tue Jan 9 07:28:22 2018 (r458512) +++ head/Mk/bsd.port.mk Tue Jan 9 07:40:55 2018 (r458513) @@ -1773,18 +1773,6 @@ MAKE_ENV+= WITHOUT_DEBUG_FILES=yes MAKE_ENV+= WITHOUT_KERNEL_SYMBOLS=yes .endif -.if defined(NOPORTDOCS) -PLIST_SUB+= PORTDOCS="@comment " -.else -PLIST_SUB+= PORTDOCS="" -.endif - -.if defined(NOPORTEXAMPLES) -PLIST_SUB+= PORTEXAMPLES="@comment " -.else -PLIST_SUB+= PORTEXAMPLES="" -.endif - CONFIGURE_SHELL?= ${SH} MAKE_SHELL?= ${SH} @@ -4525,7 +4513,7 @@ ${TMPPLIST}: .for _type in EXAMPLES DOCS .if !target(add-plist-${_type:tl}) -.if defined(PORT${_type}) && !defined(NOPORT${_type}) +.if defined(PORT${_type}) && !empty(PORT_OPTIONS:M${_type}) add-plist-${_type:tl}: .for x in ${PORT${_type}} @if ${ECHO_CMD} "${x}"| ${AWK} '$$1 ~ /(\*|\||\[|\]|\?|\{|\}|\$$)/ { exit 1};'; then \ @@ -5308,6 +5296,17 @@ show-warnings: @sleep ${WARNING_WAIT} .endif +.if defined(ERROR) +show-errors: + @${ECHO_MSG} "/!\\ ERRORS /!\\" + @${ECHO_MSG} +.for m in ${ERROR} + @${ECHO_MSG} "${m}" | ${FMT_80} + @${ECHO_MSG} +.endfor + @${FALSE} +.endif + .if defined(DEVELOPER) .if defined(DEV_WARNING) DEV_WARNING_WAIT?= 10 @@ -5356,7 +5355,8 @@ _TARGETS_STAGES= SANITY PKG FETCH EXTRACT PATCH CONFIG _SANITY_SEQ= 050:post-chroot 100:pre-everything \ 125:show-unsupported-system-error 150:check-makefile \ - 200:show-warnings 210:show-dev-warnings 220:show-dev-errors \ + 190:show-errors 200:show-warnings \ + 210:show-dev-errors 220:show-dev-warnings \ 250:check-categories 300:check-makevars \ 350:check-desktop-entries 400:check-depends \ 450:identify-install-conflicts 500:check-deprecated \ Modified: head/Mk/bsd.sanity.mk ============================================================================== --- head/Mk/bsd.sanity.mk Tue Jan 9 07:28:22 2018 (r458512) +++ head/Mk/bsd.sanity.mk Tue Jan 9 07:40:55 2018 (r458513) @@ -3,18 +3,57 @@ # MAINTAINER: portmgr@FreeBSD.org # -.if defined(WITHOUT_NLS) -WARNING+= "WITHOUT_NLS is deprecated use OPTIONS_UNSET=NLS instead" +# Warnings for everyone + +.for opt in ${ALL_OPTIONS:NDEBUG} +.if defined(WITH_${opt}) +WARNING+= "WITH_${opt} is unsupported, use WITH=${opt} on the command line, or one of these in /etc/make.conf, OPTIONS_SET+=${opt} to set it globally, or ${OPTIONS_NAME}_SET+=${opt} for only this port." .endif +.if defined(WITHOUT_${opt}) +WARNING+= "WITHOUT_${opt} is unsupported, use WITHOUT=${opt} on the command line, or one of these in /etc/make.conf, OPTIONS_UNSET+=${opt} to set it globally, or ${OPTIONS_NAME}_UNSET+=${opt} for only this port." +.endif +.endfor -.if defined(WITH_NEW_XORG) || defined(WITHOUT_NEW_XORG) -WARNING+= "WITH_NEW_XORG and WITHOUT_NEW_XORG knobs were removed and have no effect" +ALL_UNSUPPORTED= WITHOUT_NLS NOPORTDOCS NOPORTEXAMPLES WITH_BDB_VER \ + OVERRIDE_LINUX_BASE_PORT WITH_OPENSSL_PORT \ + WITH_OPENSSL_BASE +ALL_DEPRECATED= +ALL_NOTNEEDED= WITH_NEW_XORG WITHOUT_NEW_XORG WITH_KMS WITHOUT_KMS + +WITHOUT_NLS_ALT= "OPTIONS_UNSET=NLS, or ${OPTIONS_NAME}_UNSET+=NLS instead" +NOPORTDOCS_ALT= "OPTIONS_UNSET=DOCS, or ${OPTIONS_NAME}_UNSET+=DOCS instead" +NOPORTEXAMPLES_ALT= "OPTIONS_UNSET=EXAMPLES, or ${OPTIONS_NAME}_UNSET+=EXAMPLES instead" +WITH_BDB_VER_ALT= "DEFAULT_VERSIONS+=bdb=${WITH_BDB_VER}" +OVERRIDE_LINUX_BASE_PORT_ALT= "DEFAULT_VERSIONS+=linux=${OVERRIDE_LINUX_BASE_PORT}" +WITH_OPENSSL_PORT_ALT= "DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT:Uopenssl} in your make.conf" +WITH_OPENSSL_BASE_ALT= "DEFAULT_VERSIONS+=ssl=base in your make.conf" +WITH_NEW_XORG_ALT= "removed and has no effect" +WITHOUT_NEW_XORG_ALT= ${WITH_NEW_XORG_ALT} +WITH_MKS_ALT= "removed and has no effect" +WITHOUT_MKS_ALT= ${WITH_MKS_ALT} + +.for a in ${ALL_DEPRECATED} +.if defined(${a}) +WARNING+= "${a} is deprecated, please use ${${a}_ALT}" .endif +.endfor -.if defined(WITH_KMS) || defined(WITHOUT_KMS) -WARNING+= "WITH_KMS was removed and has no effect" +.for a in ${ALL_NOTNEEDED} +.if defined(${a}) +WARNING+= "${a} is not needed: ${${a}_REASON}" .endif +.endfor +.for a in ${ALL_UNSUPPORTED} +.if defined(${a}) +ERROR+= "${a} is unsupported, please use ${${a}_ALT}" +.endif +.endfor + + + +# Warnings only when DEVELOPER=yes + .if exists(${.CURDIR}/../../Mk/bsd.port.mk) .if ${.CURDIR:H:T} != ${PKGCATEGORY} DEV_ERROR+= "The first entry in CATEGORIES should be the directory where the port lives" @@ -23,30 +62,10 @@ DEV_ERROR+= "The first entry in CATEGORIES should be t DEV_WARNING+= "Not validating first entry in CATEGORIES due to being outside of PORTSDIR. Please ensure this is proper when committing." .endif -#.if defined(WITHOUT_X11) -#WARNING+= "WITHOUT_X11 is deprecated use X11 option instead" -#.endif - .if defined(USE_PERL5) && ${USE_PERL5} == yes DEV_ERROR+= "USE_PERL5=yes is unsupported, please use USES=perl5 instead" .endif -.if defined(USE_KDEBASE_VER) -DEV_ERROR+= "USE_KDEBASE_VER is unsupported" -.endif - -.if defined(USE_KDELIBS_VER) -DEV_ERROR+= "USE_KDELIBS_VER is unsupported" -.endif - -.if defined(USE_QT_VER) -DEV_ERROR+= "USE_QT_VER is unsupported" -.endif - -.if defined(USE_GHOSTSCRIPT) || defined(USE_GHOSTSCRIPT_BUILD) || defined(USE_GHOSTSCRIPT_RUN) -DEV_ERROR+= "USE_GHOSTSCRIPT is unsupported, please use USES=ghostscript instead" -.endif - .if !empty(LIB_DEPENDS:M*/../*) DEV_ERROR+= "LIB_DEPENDS contains unsupported relative path to dependency" .endif @@ -79,35 +98,10 @@ DEV_WARNING+= "USE_GNOME=desktopfileutils is deprecate DEV_ERROR+= "All LIB_DEPENDS should use the new format and start out with lib. \(libfoo.so vs foo.so\)" .endif -.if defined(USE_TCL) || defined(USE_TCL_BUILD) || defined(USE_TCL_RUN) || defined(USE_TCL_WRAPPER) || \ - defined(USE_TK) || defined(USE_TK_BUILD) || defined(USE_TK_RUN) || defined(USE_TK_WRAPPER) -DEV_ERROR+= "USE_TCL and USE_TK are no longer supported, please use USES=tcl or USES=tk" -.endif - -# print warning if no reason given for NO_STAGE -.if defined(NO_STAGE) -DEV_ERROR+= "NO_STAGE is unsupported, convert port to stage directory:" -DEV_ERROR+= "https://wiki.freebsd.org/ports/StageDir" -.endif - -.for a in 1 2 3 4 5 6 7 8 9 L N -.if defined(MAN${a}) -DEV_WARNING+= "MAN${a} macros are deprecated when using stage directory" -.endif -.endfor - -.if defined(MLINKS) -DEV_WARNING+= "MLINKS macros are deprecated when using stage directory" -.endif - .if defined(_PREMKINCLUDED) DEV_ERROR+= "you cannot include bsd.port[.pre].mk twice" .endif -.if defined(USE_DOS2UNIX) -DEV_ERROR+= "USE_DOS2UNIX is no longer supported, please use USES=dos2unix" -.endif - .if defined(LICENSE) .if ${LICENSE:MBSD} DEV_WARNING+= "LICENSE must not contain BSD, instead use BSD[234]CLAUSE" @@ -143,30 +137,15 @@ DEV_ERROR+= "USE_PYTHON_BUILD is no longer supported, .endif .endif -.if defined(PYDISTUTILS_INSTALLNOSINGLE) -DEV_WARNING+= "PYDISTUTILS_INSTALLNOSINGLE is deprecated, please do not use it anymore" -.endif - -.if defined(INSTALLS_EGGINFO) -DEV_ERROR+= "INSTALLS_EGGINFO is no longer supported, please add the entry directly to the plist" -.endif - -.if defined(WANT_SDL) -DEV_ERROR+= "WANT_SDL is no longer supported. If you need SDL, use USE_SDL, if you need optional dependency, use options" -.endif - .if defined(USE_RC_SUBR) && ${USE_RC_SUBR:tu} == YES DEV_ERROR+= "USE_RC_SUBR=yes has not been supported for a long time, remove it." .endif -.if defined(USE_RUBYGEMS) && !defined(RUBYGEM_AUTOPLIST) -DEV_ERROR+= "USE_RUBYGEMS is no longer supported, please use USES=gem:noautoplist" +.if defined(USE_TCL) || defined(USE_TCL_BUILD) || defined(USE_TCL_RUN) || defined(USE_TCL_WRAPPER) || \ + defined(USE_TK) || defined(USE_TK_BUILD) || defined(USE_TK_RUN) || defined(USE_TK_WRAPPER) +DEV_ERROR+= "USE_TCL and USE_TK are no longer supported, please use USES=tcl or USES=tk" .endif -.if defined(RUBYGEM_AUTOPLIST) -DEV_ERROR+= "RUBYGEM_AUTOPLIST is no longer supported, please use USES=gem" -.endif - SANITY_UNSUPPORTED= USE_OPENAL USE_FAM USE_MAKESELF USE_ZIP USE_LHA USE_CMAKE \ USE_READLINE USE_ICONV PERL_CONFIGURE PERL_MODBUILD \ USE_PERL5_BUILD USE_PERL5_RUN USE_DISPLAY USE_FUSE \ @@ -176,13 +155,21 @@ SANITY_UNSUPPORTED= USE_OPENAL USE_FAM USE_MAKESELF US USE_PYTHON_PREFIX USE_BZIP2 USE_XZ USE_PGSQL NEED_ROOT \ UNIQUENAME LATEST_LINK USE_SQLITE USE_FIREBIRD USE_PHPEXT \ USE_ZENDEXT USE_PHP_BUILD USE_BDB PLIST_DIRSTRY USE_RCORDER \ - USE_OPENSSL WANT_GNOME -SANITY_DEPRECATED= PYTHON_PKGNAMESUFFIX USE_AUTOTOOLS \ + USE_OPENSSL WANT_GNOME RUBYGEM_AUTOPLIST WANT_SDL INSTALLS_EGGINFO \ + USE_DOS2UNIX NO_STAGE USE_RUBYGEMS USE_GHOSTSCRIPT \ + USE_GHOSTSCRIPT_BUILD USE_GHOSTSCRIPT_RUN +SANITY_DEPRECATED= PYTHON_PKGNAMESUFFIX USE_AUTOTOOLS MLINKS \ USE_MYSQL WANT_MYSQL_VER \ USE_PHPIZE WANT_PHP_CLI WANT_PHP_CGI WANT_PHP_MOD \ - WANT_PHP_WEB WANT_PHP_EMB -SANITY_NOTNEEDED= CMAKE_NINJA WX_UNICODE + WANT_PHP_WEB WANT_PHP_EMB PYDISTUTILS_INSTALLNOSINGLE +SANITY_NOTNEEDED= CMAKE_NINJA WX_UNICODE USE_KDEBASE_VER \ + USE_KDELIBS_VER USE_QT_VER +.for a in 1 2 3 4 5 6 7 8 9 L N +SANITY_DEPRECATED+= MAN${a} +MAN${a}_ALT= it more, obsoleted by staging +.endfor + USE_AUTOTOOLS_ALT= USES=autoreconf and GNU_CONFIGURE=yes USE_OPENAL_ALT= USES=openal USE_FAM_ALT= USES=fam @@ -237,6 +224,17 @@ WANT_PHP_WEB_ALT= USES=php:web WANT_PHP_EMB_ALT= USES=php:embed USE_RCORDER_ALT= USE_RC_SUBR=${USE_RCORDER} WANT_GNOME_ALT= USES=gnome +MLINKS_ALT= it no more +USE_DOS2UNIX_ALT= USES=dos2unix +PYDISTUTILS_INSTALLNOSINGLE_ALT= it no more +INSTALLS_EGGINFO_ALT= an entry in the plist +WANT_SDL_ALT= USE_SDL for SDL directly, if you need optional dependency, use options +RUBYGEM_AUTOPLIST_ALT= USES=gem +USE_RUBYGEMS_ALT= USES=gem +USE_GHOSTSCRIPT= USES=ghostscript +USE_GHOSTSCRIPT_BUILD= USES=ghostscript +USE_GHOSTSCRIPT_RUN= USES=ghostscript +NO_STAGE_ALT= https://wiki.freebsd.org/ports/StageDir to convert your port to staging .for a in ${SANITY_DEPRECATED} .if defined(${a}) Modified: head/audio/chromaprint/Makefile ============================================================================== --- head/audio/chromaprint/Makefile Tue Jan 9 07:28:22 2018 (r458512) +++ head/audio/chromaprint/Makefile Tue Jan 9 07:40:55 2018 (r458513) @@ -27,9 +27,7 @@ OPTIONS_DEFINE= DOXYGEN TEST DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen \ dot:graphics/graphviz DOXYGEN_PORTDOCS= * -# PORTDOCS macro won't work if NOPORTDOCS is defined or if DOCS is disabled DOXYGEN_IMPLIES= DOCS -.undef NOPORTDOCS TEST_BUILD_DEPENDS= ${NONEXISTENT}:devel/googletest:patch TEST_CMAKE_BOOL= BUILD_TESTS Modified: head/audio/xmixer/Makefile ============================================================================== --- head/audio/xmixer/Makefile Tue Jan 9 07:28:22 2018 (r458512) +++ head/audio/xmixer/Makefile Tue Jan 9 07:40:55 2018 (r458513) @@ -25,7 +25,6 @@ OPTIONS_DEFINE= GTK1 .if ${PORT_OPTIONS:MGTK1} USE_GNOME+= gtk12 PROGRAMS= xmixer xgmixer -MLINKS+= xmixer.1 xgmixer.1 PLIST_FILES+= bin/xgmixer .else USE_XORG= x11 xt ice xaw Modified: head/audio/xoscope/Makefile ============================================================================== --- head/audio/xoscope/Makefile Tue Jan 9 07:28:22 2018 (r458512) +++ head/audio/xoscope/Makefile Tue Jan 9 07:40:55 2018 (r458513) @@ -15,6 +15,4 @@ USES= gmake pkgconfig tar:tgz USE_GNOME= gtk20 USE_XORG= x11 -MAN1= xoscope.1 - .include <bsd.port.mk> Modified: head/cad/calculix-ccx/Makefile ============================================================================== --- head/cad/calculix-ccx/Makefile Tue Jan 9 07:28:22 2018 (r458512) +++ head/cad/calculix-ccx/Makefile Tue Jan 9 07:40:55 2018 (r458513) @@ -56,9 +56,6 @@ DOCSDIR= ${PREFIX}/share/doc/CalculiX .if $(PORT_OPTIONS:MEXAMPLES) DISTFILES+= ${DIST_EXAMPLES} EXTRACT_ONLY+= ${DIST_EXAMPLES} -PLIST_SUB= PORTEXAMPLES="" -.else -PLIST_SUB= PORTEXAMPLES="@comment " .endif .if ${ARCH} == "sparc64" Modified: head/chinese/libtabe/Makefile ============================================================================== --- head/chinese/libtabe/Makefile Tue Jan 9 07:28:22 2018 (r458512) +++ head/chinese/libtabe/Makefile Tue Jan 9 07:40:55 2018 (r458513) @@ -35,17 +35,6 @@ X11_CONFIGURE_WITH= x .include <bsd.port.options.mk> -pre-everything:: -.if defined(WITH_BDB_VER) -pre-everything:: - @${ECHO_CMD} "" - @${ECHO_CMD} "WARNING:" - @${ECHO_CMD} " You have defined WITH_BDB_VER. Make sure you use the same" - @${ECHO_CMD} " db version for all ports that use libtabe, such as xcin." - @${ECHO_CMD} " Otherwise, ports that use libtabe may not work correctly." - @${ECHO_CMD} "" -.endif - post-patch-X11-off: ${REINPLACE_CMD} -e '/all:/s/ bims//; /bims/d' \ ${WRKSRC}/src/Makefile.in Modified: head/chinese/p5-Lingua-ZH-TaBE/Makefile ============================================================================== --- head/chinese/p5-Lingua-ZH-TaBE/Makefile Tue Jan 9 07:28:22 2018 (r458512) +++ head/chinese/p5-Lingua-ZH-TaBE/Makefile Tue Jan 9 07:40:55 2018 (r458513) @@ -20,18 +20,4 @@ OBSOLETE_BDB_VAR= WITH_DB CONFIGURE_ARGS= DB="${BDB_LIB_NAME}" -pre-everything:: - @${ECHO_CMD} "" - @${ECHO_CMD} "You may specify db version to use:" - @${ECHO_CMD} "" - @${ECHO_CMD} " WITH_BDB_VER=version (Default 41)" -.if defined(WITH_BDB_VER) - @${ECHO_CMD} "" - @${ECHO_CMD} "WARNING:" - @${ECHO_CMD} " You have defined WITH_BDB_VER. Make sure you use the same" - @${ECHO_CMD} " db version that libtabe uses. Otherwise, this port may" - @${ECHO_CMD} " not work correctly." -.endif - @${ECHO_CMD} "" - .include <bsd.port.mk> Modified: head/databases/libdrizzle/Makefile ============================================================================== --- head/databases/libdrizzle/Makefile Tue Jan 9 07:28:22 2018 (r458512) +++ head/databases/libdrizzle/Makefile Tue Jan 9 07:40:55 2018 (r458513) @@ -15,7 +15,8 @@ LICENSE= BSD3CLAUSE LIB_DEPENDS= libsqlite3.so:databases/sqlite3 -OPTIONS_DEFINE= DOXYGEN EXAMPLES DOCS +OPTIONS_DEFINE= DOXYGEN EXAMPLES +OPTIONS_SUB= yes GNU_CONFIGURE= yes USES= gmake libtool pathfix @@ -28,12 +29,9 @@ SAMPLE_PROGS= client pipe_query proxy server simple \ .include <bsd.port.options.mk> -.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN} +.if ${PORT_OPTIONS:MDOXYGEN} BUILD_DEPENDS+= doxygen>=0:devel/doxygen ALL_TARGET= all doxygen -PLIST_SUB+= PORTDOCS="" -.else -PLIST_SUB+= PORTDOCS="@comment " .endif .if ${ARCH} == "i386" @@ -41,7 +39,7 @@ CONFIGURE_ARGS+=--disable-64bit .endif post-install: -.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN} +.if ${PORT_OPTIONS:MDOXYGEN} @${INSTALL} -d ${STAGEDIR}${DOCSDIR} @cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .endif Modified: head/databases/libdrizzle/pkg-plist ============================================================================== --- head/databases/libdrizzle/pkg-plist Tue Jan 9 07:28:22 2018 (r458512) +++ head/databases/libdrizzle/pkg-plist Tue Jan 9 07:40:55 2018 (r458513) @@ -26,365 +26,365 @@ lib/libdrizzle.so lib/libdrizzle.so.0 lib/libdrizzle.so.0.0.8 libdata/pkgconfig/libdrizzle.pc -%%PORTDOCS%%%%DOCSDIR%%/Doxyfile.api -%%PORTDOCS%%%%DOCSDIR%%/Doxyfile.dev -%%PORTDOCS%%%%DOCSDIR%%/api/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/bc_s.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/bdwn.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/classes.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/client_8c.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/client_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/closed.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/column_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/column_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/column__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/column__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/column__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/column__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/command__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/command__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/command__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/command__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/conn_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/conn_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/conn__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/conn__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/conn__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/conn__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/constants_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/constants_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/dir_49e56c817e5e54854c35e136979f97ca.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/dir_d28a4824dc47e487b107a5db32ef43c4.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/dir_e6d885289e332b589fc0bd695d13345c.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/doc.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/api/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/doxygen_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/doxygen_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/drizzle_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/drizzle_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/drizzle__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/drizzle__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/drizzle__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/drizzle__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/dynsections.js -%%PORTDOCS%%%%DOCSDIR%%/api/html/field__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/field__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/field__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/field__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/folderclosed.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/folderopen.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_c.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_d.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_defs.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_enum.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_eval.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_eval_c.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_eval_d.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_func.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_func_d.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_func_m.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_func_p.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_func_r.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_func_s.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_func_u.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_m.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_p.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_r.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_s.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_type.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/globals_u.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__client.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__client__interface.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__column.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__column__client.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__column__server.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__command__client.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__command__server.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__con.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__con__client.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__con__server.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__constants.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__field__client.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__field__server.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__handshake__client.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__handshake__server.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__macros.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__query.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__result.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__result__client.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__result__server.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__row__client.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__row__server.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__server.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__server__interface.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/group__drizzle__types.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/handshake__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/handshake__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/handshake__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/handshake__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/jquery.js -%%PORTDOCS%%%%DOCSDIR%%/api/html/menu.js -%%PORTDOCS%%%%DOCSDIR%%/api/html/menudata.js -%%PORTDOCS%%%%DOCSDIR%%/api/html/modules.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/nav_f.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/nav_g.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/nav_h.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/open.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/pages.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/pipe__query_8c.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/pipe__query_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/proxy_8c.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/proxy_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/query_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/query_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/result_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/result_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/result__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/result__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/result__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/result__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/row__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/row__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/row__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/row__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/server_8c.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/server_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/simple_8c.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/simple_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/simple__multi_8c.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/simple__multi_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/splitbar.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/sqlite__server_8c.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/sqlite__server_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/structclient__con__st.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/structclient__st.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/structsqlite__server.html -%%PORTDOCS%%%%DOCSDIR%%/api/html/sync_off.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/sync_on.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/tab_a.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/tab_b.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/tab_h.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/tab_s.png -%%PORTDOCS%%%%DOCSDIR%%/api/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/api/html/todo.html -%%PORTDOCS%%%%DOCSDIR%%/api_header.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/bc_s.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/bdwn.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/classes.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/client_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/client_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/closed.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/column_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/column_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/column_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/column_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/column__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/column__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/column__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/column__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/command_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/command_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/command__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/command__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/command__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/command__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/common_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/common_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn__local_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn__local_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn__uds_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/conn__uds_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/constants_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/constants_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/dir_49e56c817e5e54854c35e136979f97ca.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/dir_d28a4824dc47e487b107a5db32ef43c4.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/dir_e6d885289e332b589fc0bd695d13345c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/doc.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/dev/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/doxygen_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/doxygen_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/drizzle_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/drizzle_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/drizzle_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/drizzle_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/drizzle__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/drizzle__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/drizzle__local_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/drizzle__local_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/drizzle__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/drizzle__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/dynsections.js -%%PORTDOCS%%%%DOCSDIR%%/dev/html/field_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/field_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/field__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/field__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/field__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/field__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/folderclosed.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/folderopen.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_b.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_d.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_defs.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_enum.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_eval.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_eval_c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_eval_d.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_func.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_func_c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_func_d.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_func_m.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_func_p.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_func_r.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_func_s.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_func_u.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_l.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_m.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_p.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_r.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_s.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_type.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_u.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/globals_vars.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__client.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__client__interface.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__column.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__column__client.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__column__server.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__command__client.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__command__server.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__con.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__con__client.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__con__local.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__con__server.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__con__static.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__constants.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__field__client.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__field__server.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__handshake__client.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__handshake__server.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__local.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__macros.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__pack.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__pack__private.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__query.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__result.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__result__client.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__result__server.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__row__client.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__row__server.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__server.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__server__interface.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__state.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__static.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__drizzle__types.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/group__sha1.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/handshake_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/handshake_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/handshake__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/handshake__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/handshake__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/handshake__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/jquery.js -%%PORTDOCS%%%%DOCSDIR%%/dev/html/menu.js -%%PORTDOCS%%%%DOCSDIR%%/dev/html/menudata.js -%%PORTDOCS%%%%DOCSDIR%%/dev/html/modules.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/nav_f.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/nav_g.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/nav_h.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/open.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/pack_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/pack_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/pack_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/pack_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/pages.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/pipe__query_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/pipe__query_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/proxy_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/proxy_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/query_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/query_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/query_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/query_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/result_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/result_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/result_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/result_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/result__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/result__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/result__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/result__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/row_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/row_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/row__client_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/row__client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/row__server_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/row__server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/server_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/server_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/sha1_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/sha1_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/sha1_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/sha1_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/simple_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/simple_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/simple__multi_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/simple__multi_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/splitbar.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/sqlite__server_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/sqlite__server_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/state_8c.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/state_8c_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/state_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/state_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structSHA1__CTX.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structclient__con__st.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structclient__st.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structdrizzle__column__st.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structdrizzle__con__st.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structdrizzle__con__tcp__st.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structdrizzle__con__uds__st.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structdrizzle__query__st.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structdrizzle__result__st.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structdrizzle__st.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structs_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structs_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/structsqlite__server.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/sync_off.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/sync_on.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/tab_a.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/tab_b.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/tab_h.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/tab_s.png -%%PORTDOCS%%%%DOCSDIR%%/dev/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/dev/html/todo.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/visibility_8h.html -%%PORTDOCS%%%%DOCSDIR%%/dev/html/visibility_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/dev_header.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen.h +%%DOXYGEN%%%%DOCSDIR%%/Doxyfile.api +%%DOXYGEN%%%%DOCSDIR%%/Doxyfile.dev +%%DOXYGEN%%%%DOCSDIR%%/api/html/annotated.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/bc_s.png +%%DOXYGEN%%%%DOCSDIR%%/api/html/bdwn.png +%%DOXYGEN%%%%DOCSDIR%%/api/html/classes.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/client_8c.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/client_8c_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/closed.png +%%DOXYGEN%%%%DOCSDIR%%/api/html/column_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/column_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/column__client_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/column__client_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/column__server_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/column__server_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/command__client_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/command__client_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/command__server_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/command__server_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/conn_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/conn_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/conn__client_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/conn__client_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/conn__server_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/conn__server_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/constants_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/constants_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/dir_49e56c817e5e54854c35e136979f97ca.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/dir_d28a4824dc47e487b107a5db32ef43c4.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/dir_e6d885289e332b589fc0bd695d13345c.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/doc.png +%%DOXYGEN%%%%DOCSDIR%%/api/html/doxygen.css +%%DOXYGEN%%%%DOCSDIR%%/api/html/doxygen.png +%%DOXYGEN%%%%DOCSDIR%%/api/html/doxygen_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/doxygen_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/drizzle_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/drizzle_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/drizzle__client_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/drizzle__client_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/drizzle__server_8h.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/drizzle__server_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/api/html/dynsections.js +%%DOXYGEN%%%%DOCSDIR%%/api/html/field__client_8h.html *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801090740.w097eu1x060293>