e9a27bcc0e
* Security fixes * Other bug fixes See also: http://dev.mysql.com/doc/refman/5.0/en/releasenotes-cs-5-0-51a.html http://dev.mysql.com/doc/refman/5.0/en/releasenotes-cs-5-0-51b.html
34 lines
980 B
Makefile
34 lines
980 B
Makefile
# $NetBSD: Makefile,v 1.18 2008/06/30 12:01:47 martti 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
|
|
|
|
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
|
|
${INSTALL_DATA} ${WRKSRC}/Docs/manual.chm \
|
|
${DESTDIR}${PREFIX}/share/doc/mysql/
|
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|