91 lines
2.3 KiB
Makefile
91 lines
2.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.90 2004/01/06 14:13:03 espie Exp $
|
|
# Uses pthreads
|
|
|
|
COMMENT= "multithreaded SQL database (client)"
|
|
COMMENT-server= "multithreaded SQL database (server)"
|
|
COMMENT-tests= "multithreaded SQL database (regression test suite)"
|
|
|
|
VERSION= 4.0.17
|
|
DISTNAME= mysql-${VERSION}
|
|
FULLPKGNAME= mysql-client-${VERSION}
|
|
PKGNAME-server= mysql-server-${VERSION}
|
|
FULLPKGNAME-tests= mysql-tests-${VERSION}
|
|
CATEGORIES= databases
|
|
V= MySQL-4.0
|
|
MASTER_SITES= http://mysql.mirrors.pair.com/Downloads/$V/
|
|
|
|
HOMEPAGE= http://www.mysql.com/
|
|
|
|
MAINTAINER= Brad Smith <brad@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
DB_DIR?= /var/mysql
|
|
SOCKET_DIR= /var/run/mysql
|
|
SUBST_VARS= DB_DIR SOCKET_DIR VERSION
|
|
|
|
# Suggested flags for the C compiler, needed for
|
|
# high load servers otherwise MySQL will crash.
|
|
CXX= ${CC}
|
|
CXXFLAGS= ${CFLAGS} -felide-constructors -fno-exceptions -fno-rtti
|
|
|
|
VMEM_WARNING= Yes
|
|
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE= autoconf
|
|
AUTOCONF_VERSION= 2.54
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ARGS+= --enable-thread-safe-client \
|
|
--localstatedir="${DB_DIR}" \
|
|
--with-comment='OpenBSD port: ${FULLPKGNAME-server}' \
|
|
--with-libwrap \
|
|
--with-mysqld-user="_mysql" \
|
|
--with-openssl \
|
|
--with-unix-socket-path="${SOCKET_DIR}/mysql.sock" \
|
|
--with-vio \
|
|
--without-bench \
|
|
--without-debug \
|
|
--without-docs \
|
|
--without-extra-tools \
|
|
--without-readline
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
USE_GCC3?= No
|
|
|
|
.if ${USE_GCC3:L} == "yes"
|
|
CONFIGURE_ARGS+= --with-client-ldflags=-lsupc++ \
|
|
--with-mysqld-ldflags=-lsupc++
|
|
.endif
|
|
|
|
. if ${MACHINE_ARCH} == "i386"
|
|
CONFIGURE_ARGS+= --enable-assembler
|
|
.endif
|
|
|
|
MULTI_PACKAGES= -server -tests
|
|
SUBPACKAGE?=
|
|
|
|
.if ${SUBPACKAGE} == "-server"
|
|
RUN_DEPENDS= :mysql-client-4.0.*:databases/mysql \
|
|
:p5-DBD-mysql-*:databases/p5-DBD-mysql
|
|
.endif
|
|
|
|
DOCS= manual.html manual.ps manual_toc.html manual.txt
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mysql/Flags
|
|
cd ${WRKSRC}/Docs; ${INSTALL_DATA} ${DOCS} ${PREFIX}/share/doc/mysql
|
|
${INSTALL_DATA} ${WRKSRC}/Docs/Flags/*.gif \
|
|
${PREFIX}/share/doc/mysql/Flags
|
|
cd ${PREFIX}/lib && ln -sf mysql/libmysqlclient.so.12.0 . && \
|
|
ln -sf mysql/libmysqlclient_r.so.12.0 .
|
|
|
|
do-regress:
|
|
@cd ${WRKSRC}/mysql-test && ./mysql-test-run --force
|
|
|
|
.include <bsd.port.mk>
|