5db7e93eca
Using FreeBSD-ports libcurl and protobuf instead of bundled ones This upgrade includes: -Deprecation of these syntax constructs for table and column: .col_name .tbl_name .tbl_name.col_name -Bugfix of memory-leak in mysqldump Reviewed by: mat (mentor) Approved by: mat (mentor) Sponsored by: Netzkommune GmbH Differential Revision: https://reviews.freebsd.org/D12712
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
# Created by: "Mahdi Mokhtari <mokhi64@gmail.com>"
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mysql
|
|
PKGNAMESUFFIX= 57-client
|
|
|
|
COMMENT= Multithreaded SQL database (client)
|
|
|
|
LICENSE+= LGPL21
|
|
|
|
BROKEN_powerpc64= does not build: reports unsupported compiler
|
|
BROKEN_sparc64= does not build: reports unsupported compiler
|
|
|
|
MASTERDIR= ${.CURDIR}/../mysql57-server
|
|
|
|
PKGMESSAGE= ${.CURDIR}/pkg-message
|
|
PATCHDIR= ${.CURDIR}/files
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
CONFLICTS_INSTALL= mysql5[0-68-9]-client-* \
|
|
mysql[0-46-9][0-9]-client-* \
|
|
mariadb[0-9][0-9]-client-* \
|
|
percona[0-9][0-9]-client-*
|
|
|
|
CMAKE_ARGS+= -DWITHOUT_SERVER=1 \
|
|
-DWITH_NDBCLUSTER=1
|
|
|
|
USE_LDCONFIG+= ${PREFIX}/lib/mysql
|
|
|
|
MMAN1= comp_err.1 msql2mysql.1 mysql.1 mysql_config.1 mysql_config_editor.1 mysql_find_rows.1 \
|
|
mysql_waitpid.1 mysqlaccess.1 mysqladmin.1 mysqlbinlog.1 \
|
|
mysqlcheck.1 mysqldump.1 mysqlimport.1 mysqlshow.1 mysqlslap.1
|
|
|
|
CLIENT_ONLY= yes
|
|
|
|
OPTIONS_GROUP+= PLUGINS
|
|
PLUGINS_DESC= Default Client Plugins
|
|
OPTIONS_GROUP_PLUGINS= SASLCLIENT
|
|
SASLCLIENT_DESC= SASL client plugin module
|
|
SASLCLIENT_CMAKE_BOOL= WITH_AUTHENTICATION_LDAP
|
|
SASLCLIENT_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2
|
|
SASLCLIENT_BUILD_DEPENDS= ${LOCALBASE}/include/sasl/sasl.h:net/openldap24-sasl-client
|
|
OPTIONS_DEFAULT+= SASLCLIENT
|
|
|
|
# issue 166367: adding symlinks for back-compatibility with ${lib}_r
|
|
post-install:
|
|
@${LN} -s libmysqlclient.a ${STAGEDIR}${PREFIX}/lib/mysql/libmysqlclient_r.a
|
|
@${LN} -s libmysqlclient.so ${STAGEDIR}${PREFIX}/lib/mysql/libmysqlclient_r.so
|
|
@${LN} -s libmysqlclient.so.20 ${STAGEDIR}${PREFIX}/lib/mysql/libmysqlclient_r.so.20
|
|
|
|
.include "${MASTERDIR}/Makefile"
|