mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-01 10:59:55 +00:00
b66056ffed
Based on the timeout of 3+ months (2018-03-23-now) on bug#226885 for net/ucarp Also, looking at the subversion log, there were timeouts on: * bug#224169 r465659 | ygy | 2018-03-26 19:51:12 * bug#224768 r459066 | swills | 2018-01-15 07:16:28 * bug#224755 r459058 | swills | 2018-01-15 06:55:08 The last approval from alexey@renatasystems.org was over a year ago: bug#218563 r438885 | lifanov | 2017-04-19 08:30:28 (devel/py-colorama)
47 lines
1.0 KiB
Makefile
47 lines
1.0 KiB
Makefile
# Created by: Aaron Dalton <aaron@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= csync2
|
|
PORTVERSION= 2.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://oss.linbit.com/csync2/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Cluster synchronization tool
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= librsync.so.2:net/librsync2 \
|
|
libgnutls.so:security/gnutls \
|
|
libsqlite3.so:databases/sqlite3
|
|
|
|
OPTIONS_DEFINE= CSYNC2_COMPARE DOCS
|
|
OPTIONS_SUB= yes
|
|
CSYNC2_COMPARE_DESC= Install csync2-compare script
|
|
CSYNC2_COMPARE_RUN_DEPENDS= bash:shells/bash
|
|
|
|
USES= pkgconfig shebangfix
|
|
SHEBANG_FILES= csync2-compare
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= ac_cv_prog_PDFLATEX=
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
USE_RC_SUBR= csync2
|
|
|
|
SUB_FILES= pkg-install
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|(localstatedir)/lib|(localstatedir)/db|' \
|
|
-e 's/-ldl//' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
${MV} ${STAGEDIR}${PREFIX}/etc/csync2.cfg \
|
|
${STAGEDIR}${PREFIX}/etc/csync2.cfg.sample
|
|
${MKDIR} ${STAGEDIR}/var/backups/csync2
|
|
|
|
.include <bsd.port.mk>
|