1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/sysutils/dar/Makefile
Gerald Pfeifer ea8c8ec7da Bump PORTREVISION for ports depending on the canonical version of GCC
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
2019-07-26 20:46:53 +00:00

58 lines
1.7 KiB
Makefile

# Created by: Edson Brandi <ebrandi@fugspbr.org>
# $FreeBSD$
PORTNAME= dar
PORTVERSION= 2.5.14
PORTREVISION= 3
DISTVERSIONSUFFIX= -bis
CATEGORIES= sysutils archivers
MASTER_SITES= SF
MAINTAINER= bofh@FreeBSD.org
COMMENT= Command-line backup tool, aimed for disks
LICENSE= GPLv2+
USES= compiler:c++11-lang libtool shebangfix
SHEBANG_FILES= doc/samples/dar_backup doc/samples/*.bash doc/samples/*.sh
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --datadir=${DATADIR} --disable-build-html \
--disable-upx \
--disable-ea-support --disable-nodump-flag \
--disable-gnugetopt --disable-dar-static \
--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
OPTIONS_DEFINE= GCRYPT GPGME LZO ZLIB BZIP2 LZMA DOCS NLS
OPTIONS_DEFAULT= BZIP2 LZMA LZO ZLIB
OPTIONS_SUB= yes
ZLIB_CONFIGURE_OFF= --disable-libz-linking
BZIP2_CONFIGURE_OFF= --disable-libbz2-linking
LZMA_CONFIGURE_OFF= --disable-libxz-linking
GPGME_DESC= gpgme for asymetric crypto algorithms
GPGME_CONFIGURE_OFF= --disable-gpgme-linking
GPGME_LIB_DEPENDS= libgpgme.so:security/gpgme
GPGME_IMPLIES= GCRYPT
GCRYPT_CONFIGURE_OFF= --disable-libgcrypt-linking
GCRYPT_LIB_DEPENDS= libgcrypt.so:security/libgcrypt
LZO_DESC= Support lzo compression via liblzo2
LZO_LIB_DEPENDS= liblzo2.so:archivers/lzo2
LZO_CONFIGURE_OFF= --disable-liblzo2-linking
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
post-patch:
@${REINPLACE_CMD} -e \
's|(char \*\*) \(\&inptr,\)|\1| ; \
/LIBS/s|-lpthread|-pthread|' ${WRKSRC}/configure
@${FIND} ${WRKSRC}/doc -name "Makefile.in" | ${XARGS} \
${REINPLACE_CMD} -e \
's|$$(pkgdatadir)|$$(docdir)|g'
.include <bsd.port.mk>