9cff5b2d19
This release fixes a large number of bugs and security vulnerabilities including SA37372. For detailed list of all the changes since 5.0.67 have a look here, please: http://dev.mysql.com/doc/refman/5.0/en/news-5-0-x.html
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.22 2009/11/26 16:33:29 tron Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-client-/}
|
|
SVR4_PKGNAME= mysqc
|
|
COMMENT= MySQL 5, a free SQL database (client)
|
|
|
|
CONFLICTS= {mysql-client-[0-9]*,mysql3-client-[0-9]*}
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --without-extra-tools
|
|
CONFIGURE_ARGS+= --without-server
|
|
CONFIGURE_ARGS+= --enable-thread-safe-client
|
|
UNWRAP_FILES+= scripts/mysql_config
|
|
INFO_FILES= yes
|
|
|
|
AUTO_MKDIRS= yes
|
|
|
|
REPLACE_PERL= scripts/mysql_convert_table_format.sh \
|
|
scripts/mysql_explain_log.sh \
|
|
scripts/mysql_find_rows.sh \
|
|
scripts/mysql_fix_extensions.sh \
|
|
scripts/mysql_setpermission.sh \
|
|
scripts/mysql_tableinfo.sh \
|
|
scripts/mysql_zap.sh \
|
|
scripts/mysqlaccess.sh \
|
|
scripts/mysqldumpslow.sh \
|
|
scripts/mysqlhotcopy.sh
|
|
|
|
post-install:
|
|
cd ${WRKSRC}; for f in mysql.info mysql.info-[0-9]*; do \
|
|
${TEST} ! -f "$$f" || \
|
|
${INSTALL_DATA} "$$f" ${DESTDIR}${PREFIX}/${PKGINFODIR};\
|
|
done
|
|
.for f in huge large innodb-heavy-4G small medium
|
|
${INSTALL_DATA} ${WRKSRC}/support-files/my-${f}.cnf.sh \
|
|
${DESTDIR}${PREFIX}/share/examples/mysql/my-${f}.cnf
|
|
.endfor
|
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|