Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Aug 2018 17:43:24 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r476650 - head/databases/xtrabackup
Message-ID:  <201808081743.w78HhOdk007831@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Wed Aug  8 17:43:24 2018
New Revision: 476650
URL: https://svnweb.freebsd.org/changeset/ports/476650

Log:
  databases/xtrabackup: Revert depdendency removal
  
  There is a perl script embedded in the binary which can be found at
  storage/innobase/xtrabackup/src/version_check.pl. This script can be
  ignored if you pass the argument --no-version-check. It could be
  possible to replace this with a simple shell script to achieve the same
  results and eliminate the dependency on a specific external
  libmysqlclient library inherited from DBD::MySQL. This will be
  investigated to eliminate this issue.
  
  Pointyhat:	me
  
  MFH:		2018Q3

Modified:
  head/databases/xtrabackup/Makefile

Modified: head/databases/xtrabackup/Makefile
==============================================================================
--- head/databases/xtrabackup/Makefile	Wed Aug  8 17:36:38 2018	(r476649)
+++ head/databases/xtrabackup/Makefile	Wed Aug  8 17:43:24 2018	(r476650)
@@ -3,7 +3,7 @@
 
 PORTNAME=	xtrabackup
 DISTVERSION=	2.4.9
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	databases
 MASTER_SITES=	https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PORTVERSION}/source/tarball/:xtrabackup \
 		SF/boost/boost/1.59.0/:boost
@@ -24,7 +24,8 @@ LIB_DEPENDS=	libcurl.so:ftp/curl \
 		libev.so:devel/libev \
 		libgcrypt.so:security/libgcrypt \
 		libgpg-error.so:security/libgpg-error
-RUN_DEPENDS=	qpress:archivers/qpress
+RUN_DEPENDS=	p5-DBD-mysql>=0:databases/p5-DBD-mysql \
+		qpress:archivers/qpress
 
 BROKEN_armv6=		fails to compile: cannot combine with previous 'type-name' declaration specifier
 BROKEN_armv7=		fails to compile: cannot combine with previous 'type-name' declaration specifier



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808081743.w78HhOdk007831>