svn commit: r405685 - head/textproc/refdb

Alex Kozlov ak at FreeBSD.org
Sun Jan 10 10:04:14 UTC 2016


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


More information about the svn-ports-head mailing list