# $OpenBSD: Makefile,v 1.102 2004/11/22 16:59:29 espie Exp $ # Uses pthreads .if ${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "m88k" BROKEN= "gen_lex_hash hangs" .endif COMMENT= "multithreaded SQL database (client)" COMMENT-server= "multithreaded SQL database (server)" COMMENT-tests= "multithreaded SQL database (regression test suite)" VERSION= 4.0.20 DISTNAME= mysql-${VERSION} FULLPKGNAME= mysql-client-${VERSION}p1 PKGNAME-server= mysql-server-${VERSION}p1 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 # GPL PERMIT_PACKAGE_CDROM= Yes PERMIT_PACKAGE_FTP= Yes PERMIT_DISTFILES_CDROM= Yes PERMIT_DISTFILES_FTP= Yes WANTLIB= c crypto m ncurses pthread readline ssl wrap z 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.57 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 USE_GCC3?= No .if ${USE_GCC3:L} == "yes" CONFIGURE_ARGS+= --with-client-ldflags=-lsupc++ \ --with-mysqld-ldflags=-lsupc++ .else PATCH_LIST= gcc-* patch-* .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 .if defined(PACKAGING) && ${SUBPACKAGE} == "-tests" PKG_ARCH= * .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