Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F109260024
D44662.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
33 KB
Referenced Files
None
Subscribers
None
D44662.diff
View Options
diff --git a/Mk/Uses/mysql.mk b/Mk/Uses/mysql.mk
--- a/Mk/Uses/mysql.mk
+++ b/Mk/Uses/mysql.mk
@@ -19,6 +19,9 @@
# MYSQL_VER
# Detected MySQL version.
#
+# DBD_MYSQL
+# Set compatible p5-DBD-mysql version
+#
# MAINTAINER: ports@FreeBSD.org
.if !defined(_INCLUDE_USES_MYSQL_MK)
@@ -142,4 +145,10 @@
IGNORE= cannot install: unknown MySQL version: ${MYSQL_VER}
. endif # Check for correct libs
+. if ${MYSQL_FLAVOUR} == mariadb
+DBD_MYSQL= p5-DBD-mysql4>=0:databases/p5-DBD-mysql4
+. else
+DBD_MYSQL= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+. endif
+
.endif
diff --git a/comms/atslog/Makefile b/comms/atslog/Makefile
--- a/comms/atslog/Makefile
+++ b/comms/atslog/Makefile
@@ -1,6 +1,6 @@
PORTNAME= atslog
PORTVERSION= 2.1.1
-PORTREVISION= 9
+PORTREVISION= 10
CATEGORIES= comms
MASTER_SITES= BERLIOS
@@ -35,8 +35,8 @@
WWWGD_DESC= Graphic reports
MYSQL_USES= mysql
-MYSQL_BUILD_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_BUILD_DEPENDS= ${DBD_MYSQL}
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
PGSQL_USES= pgsql
PGSQL_BUILD_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg
diff --git a/databases/innotop/Makefile b/databases/innotop/Makefile
--- a/databases/innotop/Makefile
+++ b/databases/innotop/Makefile
@@ -1,5 +1,6 @@
PORTNAME= innotop
PORTVERSION= 1.13.0
+PORTREVISION= 1
DISTVERSIONPREFIX= v
CATEGORIES= databases
@@ -10,7 +11,7 @@
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
-BUILD_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+BUILD_DEPENDS= ${DBD_MYSQL} \
p5-DBI>=1.46:databases/p5-DBI \
p5-Term-ReadKey>=2.10:devel/p5-Term-ReadKey \
p5-Time-HiRes>0:devel/p5-Time-HiRes \
diff --git a/databases/mtop/Makefile b/databases/mtop/Makefile
--- a/databases/mtop/Makefile
+++ b/databases/mtop/Makefile
@@ -1,6 +1,6 @@
PORTNAME= mtop
PORTVERSION= 0.6.6
-PORTREVISION= 5
+PORTREVISION= 6
CATEGORIES= databases
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/v${PORTVERSION}
@@ -12,11 +12,11 @@
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= p5-Curses>=0:devel/p5-Curses \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql
+ ${DBD_MYSQL}
RUN_DEPENDS:= ${BUILD_DEPENDS}
NO_ARCH= yes
-USES= perl5
+USES= mysql perl5
USE_PERL5= configure
post-patch:
diff --git a/databases/mysqlreport/Makefile b/databases/mysqlreport/Makefile
--- a/databases/mysqlreport/Makefile
+++ b/databases/mysqlreport/Makefile
@@ -1,6 +1,6 @@
PORTNAME= mysqlreport
PORTVERSION= 3.5
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= databases
MAINTAINER= ports@FreeBSD.org
@@ -10,13 +10,13 @@
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
-RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+RUN_DEPENDS= ${DBD_MYSQL} \
p5-DBI>=0:databases/p5-DBI \
p5-Term-ReadKey>=0:devel/p5-Term-ReadKey
NO_ARCH= yes
NO_BUILD= yes
-USES= perl5 shebangfix
+USES= mysql perl5 shebangfix
WRKSRC_SUBDIR= ${PORTNAME}
PLIST_FILES= bin/mysqlreport
diff --git a/databases/mytop/Makefile b/databases/mytop/Makefile
--- a/databases/mytop/Makefile
+++ b/databases/mytop/Makefile
@@ -1,5 +1,6 @@
PORTNAME= mytop
PORTVERSION= 1.7
+PORTREVISION= 1
CATEGORIES= databases
MAINTAINER= ports@FreeBSD.org
@@ -8,7 +9,7 @@
LICENSE= GPLv2
-RUN_DEPENDS= p5-DBD-mysql>1.0:databases/p5-DBD-mysql \
+RUN_DEPENDS= ${DBD_MYSQL} \
p5-DBI>=1.13:databases/p5-DBI \
p5-Term-ReadKey>=2.10:devel/p5-Term-ReadKey
@@ -18,7 +19,7 @@
NO_ARCH= yes
-USES+= perl5
+USES+= mysql perl5
USE_PERL5= configure
PLIST_FILES= bin/mytop \
diff --git a/databases/p5-Class-DBI-mysql/Makefile b/databases/p5-Class-DBI-mysql/Makefile
--- a/databases/p5-Class-DBI-mysql/Makefile
+++ b/databases/p5-Class-DBI-mysql/Makefile
@@ -1,6 +1,6 @@
PORTNAME= Class-DBI-mysql
PORTVERSION= 1.00
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= databases perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@@ -11,9 +11,9 @@
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql
+ ${DBD_MYSQL}
-USES= perl5
+USES= mysql perl5
USE_PERL5= configure
.include <bsd.port.mk>
diff --git a/databases/p5-DBIx-MySQLSequence/Makefile b/databases/p5-DBIx-MySQLSequence/Makefile
--- a/databases/p5-DBIx-MySQLSequence/Makefile
+++ b/databases/p5-DBIx-MySQLSequence/Makefile
@@ -1,6 +1,6 @@
PORTNAME= DBIx-MySQLSequence
PORTVERSION= 1.04
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= databases perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@@ -9,14 +9,14 @@
COMMENT= Proper and correct (emulated) sequence support for MySQL
WWW= https://metacpan.org/release/DBIx-MySQLSequence
-BUILD_DEPENDS= p5-DBD-mysql>0:databases/p5-DBD-mysql \
+BUILD_DEPENDS= ${DBD_MYSQL} \
p5-DBI>0:databases/p5-DBI \
p5-Params-Util>=0.26:devel/p5-Params-Util
-RUN_DEPENDS= p5-DBD-mysql>0:databases/p5-DBD-mysql \
+RUN_DEPENDS= ${DBD_MYSQL} \
p5-DBI>0:databases/p5-DBI \
p5-Params-Util>=0.26:devel/p5-Params-Util
-USES= perl5
+USES= mysql perl5
USE_PERL5= configure
post-patch:
diff --git a/databases/p5-DBIx-TableHash/Makefile b/databases/p5-DBIx-TableHash/Makefile
--- a/databases/p5-DBIx-TableHash/Makefile
+++ b/databases/p5-DBIx-TableHash/Makefile
@@ -1,7 +1,7 @@
PORTNAME= DBIx-TableHash
CATEGORIES= databases perl5
PORTVERSION= 1.05
-PORTREVISION= 1
+PORTREVISION= 2
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:CHTHORMAN
PKGNAMEPREFIX= p5-
@@ -11,9 +11,9 @@
WWW= https://christhorman.com/projects/perl/DBIx-TableHash/
BUILD_DEPENDS= ${RUN_DEPENDS}
-RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+RUN_DEPENDS= ${DBD_MYSQL}
-USES= perl5
+USES= mysql perl5
USE_PERL5= configure
.include <bsd.port.mk>
diff --git a/databases/p5-MySQL-Diff/Makefile b/databases/p5-MySQL-Diff/Makefile
--- a/databases/p5-MySQL-Diff/Makefile
+++ b/databases/p5-MySQL-Diff/Makefile
@@ -1,5 +1,6 @@
PORTNAME= MySQL-Diff
PORTVERSION= 0.50
+PORTREVISION= 1
CATEGORIES= databases perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@@ -13,11 +14,11 @@
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= p5-Class-MakeMethods>=0:devel/p5-Class-MakeMethods \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-File-Slurp>=0:devel/p5-File-Slurp \
p5-String-ShellQuote>=0:textproc/p5-String-ShellQuote
-USES= perl5 shebangfix
+USES= mysql perl5 shebangfix
USE_PERL5= configure
SHEBANG_FILES= bin/mysqldiff
diff --git a/databases/p5-Test-mysqld/Makefile b/databases/p5-Test-mysqld/Makefile
--- a/databases/p5-Test-mysqld/Makefile
+++ b/databases/p5-Test-mysqld/Makefile
@@ -1,5 +1,6 @@
PORTNAME= Test-mysqld
PORTVERSION= 1.0013
+PORTREVISION= 1
CATEGORIES= databases perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@@ -14,12 +15,12 @@
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= p5-Class-Accessor-Lite>=0:devel/p5-Class-Accessor-Lite \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-DBI>=0:databases/p5-DBI \
p5-File-Copy-Recursive>=0:devel/p5-File-Copy-Recursive
TEST_DEPENDS= p5-Test-SharedFork>=0:devel/p5-Test-SharedFork
-USES= perl5
+USES= mysql perl5
USE_PERL5= modbuildtiny
NO_ARCH= yes
diff --git a/databases/p5-mysql-genocide/Makefile b/databases/p5-mysql-genocide/Makefile
--- a/databases/p5-mysql-genocide/Makefile
+++ b/databases/p5-mysql-genocide/Makefile
@@ -1,6 +1,6 @@
PORTNAME= mysql-genocide
PORTVERSION= 0.03
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= databases perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:RSOLIV
@@ -11,9 +11,9 @@
WWW= https://metacpan.org/release/RSOLIV/mysql-genocide-0.03
BUILD_DEPENDS= ${RUN_DEPENDS}
-RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+RUN_DEPENDS= ${DBD_MYSQL}
-USES= perl5
+USES= mysql perl5
USE_PERL5= configure
.include <bsd.port.mk>
diff --git a/databases/percona-toolkit/Makefile b/databases/percona-toolkit/Makefile
--- a/databases/percona-toolkit/Makefile
+++ b/databases/percona-toolkit/Makefile
@@ -1,5 +1,6 @@
PORTNAME= percona-toolkit
DISTVERSION= 3.5.2
+PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= https://www.percona.com/downloads/${PORTNAME}/${PORTVERSION}/source/tarball/
@@ -11,12 +12,12 @@
LICENSE_COMB= dual
RUN_DEPENDS= bash:shells/bash \
- p5-DBD-mysql>=3:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-DBI>=1.46:databases/p5-DBI \
p5-Term-ReadKey>=2.10:devel/p5-Term-ReadKey \
pidof:sysutils/pidof
-USES= perl5 shebangfix
+USES= mysql perl5 shebangfix
USE_PERL5= configure
SHEBANG_FILES= bin/pt-*
diff --git a/deskutils/note/Makefile b/deskutils/note/Makefile
--- a/deskutils/note/Makefile
+++ b/deskutils/note/Makefile
@@ -1,5 +1,6 @@
PORTNAME= note
DISTVERSION= 1.3.26
+PORTREVISION= 1
CATEGORIES= deskutils perl5
MASTER_SITES= http://www.daemon.de/idisk/Apps/note/
@@ -19,8 +20,9 @@
OPTIONS_DEFINE= EXAMPLES MYSQL PWSAFE3
OPTIONS_DEFAULT= BLOWFISH DES IDEA MYSQL PWSAFE3
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>0:databases/p5-DBD-mysql \
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL} \
p5-DBI>0:databases/p5-DBI
+MYSQL_USES= mysql
PWSAFE3_DESC= Password Safe v3 backend
PWSAFE3_RUN_DEPENDS= p5-Crypt-PWSafe3>0:security/p5-Crypt-PWSafe3
diff --git a/devel/bugzilla44/Makefile b/devel/bugzilla44/Makefile
--- a/devel/bugzilla44/Makefile
+++ b/devel/bugzilla44/Makefile
@@ -1,6 +1,6 @@
PORTNAME= bugzilla
PORTVERSION= 4.4.13
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= devel
MASTER_SITES= MOZILLA/webtools MOZILLA/webtools/archived
@@ -47,7 +47,7 @@
MODPERL_USES= apache:run
MYSQL_USES= mysql
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=4.0001:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
PGSQL_USES= pgsql
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=3.4.2:databases/p5-DBD-Pg
SQLITE_USES= sqlite
diff --git a/devel/bugzilla50/Makefile b/devel/bugzilla50/Makefile
--- a/devel/bugzilla50/Makefile
+++ b/devel/bugzilla50/Makefile
@@ -1,6 +1,6 @@
PORTNAME= bugzilla
PORTVERSION= 5.0.4
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= MOZILLA/webtools MOZILLA/webtools/archived
@@ -48,7 +48,7 @@
MODPERL_USES= apache:run
MYSQL_USES= mysql
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=4.0001:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
PGSQL_USES= pgsql:11+
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=3.4.2:databases/p5-DBD-Pg
SQLITE_USES= sqlite
diff --git a/mail/assp/Makefile b/mail/assp/Makefile
--- a/mail/assp/Makefile
+++ b/mail/assp/Makefile
@@ -1,6 +1,6 @@
PORTNAME= assp
PORTVERSION= 1.9.9.14158
-PORTREVISION= 1
+PORTREVISION= 2
PORTEPOCH= 1
CATEGORIES= mail
MASTER_SITES= http://www.ringofsaturn.com/distfiles/
@@ -96,7 +96,8 @@
.if ${PORT_OPTIONS:MMYSQL}
RUN_DEPENDS+= p5-Tie-DBI>=1.05:databases/p5-Tie-DBI
-RUN_DEPENDS+= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+RUN_DEPENDS+= ${DBD_MYSQL}
+USES+= mysql
.endif
.if ${PORT_OPTIONS:MMATCHRE}
diff --git a/mail/exilog/Makefile b/mail/exilog/Makefile
--- a/mail/exilog/Makefile
+++ b/mail/exilog/Makefile
@@ -1,6 +1,6 @@
PORTNAME= exilog
PORTVERSION= 0.5
-PORTREVISION= 11
+PORTREVISION= 12
CATEGORIES= mail
MASTER_SITES= http://duncanthrax.net/exilog/
@@ -30,7 +30,7 @@
OPTIONS_SUB= YES
AGENT_DESC= Include exilog agent
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
MYSQL_USES= mysql
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg
diff --git a/mail/opendmarc/Makefile b/mail/opendmarc/Makefile
--- a/mail/opendmarc/Makefile
+++ b/mail/opendmarc/Makefile
@@ -1,6 +1,6 @@
PORTNAME= opendmarc
PORTVERSION= 1.4.2
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= mail security
MASTER_SITES= GH
@@ -13,10 +13,10 @@
RUN_DEPENDS= p5-Switch>=0:lang/p5-Switch \
p5-DBI>=0:databases/p5-DBI \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-HTTP-Message>=0:www/p5-HTTP-Message
-USES= cpe libtool perl5 shebangfix autoreconf
+USES= cpe libtool mysql perl5 shebangfix autoreconf
LICENSE_FILE_SENDMAIL= ${WRKSRC}/LICENSE.Sendmail
LICENSE_GROUPS_SENDMAIL= FSF OSI
LICENSE_NAME_SENDMAIL= Sendmail Open Source License
diff --git a/mail/policyd2/Makefile b/mail/policyd2/Makefile
--- a/mail/policyd2/Makefile
+++ b/mail/policyd2/Makefile
@@ -1,6 +1,6 @@
PORTNAME= policyd2
PORTVERSION= 2.0.14
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= mail
MASTER_SITES= https://download.policyd.org/v${PORTVERSION}/
DISTNAME= cluebringer-v${PORTVERSION}
@@ -39,7 +39,8 @@
SQLITE_DESC= Add a dependency on DBD:SQLite
WEBUI_DESC= Add a dependency on the corresponding PHP pdo driver
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
+MYSQL_USES= mysql
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg
SQLITE_RUN_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite
diff --git a/mail/ratelimit-policyd/Makefile b/mail/ratelimit-policyd/Makefile
--- a/mail/ratelimit-policyd/Makefile
+++ b/mail/ratelimit-policyd/Makefile
@@ -1,5 +1,6 @@
PORTNAME= ratelimit-policyd
PORTVERSION= 1.0.4
+PORTREVISION= 1
CATEGORIES= mail
MAINTAINER= 000.fbsd@quip.cz
@@ -8,13 +9,13 @@
LICENSE= NONE
-USES+= perl5 shebangfix
+USES+= mysql perl5 shebangfix
USE_GITHUB= yes
GH_ACCOUNT= MirLach
#GH_TAGNAME= 65154a2
-RUN_DEPENDS+= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+RUN_DEPENDS+= ${DBD_MYSQL}
SHEBANG_FILES= ratelimit-policyd.pl
diff --git a/mail/spamassassin-devel/Makefile b/mail/spamassassin-devel/Makefile
--- a/mail/spamassassin-devel/Makefile
+++ b/mail/spamassassin-devel/Makefile
@@ -123,7 +123,8 @@
p5-URI>=0:net/p5-URI
GNUPG_RUN_DEPENDS= gnupg1>=1.4.7:security/gnupg1
GNUPG2_RUN_DEPENDS= gpg2:security/gnupg
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
+MYSQL_USES= mysql
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg
PYZOR_RUN_DEPENDS= pyzor:mail/pyzor
RAZOR_RUN_DEPENDS= razor-agents>=2.84:mail/razor-agents \
diff --git a/mail/spamassassin/Makefile b/mail/spamassassin/Makefile
--- a/mail/spamassassin/Makefile
+++ b/mail/spamassassin/Makefile
@@ -1,5 +1,6 @@
PORTNAME= spamassassin
PORTVERSION= 4.0.1
+PORTREVISION= 1
CATEGORIES?= mail perl5
MASTER_SITES= https://archive.apache.org/dist/${PORTNAME}/source/ CPAN/Mail
DISTNAME= Mail-SpamAssassin-${PORTVERSION}
@@ -119,7 +120,8 @@
p5-URI>=0:net/p5-URI
GNUPG_RUN_DEPENDS= gnupg1>=1.4.7:security/gnupg1
GNUPG2_RUN_DEPENDS= gpg2:security/gnupg
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
+MYSQL_USES= mysql
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg
PYZOR_RUN_DEPENDS= pyzor:mail/pyzor
RAZOR_RUN_DEPENDS= razor-agents>=2.84:mail/razor-agents \
diff --git a/mail/sqlgrey/Makefile b/mail/sqlgrey/Makefile
--- a/mail/sqlgrey/Makefile
+++ b/mail/sqlgrey/Makefile
@@ -1,6 +1,6 @@
PORTNAME= sqlgrey
PORTVERSION= 1.8.0
-PORTREVISION= 5
+PORTREVISION= 6
CATEGORIES= mail
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-1.8%20%28stable%29
@@ -38,7 +38,8 @@
STATS_DESC= Depend on Date::Calc for logstats.pl script
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
+MYSQL_USES= mysql
SQLITE_RUN_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite
STATS_RUN_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc
diff --git a/mail/sympa/Makefile b/mail/sympa/Makefile
--- a/mail/sympa/Makefile
+++ b/mail/sympa/Makefile
@@ -1,6 +1,6 @@
PORTNAME= sympa
DISTVERSION= 6.2.72
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= mail
MAINTAINER= dgeo@centrale-med.fr
@@ -110,9 +110,10 @@
APACHE_USES= apache:run
FASTCGI_RUN_DEPENDS= p5-CGI-Fast>=1.08:www/p5-CGI-Fast \
p5-FCGI>=0.67:www/p5-FCGI
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
MYSQL_SUB_LIST= REQ_MYSQL=mysql
MYSQL_SUB_LIST_OFF= REQ_MYSQL=""
+MYSQL_USES= mysql
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=2.00:databases/p5-DBD-Pg
PGSQL_SUB_LIST= REQ_PGSQL=postgresql
PGSQL_SUB_LIST_OFF= REQ_PGSQL=""
diff --git a/multimedia/mythtv/Makefile b/multimedia/mythtv/Makefile
--- a/multimedia/mythtv/Makefile
+++ b/multimedia/mythtv/Makefile
@@ -1,6 +1,7 @@
PORTNAME= mythtv
DISTVERSIONPREFIX= v
DISTVERSION= 34.0
+PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= multimedia
@@ -110,7 +111,7 @@
${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}simplejson>=0:devel/py-simplejson@${PY_FLAVOR} \
p5-DBI>=0:databases/p5-DBI \
- p5-DBD-mysql>0:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-Net-UPnP>=0:multimedia/p5-Net-UPnP \
p5-IO-Socket-INET6>=2.51:net/p5-IO-Socket-INET6 \
p5-XML-Simple>=0:textproc/p5-XML-Simple \
@@ -123,7 +124,7 @@
${PYTHON_PKGNAMEPREFIX}requests-cache>0:www/py-requests-cache@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}simplejson>=3:devel/py-simplejson@${PY_FLAVOR} \
p5-DBI>=0:databases/p5-DBI \
- p5-DBD-mysql>0:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-Net-UPnP>=0:multimedia/p5-Net-UPnP \
p5-IO-Socket-INET6>=2.51:net/p5-IO-Socket-INET6 \
p5-XML-Simple>=0:textproc/p5-XML-Simple \
@@ -131,6 +132,7 @@
p5-LWP-UserAgent-Determined>=0:www/p5-LWP-UserAgent-Determined
BINDINGS_CONFIGURE_ON= --python="${PYTHON_CMD}" --with-bindings=perl,python
BINDINGS_CONFIGURE_OFF= --without-bindings=perl,python
+BINDINGS_USES= mysql
HDHOMERUN_DESC= Native support for HDHomeRun network tuners
HDHOMERUN_LIB_DEPENDS= libhdhomerun.so:multimedia/libhdhomerun
diff --git a/multimedia/zoneminder/Makefile b/multimedia/zoneminder/Makefile
--- a/multimedia/zoneminder/Makefile
+++ b/multimedia/zoneminder/Makefile
@@ -1,6 +1,6 @@
PORTNAME= zoneminder
DISTVERSION= 1.36.33
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= multimedia
MAINTAINER= bsd@abinet.ru
@@ -10,7 +10,7 @@
LICENSE= GPLv2
ZM_DEPENDS= p5-DBI>=0:databases/p5-DBI \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-Date-Manip>=0:devel/p5-Date-Manip \
p5-Test-LWP-UserAgent>=0:www/p5-Test-LWP-UserAgent \
p5-Sys-Mmap>=0:devel/p5-Sys-Mmap \
diff --git a/net-mgmt/check_mysql_health/Makefile b/net-mgmt/check_mysql_health/Makefile
--- a/net-mgmt/check_mysql_health/Makefile
+++ b/net-mgmt/check_mysql_health/Makefile
@@ -1,6 +1,6 @@
PORTNAME= check_mysql_health
DISTVERSION= 3.0.0.5
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= net-mgmt
MASTER_SITES= https://labs.consol.de/assets/downloads/nagios/
@@ -11,9 +11,9 @@
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
-RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+RUN_DEPENDS= ${DBD_MYSQL}
-USES= autoreconf perl5 gmake
+USES= autoreconf mysql perl5 gmake
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-statefiles-dir=${NAGIOSDIR} \
diff --git a/net-mgmt/mysql-snmp/Makefile b/net-mgmt/mysql-snmp/Makefile
--- a/net-mgmt/mysql-snmp/Makefile
+++ b/net-mgmt/mysql-snmp/Makefile
@@ -2,7 +2,7 @@
DISTVERSIONPREFIX= v
DISTVERSION= 1.2-17
DISTVERSIONSUFFIX= -g1d0b409
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= net-mgmt perl5
MAINTAINER= 0mp@FreeBSD.org
@@ -13,13 +13,13 @@
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= net-snmp>=0:net-mgmt/net-snmp \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-DBI>=0:databases/p5-DBI \
p5-Math-BigInt-GMP>=0:math/p5-Math-BigInt-GMP \
p5-Net-SNMP>=5.4.3:net-mgmt/p5-Net-SNMP \
p5-Unix-Syslog>=0:sysutils/p5-Unix-Syslog
-USES= perl5 shebangfix
+USES= mysql perl5 shebangfix
USE_GITHUB= yes
GH_ACCOUNT= masterzen
USE_PERL5= run test
diff --git a/net-mgmt/nagios-check_mysql_slave/Makefile b/net-mgmt/nagios-check_mysql_slave/Makefile
--- a/net-mgmt/nagios-check_mysql_slave/Makefile
+++ b/net-mgmt/nagios-check_mysql_slave/Makefile
@@ -1,6 +1,6 @@
PORTNAME= check_mysql_slave
PORTVERSION= 0.1.1
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= net-mgmt
MASTER_SITES= http://buhacoff.net/2009/products/check_mysql_slave/archive/ \
ZI
@@ -14,13 +14,13 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= p5-DBI>=1.60.7:databases/p5-DBI \
- p5-DBD-mysql>0:databases/p5-DBD-mysql
+ ${DBD_MYSQL}
PORTSCOUT= ignore:1
NO_BUILD= yes
NO_ARCH= yes
-USES= perl5 shebangfix
+USES= mysql perl5 shebangfix
SHEBANG_FILES= check_mysql_slave check_mysql_slave_epn
USE_PERL5= run
DOC_FILES= check_mysql_slave.html check_mysql_slave.pod
diff --git a/net-mgmt/netdot/Makefile b/net-mgmt/netdot/Makefile
--- a/net-mgmt/netdot/Makefile
+++ b/net-mgmt/netdot/Makefile
@@ -1,7 +1,7 @@
PORTNAME= netdot
PORTVERSION= 1.0.7
DISTVERSIONPREFIX= ${PORTNAME}-
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= net-mgmt
MAINTAINER= nick@foobar.org
@@ -16,7 +16,7 @@
p5-Apache-AuthCookie>=0:www/p5-Apache-AuthCookie \
p5-Apache2-SiteControl>=1.0:www/p5-Apache2-SiteControl \
p5-URI>=0:net/p5-URI \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-SQL-Translator>=0.07:databases/p5-SQL-Translator \
p5-Class-DBI>=3.0.17:databases/p5-Class-DBI \
p5-Class-DBI-AbstractSearch>=0:databases/p5-Class-DBI-AbstractSearch \
diff --git a/net-mgmt/ocsinventory-server/Makefile b/net-mgmt/ocsinventory-server/Makefile
--- a/net-mgmt/ocsinventory-server/Makefile
+++ b/net-mgmt/ocsinventory-server/Makefile
@@ -1,5 +1,6 @@
PORTNAME= ocsinventory-server
PORTVERSION= 2.12.1
+PORTREVISION= 1
CATEGORIES= net-mgmt
MAINTAINER= dgeo@centrale-med.fr
@@ -11,7 +12,7 @@
RUN_DEPENDS= p5-XML-Simple>=2.12:textproc/p5-XML-Simple \
p5-DBI>=1.40:databases/p5-DBI \
- p5-DBD-mysql>=2.9004:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-Apache-DBI>=0.93:www/p5-Apache-DBI \
p5-Net-IP>=1.21:net-mgmt/p5-Net-IP \
p5-SOAP-Lite>=0.66:net/p5-SOAP-Lite \
diff --git a/net-mgmt/pandorafms_server/Makefile b/net-mgmt/pandorafms_server/Makefile
--- a/net-mgmt/pandorafms_server/Makefile
+++ b/net-mgmt/pandorafms_server/Makefile
@@ -1,5 +1,5 @@
PORTNAME= pandora_server
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= net-mgmt
MAINTAINER= koichiro@rworks.jp
@@ -20,7 +20,7 @@
p5-JSON>=0:converters/p5-JSON
BUILD_DEPENDS= ${PANDORA_DEPS}
RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \
- p5-DBD-mysql>=4:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
wmic:net-mgmt/wmi-client \
nmap:security/nmap \
p5-Encode-Locale>=0:converters/p5-Encode-Locale \
@@ -34,7 +34,7 @@
PGSQL_DESC= Use PostgreSQL backend (experimental)
EXTRAS_DESC= Extra dependencies for util scripts
-USES= perl5 shebangfix
+USES= mysql perl5 shebangfix
SHEBANG_FILES= FreeBSD/pandora_server \
bin/pandora_server \
util/integrity_check \
diff --git a/net-mgmt/rackmonkey/Makefile b/net-mgmt/rackmonkey/Makefile
--- a/net-mgmt/rackmonkey/Makefile
+++ b/net-mgmt/rackmonkey/Makefile
@@ -1,7 +1,7 @@
PORTNAME= rackmonkey
PORTVERSION= 1.2.5
DISTVERSIONSUFFIX= -1
-PORTREVISION= 5
+PORTREVISION= 6
CATEGORIES= net-mgmt www
MASTER_SITES= SF \
ftp://ftp.secure-computing.net/pub/FreeBSD/ports/${PORTNAME}/ \
@@ -39,7 +39,7 @@
.endif
.if ${PORT_OPTIONS:MMYSQL}
USES+= mysql
-RUN_DEPENDS+= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+RUN_DEPENDS+= ${DBD_MYSQL}
.endif
.if ${PORT_OPTIONS:MPGSQL}
USES+= pgsql
diff --git a/net/p5-Net-Google-SafeBrowsing2/Makefile b/net/p5-Net-Google-SafeBrowsing2/Makefile
--- a/net/p5-Net-Google-SafeBrowsing2/Makefile
+++ b/net/p5-Net-Google-SafeBrowsing2/Makefile
@@ -1,6 +1,6 @@
PORTNAME= Net-Google-SafeBrowsing2
PORTVERSION= 1.09
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= net perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@@ -31,8 +31,9 @@
USES= perl5
USE_PERL5= configure
-MYSQL_BUILD_DEPENDS= p5-DBD-mysql>=4:databases/p5-DBD-mysql
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=4:databases/p5-DBD-mysql
+MYSQL_BUILD_DEPENDS= ${DBD_MYSQL}
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
+MYSQL_USES= mysql
POSTGRES_BUILD_DEPENDS= p5-DBD-Pg>=2:databases/p5-DBD-Pg
POSTGRES_RUN_DEPENDS= p5-DBD-Pg>=2:databases/p5-DBD-Pg
SQLITE_BUILD_DEPENDS= p5-DBD-SQLite>=1:databases/p5-DBD-SQLite
diff --git a/net/prosearch/Makefile b/net/prosearch/Makefile
--- a/net/prosearch/Makefile
+++ b/net/prosearch/Makefile
@@ -1,6 +1,6 @@
PORTNAME= prosearch
PORTVERSION= 0.19.4
-PORTREVISION= 10
+PORTREVISION= 11
CATEGORIES= net www
MASTER_SITES= http://pro.setun.net/search/download/ SF/pro-search/pro-search/${PORTVERSION}
@@ -80,7 +80,7 @@
.if ${PORT_OPTIONS:MMYSQL}
USES+= mysql
RUN_DEPENDS+=\
-p5-DBD-mysql>=0:databases/p5-DBD-mysql
+${DBD_MYSQL}
.endif
.if ${PORT_OPTIONS:MDB} && ${PORT_OPTIONS:MMYSQL}
diff --git a/net/pwhois/Makefile b/net/pwhois/Makefile
--- a/net/pwhois/Makefile
+++ b/net/pwhois/Makefile
@@ -1,5 +1,6 @@
PORTNAME= pwhois
PORTVERSION= 2.2.1.0
+PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= http://pwhois.org/get/ \
ZI
@@ -15,7 +16,7 @@
p5-Net-Telnet>0:net/p5-Net-Telnet \
p5-Net-CIDR>0:net-mgmt/p5-Net-CIDR \
p5-RPSL-Parser>0:devel/p5-RPSL-Parser \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql
+ ${DBD_MYSQL}
FETCH_ARGS= -p
diff --git a/net/radiator/Makefile b/net/radiator/Makefile
--- a/net/radiator/Makefile
+++ b/net/radiator/Makefile
@@ -1,5 +1,6 @@
PORTNAME= Radiator
PORTVERSION= 4.24
+PORTREVISION= 1
CATEGORIES= net
DISTNAME= ${PORTNAME}-${PORTVERSION}-1
MASTER_SITES= # fetch manually
@@ -18,6 +19,7 @@
OPTIONS_DEFINE= MYSQL
MYSQL_DESC= MySQL support
+MYSQL_USES= mysql
USES= perl5 tar:tgz
USE_PERL5= configure
@@ -36,7 +38,7 @@
.endif
.if ${PORT_OPTIONS:MMYSQL}
-RUN_DEPENDS+= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+RUN_DEPENDS+= ${DBD_MYSQL}
.endif
pre-configure:
diff --git a/net/rtg/Makefile b/net/rtg/Makefile
--- a/net/rtg/Makefile
+++ b/net/rtg/Makefile
@@ -1,6 +1,6 @@
PORTNAME= rtg
PORTVERSION= 0.7.5
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= net
MASTER_SITES= ftp://ftpmirror.uk/freebsd-ports/rtg/
@@ -13,7 +13,7 @@
LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp \
libgd.so:graphics/gd
RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql
+ ${DBD_MYSQL}
USES= mysql:client perl5 shebangfix ssl
USE_RC_SUBR= rtgpoll
diff --git a/security/amavisd-new/Makefile b/security/amavisd-new/Makefile
--- a/security/amavisd-new/Makefile
+++ b/security/amavisd-new/Makefile
@@ -1,6 +1,6 @@
PORTNAME= amavisd-new
DISTVERSION= 2.12.3
-PORTREVISION= 2
+PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= security
@@ -112,7 +112,8 @@
.endif
.if ${PORT_OPTIONS:MMYSQL}
-RUN_DEPENDS+= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+RUN_DEPENDS+= ${DBD_MYSQL}
+USES+= mysql
.endif
.if ${PORT_OPTIONS:MPGSQL}
diff --git a/security/maia/Makefile b/security/maia/Makefile
--- a/security/maia/Makefile
+++ b/security/maia/Makefile
@@ -1,6 +1,6 @@
PORTNAME= maia
DISTVERSION= 1.0.4
-PORTREVISION= 11
+PORTREVISION= 12
CATEGORIES= security
MAINTAINER= ek@purplehat.org
@@ -133,12 +133,12 @@
.if ${PORT_OPTIONS:MMYSQL} && ${PORT_OPTIONS:MLOCAL}
USES+= mysql:server,client
-RUN_DEPENDS+= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+RUN_DEPENDS+= ${DBD_MYSQL}
.endif
.if ${PORT_OPTIONS:MMYSQL} && ! ${PORT_OPTIONS:MLOCAL}
USES+= mysql:client
-RUN_DEPENDS+= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+RUN_DEPENDS+= ${DBD_MYSQL}
.endif
.if ${PORT_OPTIONS:MMYSQL} && ${PORT_OPTIONS:MWEBHOST}
diff --git a/security/p5-openxpki/Makefile b/security/p5-openxpki/Makefile
--- a/security/p5-openxpki/Makefile
+++ b/security/p5-openxpki/Makefile
@@ -1,6 +1,7 @@
PORTNAME= openxpki
DISTVERSIONPREFIX= v
DISTVERSION= 3.24.2
+PORTREVSION= 1
CATEGORIES= security perl5
PKGNAMEPREFIX= p5-
diff --git a/security/p5-openxpki/files/pkg-message.in b/security/p5-openxpki/files/pkg-message.in
--- a/security/p5-openxpki/files/pkg-message.in
+++ b/security/p5-openxpki/files/pkg-message.in
@@ -14,7 +14,7 @@
- Install e.g. databases/mariadb106-server
- Add value mysql to file /etc/make.conf like this:
DEFAULT_VERSIONS+= mysql=10.6m
- - cd /usr/ports/databases/p5-DBD-mysql && make reinstall
+ - cd /usr/ports/databases/p5-DBD-mysql4 && make reinstall
Note that installing of databases/p5-DBD-MariaDB here may hinder
operation of your OpeXPKI setup.
- Install your favorite web server.
diff --git a/sysutils/p5-MogileFS-Server/Makefile b/sysutils/p5-MogileFS-Server/Makefile
--- a/sysutils/p5-MogileFS-Server/Makefile
+++ b/sysutils/p5-MogileFS-Server/Makefile
@@ -1,5 +1,6 @@
PORTNAME= MogileFS-Server
PORTVERSION= 2.73
+PORTREVISION= 1
CATEGORIES= sysutils perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:DORMANDO
@@ -12,7 +13,7 @@
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= p5-Danga-Socket>=1.56:devel/p5-Danga-Socket \
p5-DBD-SQLite>=1.13:databases/p5-DBD-SQLite \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-DBI>=0:databases/p5-DBI \
p5-IO-AIO>=0:devel/p5-IO-AIO \
p5-MogileFS-Client>=0:sysutils/p5-MogileFS-Client \
@@ -21,7 +22,7 @@
p5-Sys-Syscall>=0.22:devel/p5-Sys-Syscall
NO_ARCH= yes
-USES= perl5
+USES= mysql perl5
USE_PERL5= configure
REINPLACE_ARGS= -i ''
USE_RC_SUBR= mogilefsd mogstored
diff --git a/sysutils/watchmen/Makefile b/sysutils/watchmen/Makefile
--- a/sysutils/watchmen/Makefile
+++ b/sysutils/watchmen/Makefile
@@ -1,5 +1,6 @@
PORTNAME= watchmen
PORTVERSION= 0.09
+PORTREVISION= 1
CATEGORIES= sysutils
MAINTAINER= proler@gmail.com
@@ -28,10 +29,12 @@
PGSQL_DESC= Enable test postgresql queries
EMAIL_DESC= Report problems by email
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=2.19.2:databases/p5-DBD-Pg
EMAIL_RUN_DEPENDS= p5-MIME-Lite>=0:mail/p5-MIME-Lite
+MYSQL_USES= mysql
+
post-install:
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf.dist ${STAGEDIR}${PREFIX}/etc/${PORTNAME}.conf.sample
diff --git a/textproc/p5-Hailo/Makefile b/textproc/p5-Hailo/Makefile
--- a/textproc/p5-Hailo/Makefile
+++ b/textproc/p5-Hailo/Makefile
@@ -1,5 +1,6 @@
PORTNAME= Hailo
PORTVERSION= 0.75
+PORTREVISION= 1
CATEGORIES= textproc perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:AVAR
@@ -51,6 +52,7 @@
SQLITE_RUN_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
+MYSQL_USES= mysql
.include <bsd.port.mk>
diff --git a/www/interchange/Makefile b/www/interchange/Makefile
--- a/www/interchange/Makefile
+++ b/www/interchange/Makefile
@@ -1,5 +1,6 @@
PORTNAME= interchange
PORTVERSION= 5.6.3
+PORTREVISION= 1
CATEGORIES= www perl5
MASTER_SITES= http://ftp.icdevgroup.org/interchange/5.6/tar/
@@ -32,7 +33,8 @@
OPTIONS_DEFINE= MYSQL PGSQL
OPTIONS_DEFAULT= MYSQL
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
+MYSQL_USES= mysql
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg
GROUPS= interch
diff --git a/www/ljdeps/Makefile b/www/ljdeps/Makefile
--- a/www/ljdeps/Makefile
+++ b/www/ljdeps/Makefile
@@ -1,6 +1,6 @@
PORTNAME= ljdeps
PORTVERSION= 1.0
-PORTREVISION= 6
+PORTREVISION= 7
CATEGORIES= www perl5
MAINTAINER= ports@FreeBSD.org
@@ -20,11 +20,11 @@
p5-GD-Graph>=0:graphics/p5-GD-Graph \
p5-GD-TextUtil>=0:graphics/p5-GD-TextUtil \
p5-Data-ShowTable>=0:devel/p5-Data-ShowTable \
- p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+ ${DBD_MYSQL} \
p5-Proc-ProcessTable>=0:devel/p5-Proc-ProcessTable \
p5-SOAP-Lite>=0:net/p5-SOAP-Lite \
p5-Unicode-MapUTF8>=0:converters/p5-Unicode-MapUTF8
-USES= metaport perl5
+USES= metaport mysql perl5
.include <bsd.port.mk>
diff --git a/www/otrs/Makefile b/www/otrs/Makefile
--- a/www/otrs/Makefile
+++ b/www/otrs/Makefile
@@ -1,7 +1,7 @@
PORTNAME= otrs
DISTVERSIONPREFIX= rel-
DISTVERSION= 6_0_29
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= www
MAINTAINER= m.tsatsenko@gmail.com
@@ -101,7 +101,8 @@
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg
PGSQL_USES= pgsql
-MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
+MYSQL_RUN_DEPENDS= ${DBD_MYSQL}
+MYSQL_USES= mysql
SSL_RUN_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay
diff --git a/www/rt44/Makefile b/www/rt44/Makefile
--- a/www/rt44/Makefile
+++ b/www/rt44/Makefile
@@ -1,5 +1,6 @@
PORTNAME= rt
DISTVERSION= 4.4.7
+PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://download.bestpractical.com/pub/rt/release/
PKGNAMESUFFIX= 44
@@ -80,6 +81,7 @@
${FASTCGI_DEPS}
MYSQL_RUN_DEPENDS= ${MYSQL_DEPS}
+MYSQL_USES= mysql
MYSQL_VARS= DB_TYPE=mysql DB_DBA_USER=root
PGSQL_RUN_DEPENDS= ${PGSQL_DEPS}
diff --git a/www/rt44/Makefile.cpan b/www/rt44/Makefile.cpan
--- a/www/rt44/Makefile.cpan
+++ b/www/rt44/Makefile.cpan
@@ -244,7 +244,7 @@
### --- MYSQL ---
### DBD::mysql 2.1018
-MYSQL_DEPS= p5-DBD-mysql>=2.1018:databases/p5-DBD-mysql
+MYSQL_DEPS= ${DBD_MYSQL}
### --- PGSQL ---
### DBD::Pg 3.3.1
diff --git a/www/rt50/Makefile b/www/rt50/Makefile
--- a/www/rt50/Makefile
+++ b/www/rt50/Makefile
@@ -1,5 +1,6 @@
PORTNAME= rt
DISTVERSION= 5.0.5
+PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://download.bestpractical.com/pub/rt/release/
PKGNAMESUFFIX= 50
@@ -84,6 +85,7 @@
${FASTCGI_DEPS}
MYSQL_RUN_DEPENDS= ${MYSQL_DEPS}
+MYSQL_USES= mysql
MYSQL_VARS= DB_TYPE=mysql DB_DBA_USER=root
PGSQL_RUN_DEPENDS= ${PGSQL_DEPS}
diff --git a/www/rt50/Makefile.cpan b/www/rt50/Makefile.cpan
--- a/www/rt50/Makefile.cpan
+++ b/www/rt50/Makefile.cpan
@@ -280,7 +280,7 @@
### --- MYSQL ---
### DBD::mysql 2.1018
-MYSQL_DEPS= p5-DBD-mysql>=2.1018:databases/p5-DBD-mysql
+MYSQL_DEPS= ${DBD_MYSQL}
### --- PGSQL ---
### DBD::Pg 1.43
diff --git a/www/squid/Makefile b/www/squid/Makefile
--- a/www/squid/Makefile
+++ b/www/squid/Makefile
@@ -1,5 +1,6 @@
PORTNAME= squid
DISTVERSION= 6.8
+PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://www2.pl.squid-cache.org/Versions/v6/ \
http://www1.il.squid-cache.org/Versions/v6/ \
diff --git a/www/squid/files/pkg-message.in b/www/squid/files/pkg-message.in
--- a/www/squid/files/pkg-message.in
+++ b/www/squid/files/pkg-message.in
@@ -33,7 +33,8 @@
o If AUTH_SQL option is set, please, don't forget to install one of
following perl modules depending on database you like:
- databases/p5-DBD-mysql
+ databases/p5-DBD-mysql (MySQL)
+ databases/p5-DBD-mysql4 (MariaDB)
databases/p5-DBD-Pg
databases/p5-DBD-SQLite
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Feb 3, 5:44 PM (21 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16439827
Default Alt Text
D44662.diff (33 KB)
Attached To
Mode
D44662: p5-DBD-mysql make consumers aware of p5-DBD-mysql4 and choose correct version based on MYSQL_FLAVOUR
Attached
Detach File
Event Timeline
Log In to Comment