c467e06cb1
* Update server and (slave) client port * Add LICENSE * Consistent globbing of CONFLICTS The release notes for MariaDB 5.5.46 can be found at: https://mariadb.com/kb/en/mariadb/mariadb-5546-release-notes/ PR: 204410 Submitted by: Sevan Janiyan <venture37@geeklan.co.uk> Reviewed by: koobs (mentor), feld (ports-secteam@) Approved by: koobs, feld Security: 851a0eea-88aa-11e5-90e7-b499baebfeaf MFH: 2015Q4 Differential Revision: https://reviews.freebsd.org/D4134
27 lines
481 B
Makefile
27 lines
481 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= mariadb
|
|
PKGNAMESUFFIX= 55-client
|
|
|
|
COMMENT= Multithreaded SQL database (client)
|
|
|
|
LICENSE+= LGPL21
|
|
|
|
MASTERDIR= ${.CURDIR}/../mariadb55-server
|
|
|
|
FILESDIR= ${.CURDIR}/files
|
|
PATCHDIR= ${.CURDIR}/files
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
CONFLICTS_INSTALL= mariadb5[0-46-9]-client-* \
|
|
mariadb1*-client-* \
|
|
mysql*-client-* \
|
|
percona*-client-*
|
|
|
|
CMAKE_ARGS+= -DWITHOUT_SERVER=1
|
|
|
|
USE_LDCONFIG= ${PREFIX}/lib/mysql
|
|
|
|
CLIENT_ONLY= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|