- fix blame bug where lines were annotated with wrong commit - man page spelling fixes (patch by Hiltjo Posthuma) - fix uninitialized 'editor' variable (found by Hiltjo Posthuma) - make 'got revert' ignore unversioned files instead of aborting (semarie@) - fix "last commit cannot be folded" histedit check with reordered commits
24 lines
508 B
Makefile
24 lines
508 B
Makefile
# $OpenBSD: Makefile,v 1.9 2019/08/19 10:08:37 stsp Exp $
|
|
|
|
COMMENT = game of trees version control system
|
|
|
|
V = 0.9
|
|
DISTNAME = got-${V}
|
|
CATEGORIES = devel
|
|
HOMEPAGE = https://gameoftrees.org
|
|
MAINTAINER = Stefan Sperling <stsp@openbsd.org>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
# uses pledge()
|
|
WANTLIB = c curses panel pthread util z
|
|
MASTER_SITES = https://gameoftrees.org/releases/
|
|
|
|
TEST_DEPENDS = devel/git \
|
|
${PKGPATH}=${V}
|
|
TEST_TARGET = regress
|
|
FAKE_FLAGS = MANDIR=${PREFIX}/man/man
|
|
|
|
.include <bsd.port.mk>
|