mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
deda664425
various ports that I've created. I bid fond fare well A chapter closes for me What opens for you?
36 lines
1014 B
Makefile
36 lines
1014 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= mariadb
|
|
PKGNAMESUFFIX= -scripts
|
|
|
|
COMMENT= Scripts for mariadb - drop-in replacement for MySQL
|
|
|
|
LICENSE= GPLv2
|
|
|
|
UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX}
|
|
USE_PERL5= yes
|
|
|
|
MASTERDIR= ${.CURDIR}/../mariadb-server
|
|
MARIADB_SCRIPTS_SLAVE= yes
|
|
|
|
CONFLICTS= mysql-scripts-[0-9]* \
|
|
mytop-[0-9]*
|
|
|
|
PATCHDIR= ${.CURDIR}/files
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
MAN1= msql2mysql.1 mysql_convert_table_format.1 mysql_find_rows.1 \
|
|
mysql_fix_extensions.1 mysql_secure_installation.1 \
|
|
mysql_setpermission.1 mysql_zap.1 mysqlaccess.1 \
|
|
mysqldumpslow.1 mysqlhotcopy.1 mysqld_multi.1
|
|
|
|
EXTRA_PATCHES= ${MASTERDIR}/files/patch-Makefile.in ${MASTERDIR}/files/patch-man__Makefile.in
|
|
MDB_SCRIPTS_SUBDIRS= scripts @man_dirs@
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|%%SUBDIRS%%|${MDB_SCRIPTS_SUBDIRS}|" ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e "s|%%MANS%%|${MAN1}|" ${WRKSRC}/man/Makefile.in
|
|
@${REINPLACE_CMD} -e "s|^\(install-man: install-man1\).*|\1|" ${WRKSRC}/man/Makefile.in
|
|
|
|
.include "${MASTERDIR}/Makefile"
|