diff options
author | ak <ak@FreeBSD.org> | 2016-01-10 18:04:12 +0800 |
---|---|---|
committer | ak <ak@FreeBSD.org> | 2016-01-10 18:04:12 +0800 |
commit | c700479f0e9e8d9a1b2ca960bc0467a6f05b8c1f (patch) | |
tree | 0e4245e77188bad584ffaecfd902e9055f530ada /textproc | |
parent | 731d8c6f570df21afc68a559232e08d9a4e478bb (diff) | |
download | freebsd-ports-gnome-c700479f0e9e8d9a1b2ca960bc0467a6f05b8c1f.tar.gz freebsd-ports-gnome-c700479f0e9e8d9a1b2ca960bc0467a6f05b8c1f.tar.zst freebsd-ports-gnome-c700479f0e9e8d9a1b2ca960bc0467a6f05b8c1f.zip |
- Fix MYSQL option. We don't have USES mysql yet.
- Pet portlint while I'm here
Approved by: portmgr blanket
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/refdb/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/textproc/refdb/Makefile b/textproc/refdb/Makefile index 3888409ba0a0..28fdc9e17b13 100644 --- a/textproc/refdb/Makefile +++ b/textproc/refdb/Makefile @@ -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:${PORTSDIR}/databases/libdbi-drivers 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 |