Date: Mon, 26 May 2014 20:17:22 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355443 - head/net/csync2 Message-ID: <201405262017.s4QKHMcq047112@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Mon May 26 20:17:22 2014 New Revision: 355443 URL: http://svnweb.freebsd.org/changeset/ports/355443 QAT: https://qat.redports.org/buildarchive/r355443/ Log: - Stagify - Use new LIB_DEPENDS syntax Approved by: portmgr blanket Modified: head/net/csync2/Makefile Modified: head/net/csync2/Makefile ============================================================================== --- head/net/csync2/Makefile Mon May 26 20:17:03 2014 (r355442) +++ head/net/csync2/Makefile Mon May 26 20:17:22 2014 (r355443) @@ -11,22 +11,17 @@ MASTER_SITES= http://oss.linbit.com/csyn MAINTAINER= alexey@renatasystems.org COMMENT= Cluster synchronization tool -LIB_DEPENDS= rsync.1:${PORTSDIR}/net/librsync \ - tasn1.7:${PORTSDIR}/security/libtasn1 \ - gnutls.26:${PORTSDIR}/security/gnutls \ - sqlite.2:${PORTSDIR}/databases/sqlite2 \ - gcrypt:${PORTSDIR}/security/libgcrypt \ - gpg-error.0:${PORTSDIR}/security/libgpg-error +LIB_DEPENDS= librsync.so:${PORTSDIR}/net/librsync \ + libtasn1.so:${PORTSDIR}/security/libtasn1 \ + libgnutls.so:${PORTSDIR}/security/gnutls \ + libsqlite.so:${PORTSDIR}/databases/sqlite2 \ + libgcrypt.so:${PORTSDIR}/security/libgcrypt \ + libgpg-error.so:${PORTSDIR}/security/libgpg-error OPTIONS_DEFINE= CSYNC2_COMPARE CSYNC2_COMPARE_DESC= Install csync2-compare script -USES= pkgconfig - -NO_STAGE= yes -.include <bsd.port.options.mk> - -MAN1= csync2.1 +USES= pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc @@ -37,7 +32,12 @@ LDFLAGS+= -L${LOCALBASE}/lib USE_RC_SUBR= csync2 PLIST_FILES= etc/csync2.cfg-dist \ - sbin/csync2 + sbin/csync2 \ + man/man1/csync2.1.gz + +SUB_FILES= pkg-install + +.include <bsd.port.options.mk> .if ${PORT_OPTIONS:MCSYNC2_COMPARE} RUN_DEPENDS+= bash>=0:${PORTSDIR}/shells/bash @@ -47,12 +47,7 @@ CSYNC2_COMPARE= csync2-compare CSYNC2_COMPARE= .endif -SUB_FILES= pkg-install - post-patch: ${REINPLACE_CMD} -E "s#%%CSYNC2_COMPARE%%#${CSYNC2_COMPARE}#" ${WRKSRC}/Makefile.in -post-install: - @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405262017.s4QKHMcq047112>