View | Details | Raw Unified | Return to bug 204251 | Differences between
and this patch

Collapse All | Expand All

(-)xtrabackup.new/Makefile (-2 / +3 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/databases/xtrabackup/Makefile 400459 2015-10-29 13:47:34Z mat $
2
# $FreeBSD: head/databases/xtrabackup/Makefile 400459 2015-10-29 13:47:34Z mat $
3
3
4
PORTNAME=	xtrabackup
4
PORTNAME=	xtrabackup
5
PORTVERSION=	2.2.12
5
PORTVERSION=	2.3.2
6
CATEGORIES=	databases
6
CATEGORIES=	databases
7
MASTER_SITES=	https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PORTVERSION}/source/tarball/
7
MASTER_SITES=	https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PORTVERSION}/source/tarball/
8
DISTNAME=	percona-${PORTNAME}-${PORTVERSION}
8
DISTNAME=	percona-${PORTNAME}-${PORTVERSION}
Lines 17-23 Link Here
17
BUILD_DEPENDS=	bash:${PORTSDIR}/shells/bash \
17
BUILD_DEPENDS=	bash:${PORTSDIR}/shells/bash \
18
		cmake:${PORTSDIR}/devel/cmake \
18
		cmake:${PORTSDIR}/devel/cmake \
19
		bison:${PORTSDIR}/devel/bison
19
		bison:${PORTSDIR}/devel/bison
20
LIB_DEPENDS=	libgcrypt.so:${PORTSDIR}/security/libgcrypt \
20
LIB_DEPENDS=	libev.so:${PORTSDIR}/devel/libev \
21
		libgcrypt.so:${PORTSDIR}/security/libgcrypt \
21
		libgpg-error.so:${PORTSDIR}/security/libgpg-error
22
		libgpg-error.so:${PORTSDIR}/security/libgpg-error
22
RUN_DEPENDS=	p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql \
23
RUN_DEPENDS=	p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql \
23
		qpress:${PORTSDIR}/archivers/qpress
24
		qpress:${PORTSDIR}/archivers/qpress
(-)xtrabackup.new/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (percona-xtrabackup-2.2.12.tar.gz) = 6e8e3f6e6188321eef649cc1169bbc70200e4ae6a55160f3382db6be02a538d3
1
SHA256 (percona-xtrabackup-2.3.2.tar.gz) = 5680500d513324b2e034969c5cf1b17790588cce628a31607d55a637b38c80e5
2
SIZE (percona-xtrabackup-2.2.12.tar.gz) = 34827353
2
SIZE (percona-xtrabackup-2.3.2.tar.gz) = 34858678
(-)xtrabackup.new/files/patch-libarchive-CMakeLists.txt (+14 lines)
Line 0 Link Here
1
--- storage/innobase/xtrabackup/src/libarchive/CMakeLists.txt	2015-10-16 20:40:52.000000000 +0200
2
+++ storage/innobase/xtrabackup/src/libarchive/CMakeLists.txt.new	2015-11-03 14:46:57.952677630 +0100
3
@@ -822,9 +822,9 @@
4
 # Especially for early development, we want to be a little
5
 # aggressive about diagnosing build problems; this can get
6
 # relaxed somewhat in final shipping versions.
7
-IF ("CMAKE_C_COMPILER_ID" MATCHES "^GNU$")
8
+IF (CMAKE_C_COMPILER_ID MATCHES "^GNU$")
9
   ADD_DEFINITIONS(-Wall -Werror)
10
-ENDIF ("CMAKE_C_COMPILER_ID" MATCHES "^GNU$")
11
+ENDIF (CMAKE_C_COMPILER_ID MATCHES "^GNU$")
12
 
13
 IF(ENABLE_TEST)
14
 ADD_CUSTOM_TARGET(run_all_tests)

Return to bug 204251