summaryrefslogtreecommitdiff
path: root/databases/mysql40-server/Makefile
diff options
context:
space:
mode:
authorAlex Dupre <ale@FreeBSD.org>2005-03-14 10:52:45 +0000
committerAlex Dupre <ale@FreeBSD.org>2005-03-14 10:52:45 +0000
commit6b308dae47547be9a0721fa81a74524c4faf9d61 (patch)
tree4438382802aa17b2f9cccf7101082b10f4c54e0f /databases/mysql40-server/Makefile
parent- Fix missing 'use jffnms;' in ${FILESDIR}/jffnms_db.sh. (diff)
Update to 4.0.24 release:
- Fix potential security vulnerabilities in the creation of temporary table file names and the handling of User Defined Functions (UDFs) - Add the possibility to specify the database directory in rc.conf - Move database creation from post-install stage into startup script
Notes
Notes: svn path=/head/; revision=131178
Diffstat (limited to 'databases/mysql40-server/Makefile')
-rw-r--r--databases/mysql40-server/Makefile32
1 files changed, 11 insertions, 21 deletions
diff --git a/databases/mysql40-server/Makefile b/databases/mysql40-server/Makefile
index c50762a7dfbd..8f4c1334f30c 100644
--- a/databases/mysql40-server/Makefile
+++ b/databases/mysql40-server/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME?= mysql
-PORTVERSION= 4.0.23a
+PORTVERSION= 4.0.24
PORTREVISION?= 0
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_MYSQL}
@@ -17,14 +17,15 @@ MAINTAINER= ale@FreeBSD.org
COMMENT?= Multithreaded SQL database (server)
SLAVEDIRS= databases/mysql40-client
-PKGINSTALL?= ${WRKDIR}/pkg-install
-DB_DIR?= /var/db/mysql
USE_LIBTOOL_VER=15
USE_REINPLACE= yes
-USE_RC_SUBR= yes
+
+.if ${PKGNAMESUFFIX} == "-server"
+USE_RC_SUBR= mysql-server.sh
+.endif
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
-CONFIGURE_ARGS= --localstatedir=${DB_DIR} \
+CONFIGURE_ARGS= --localstatedir=/var/db/mysql \
--without-debug \
--without-readline \
--without-bench \
@@ -103,13 +104,15 @@ LATEST_LINK= mysql40-server
CONFLICTS= mysql-server-3.* mysql-server-4.[1-9].* mysql-server-5.*
-PLIST_SUB= DB_DIR=${DB_DIR} \
- MYSQL_VERSION=${PORTVERSION}
+PLIST_SUB= VER=${PORTVERSION}
MAN1= isamchk.1 isamlog.1 mysqld.1 \
mysqld_safe.1 perror.1 replace.1
+.if !defined(NOPORTDOCS)
DOCS= manual.html manual.txt manual_toc.html
+PORTDOCS= ${DOCS} Flags
+.endif
INFO= mysql
@@ -120,8 +123,6 @@ pre-fetch:
@${ECHO} " WITH_CHARSET=charset Define the primary built-in charset (latin1)."
@${ECHO} " WITH_XCHARSET=list Define other built-in charsets (may be 'all')."
@${ECHO} " WITH_OPENSSL=yes Enable secure connections."
- @${ECHO} " DB_DIR=directory Set alternate directory for database files"
- @${ECHO} " (default is /var/db/mysql)."
@${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library."
@${ECHO} " WITH_PROC_SCOPE_PTH=yes Use process scope threads"
@${ECHO} " (try it if you use libpthread)."
@@ -142,21 +143,10 @@ post-patch:
@${REINPLACE_CMD} -e "s|PTHREAD_SCOPE_SYSTEM|PTHREAD_SCOPE_PROCESS|g" ${WRKSRC}/libmysqld/lib_sql.cc ${WRKSRC}/sql/mysqld.cc
.endif
-post-build:
- @${SED} "s|%%DB_DIR%%|${DB_DIR}|g" ${PKGDIR}/pkg-install > ${WRKDIR}/pkg-install
-
post-install:
.if !defined(PACKAGE_BUILDING)
-.if exists(${DB_DIR}) && defined(OVERWRITE_DB) && ${OVERWRITE_DB:L} != "no"
- @${RM} -r ${DB_DIR}/mysql ${DB_DIR}/test 2>/dev/null || true
-.endif
-.if !exists(${DB_DIR}) || (defined(OVERWRITE_DB) && ${OVERWRITE_DB:L} != "no")
- ${PREFIX}/bin/mysql_install_db --ldata=${DB_DIR}
-.endif
- @${SETENV} DB_DIR=${DB_DIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
+ @${SETENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.endif
- @${SED} "s|%%RC_SUBR%%|${RC_SUBR}|g;s|%%PREFIX%%|${PREFIX}|g;s|%%DB_DIR%%|${DB_DIR}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh
- @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}/Flags
.for doc in ${DOCS}