6d588589c2
There are two cases: - The upstream versionning is compatible with our versionning, or using DISTVERSION's magic leads to a compatible PORTVERSION, use DISTVERSION. If it is possible to use DISTVERSIONPREFIX and DISTVERSIONSUFFIX to make it compatible, use them. - The upstream versionning is not compatible with our versionning, and DISTVERSION's magic does not lead to a correct PORTVERSION, then set PORTVERSION to the equivalent of our versionning, and set DISTNAME. It is possible to use a third variable where you store upstream's version and use it to compute PORTVERSION and/or DISTNAME, like the dns/bind9* ports do. Sponsored by: Absolight
40 lines
1 KiB
Makefile
40 lines
1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= cvsync
|
|
PORTVERSION= 0.25.0
|
|
CATEGORIES= net ipv6
|
|
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
|
|
|
|
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+= DESTDIR="${STAGEDIR}" \
|
|
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>
|