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

Collapse All | Expand All

(-)xtrabackup/Makefile (-3 / +5 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.3
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 16-23 Link Here
16
# quilt is required by build.sh
16
# quilt is required by build.sh
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
		xxd:${PORTSDIR}/editors/vim-lite
21
LIB_DEPENDS=	libev.so:${PORTSDIR}/devel/libev \
22
		libgcrypt.so:${PORTSDIR}/security/libgcrypt \
21
		libgpg-error.so:${PORTSDIR}/security/libgpg-error
23
		libgpg-error.so:${PORTSDIR}/security/libgpg-error
22
RUN_DEPENDS=	p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql \
24
RUN_DEPENDS=	p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql \
23
		qpress:${PORTSDIR}/archivers/qpress
25
		qpress:${PORTSDIR}/archivers/qpress
(-)xtrabackup/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.3.tar.gz) = 88c2b2897c571dd9fac73c1506620a95276f0b7d7e7a30d96aadff0b0f23ae15
2
SIZE (percona-xtrabackup-2.2.12.tar.gz) = 34827353
2
SIZE (percona-xtrabackup-2.3.3.tar.gz) = 34864301
(-)xtrabackup/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