1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/devel/got/Makefile
Christian Weisgerber ba66aa3149 devel/got: update to 0.105
User-visible changes:
- fix bogus "branch on server has different ancestry" errors from 'got send'
- do not try to merge binary files during (un)stage -p and revert -p
2024-11-15 11:28:33 +00:00

39 lines
845 B
Makefile

PORTNAME= got
DISTVERSION= 0.105
CATEGORIES= devel
MASTER_SITES= https://gameoftrees.org/releases/portable/
DISTNAME= got-portable-${DISTVERSION}
MAINTAINER= naddy@FreeBSD.org
COMMENT= Game of Trees version control system
WWW= https://gameoftrees.org
LICENSE= ISCL
LICENSE_FILE= ${WRKSRC}/LICENCE
USES= localbase pkgconfig ssl
CONFLICTS_INSTALL= p5-App-GitGot
GNU_CONFIGURE= Yes
# The regression test suite requires:
# installed got
# installed git
# installed perl and HTTP::Daemon
# ssh to 127.0.0.1
tests:
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} tests)
.include <bsd.port.pre.mk>
# When using LibreSSL use its own libtls, but when using OpenSSL
# use libtls from libretls.
.if ${SSL_DEFAULT:Mlibressl*}
# /* empty */
.else
LIB_DEPENDS+= libtls.so:security/libretls
.endif # SSL_DEFAULT
.include <bsd.port.post.mk>