mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
Our framework usually DTRT; sometimes it's necessary to pass it explicitly, e.g. for ports with USES+=qmake or which use exotic build systems, but these are mostly staging dawn and apparently debug leftovers, so remove them to not confuse the reader.
38 lines
1,012 B
Makefile
38 lines
1,012 B
Makefile
PORTNAME= cvsync
|
|
PORTVERSION= 0.25.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.cvsync.org/pub/cvsync/ \
|
|
ftp://ftp.allbsd.org/pub/cvsync/
|
|
DISTNAME= ${PORTNAME}-0.24.19
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= Portable CVS repository synchronization utility
|
|
WWW= https://www.cvsync.org/
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/doc/COPYRIGHT
|
|
|
|
USES= gmake ssl
|
|
USE_RC_SUBR= cvsyncd
|
|
|
|
PORTDOCS= ChangeLog FAQ TODO
|
|
PORTEXAMPLES= cvsync.conf cvsyncd-FreeBSD.conf \
|
|
cvsyncd-NetBSD.conf cvsyncd-OpenBSD.conf
|
|
|
|
MAKE_ENV= PTHREAD_LIBS="-lpthread" \
|
|
INSTALL= \
|
|
INSTALL_BIN_OPTS="${INSTALL_PROGRAM}" \
|
|
INSTALL_MAN_OPTS="${INSTALL_MAN}"
|
|
MAKE_FLAGS= OSVER="${OSVERSION}" HASH_TYPE=openssl
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
post-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC}/samples && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|