Received: by mail.netbsd.org (Postfix, from userid 605) id E6D5C84EC4; Wed, 2 Nov 2022 21:17:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2413384E6F for ; Wed, 2 Nov 2022 21:17:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id bt-FQO4EEdKU for ; Wed, 2 Nov 2022 21:17:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 9428584ECF for ; Wed, 2 Nov 2022 21:17:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8DC2FFA90; Wed, 2 Nov 2022 21:17:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1667423852262740" MIME-Version: 1.0 Date: Wed, 2 Nov 2022 21:17:32 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/databases/mysql80-client To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20221102211732.8DC2FFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1667423852262740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed Nov 2 21:17:32 UTC 2022 Modified Files: pkgsrc/databases/mysql80-client: Makefile Makefile.common Log Message: mysql80: Build out of srcdir. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/mysql80-client/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/mysql80-client/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1667423852262740 Content-Disposition: inline Content-Length: 1766 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/mysql80-client/Makefile diff -u pkgsrc/databases/mysql80-client/Makefile:1.6 pkgsrc/databases/mysql80-client/Makefile:1.7 --- pkgsrc/databases/mysql80-client/Makefile:1.6 Wed Nov 2 17:02:10 2022 +++ pkgsrc/databases/mysql80-client/Makefile Wed Nov 2 21:17:32 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2022/11/02 17:02:10 jperkin Exp $ +# $NetBSD: Makefile,v 1.7 2022/11/02 21:17:32 jperkin Exp $ PKGNAME= ${DISTNAME:S/-/-client-/} COMMENT= MySQL 8, a free SQL database (client) @@ -10,6 +10,8 @@ CONFLICTS= mysql3-client-[0-9]* mariadb- CMAKE_ARGS+= -DWITHOUT_SERVER=ON UNWRAP_FILES+= scripts/mysql_config INFO_FILES= yes -INSTALL_DIRS+= client include libmysql man scripts testclients +.for dir in client include libmysql man scripts testclients +INSTALL_DIRS+= ${WRKDIR}/build/${dir} +.endfor .include "../../mk/bsd.pkg.mk" Index: pkgsrc/databases/mysql80-client/Makefile.common diff -u pkgsrc/databases/mysql80-client/Makefile.common:1.3 pkgsrc/databases/mysql80-client/Makefile.common:1.4 --- pkgsrc/databases/mysql80-client/Makefile.common:1.3 Wed Nov 2 17:02:10 2022 +++ pkgsrc/databases/mysql80-client/Makefile.common Wed Nov 2 21:17:32 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.3 2022/11/02 17:02:10 jperkin Exp $ +# $NetBSD: Makefile.common,v 1.4 2022/11/02 21:17:32 jperkin Exp $ # # used by databases/mysql80-client/Makefile # used by databases/mysql80-server/Makefile @@ -44,6 +44,12 @@ CONFIG_SHELL= ${TOOLS_PATH.bash} BUILD_DEFS+= VARBASE +CONFIGURE_DIRS= ${WRKDIR}/build +CMAKE_ARG_PATH= ${WRKSRC} + +pre-configure: + ${MKDIR} ${WRKDIR}/build + # paths CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" CMAKE_ARGS+= -DINSTALL_DOCREADMEDIR="share/doc/mysql" --_----------=_1667423852262740--