Date: Sun, 10 Jan 2016 10:04:13 +0000 (UTC) From: Alex Kozlov <ak@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405685 - head/textproc/refdb Message-ID: <201601101004.u0AA4DN3054733@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ak Date: Sun Jan 10 10:04:12 2016 New Revision: 405685 URL: https://svnweb.freebsd.org/changeset/ports/405685 Log: - Fix MYSQL option. We don't have USES mysql yet. - Pet portlint while I'm here Approved by: portmgr blanket Modified: head/textproc/refdb/Makefile Modified: head/textproc/refdb/Makefile ============================================================================== --- head/textproc/refdb/Makefile Sun Jan 10 10:00:40 2016 (r405684) +++ head/textproc/refdb/Makefile Sun Jan 10 10:04:12 2016 (r405685) @@ -38,14 +38,14 @@ OPTIONS_DEFAULT= PGSQL DOCS_BUILD_DEPENDS= xsltproc:${PORTSDIR}/textproc/libxslt \ docbook-xsl>=0:${PORTSDIR}/textproc/docbook-xsl -SHEBANG_FILES= ${WRKSRC}/scripts/* +SHEBANG_FILES= ${WRKSRC}/scripts/* -USE_RC_SUBR= refdbd +USE_RC_SUBR= refdbd .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MMYSQL} -USES+= mysql +USE_MYSQL= yes # If libdbi-drivers has been built without MySQL driver, abort .if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdmysql.so) IGNORE= rebuild databases/libdbi-drivers with MySQL support @@ -55,7 +55,7 @@ BUILD_DEPENDS+= ${LOCALBASE}/lib/dbd:${P CONFIGURE_ARGS+= --with-db-server=mysql .elif ${PORT_OPTIONS:MPGSQL} -USES+= pgsql +USES+= pgsql # If libdbi-drivers has been built without PostgreSQL driver, abort .if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdpgsql.so) IGNORE= rebuild databases/libdbi-drivers with PostgreSQL support
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601101004.u0AA4DN3054733>