forked from Lainports/freebsd-ports
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
48 lines
1.6 KiB
Makefile
48 lines
1.6 KiB
Makefile
# Created by: Alex Samorukov <samm@os2.kiev.ua>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xtrabackup
|
|
DISTVERSION= 2.4.12
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PORTVERSION}/source/tarball/:xtrabackup \
|
|
SF/boost/boost/1.59.0/:boost
|
|
DISTFILES= percona-${PORTNAME}-${PORTVERSION}.tar.gz:xtrabackup \
|
|
boost_1_59_0.tar.bz2:boost
|
|
|
|
MAINTAINER= aleks@twindb.com
|
|
COMMENT= OpenSource version of InnoDB backup with support of Percona extensions
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
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
|
|
BROKEN_mips64= fails to compile: 'fpsetmask' was not declared in this scope
|
|
|
|
# quilt is required by build.sh
|
|
BUILD_DEPENDS= bash:shells/bash \
|
|
cmake:devel/cmake
|
|
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
|
|
|
|
# autotool is in use for 5.1 builds
|
|
USES= alias autoreconf:build bison cmake:noninja compiler:c++11-lang \
|
|
cpe gettext libtool perl5 shebangfix
|
|
CPE_VENDOR= percona
|
|
SHEBANG_FILES= storage/innobase/xtrabackup/xbcloud_osenv.sh
|
|
CMAKE_ARGS= -DWITH_BOOST=${WRKDIR}/boost_1_59_0
|
|
|
|
WRKSRC= ${WRKDIR}/percona-${PORTNAME}-${PORTVERSION}
|
|
|
|
PLIST_FILES= bin/xtrabackup bin/xbstream bin/innobackupex bin/xbcrypt \
|
|
bin/xbcloud bin/xbcloud_osenv
|
|
|
|
# Not sure why it's trying to install mysql client libraries now
|
|
post-install:
|
|
${RM} -rf ${STAGEDIR}${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|