freebsd-ports/devel/got/Makefile
Christian Weisgerber 0d03650df3 devel/got: update to 0.74
User-visible changes:
- add missing revoked_signers grammar to got.conf(5)
- add signer_id option to got.conf(5)
- move 'got init' command to 'gotadmin init'
- tog: implement global 'S' key map to switch split mode
- tog: implement +/- keymaps to resize the focussed split
- make 'tog log' error out in shallow Git repositories instead of hanging
- tog: enable moving to prev/next blame line in diff view
- histedit script: allow mesg command only after pick or edit commands
2022-07-14 12:17:04 +00:00

33 lines
813 B
Makefile

PORTNAME= got
PORTVERSION= 0.74
CATEGORIES= devel
MASTER_SITES= https://gameoftrees.org/releases/
MAINTAINER= naddy@FreeBSD.org
COMMENT= Game of Trees version control system
LICENSE= ISCL
LICENSE_FILE= ${WRKSRC}/LICENCE
USES= uidfix
CONFLICTS_INSTALL= p5-App-GitGot
# Insert #include "openbsd-compat.h" into each source file,
# after the <...> includes and before the "..." ones.
n= ${.newline}
post-extract:
@${FIND} ${WRKSRC} -name '*.[cy]' -exec \
${REINPLACE_CMD} '1,/^#include "/{ \
/^#include "/i\$n#include "openbsd-compat.h"\$n$n}' \
{} +
${CP} -R ${FILESDIR}/openbsd-compat ${WRKSRC}
# The regression test suite requires:
# installed got
# installed git
# ssh to 127.0.0.1
regress:
@(cd ${WRKSRC}/regress && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} regress)
.include <bsd.port.mk>