- fix gotweb build with -O2 on sparc64 (tracey; reported by kmos) - add next/prev navigation to gotweb commit briefs and commits pages (tracey) - add new gotweb tags page and ability to navigate all tags (tracey) - ensure gotweb's libexec helpers inherit build flags from parent directories - allow 'got ref' to manipulate refs which do not have a slash in their name - add an optional path argument to 'tog tree' - fix misplaced tog search prompt in split-screen views
41 lines
935 B
Makefile
41 lines
935 B
Makefile
# $OpenBSD: Makefile,v 1.28 2020/02/21 08:38:38 stsp Exp $
|
|
|
|
COMMENT-main = game of trees version control system
|
|
COMMENT-web = game of trees repository server for web browsers
|
|
|
|
V = 0.27
|
|
DISTNAME = got-${V}
|
|
PKGNAME-main = ${DISTNAME}
|
|
PKGNAME-web = gotweb-${V}
|
|
CATEGORIES = devel
|
|
HOMEPAGE = https://gameoftrees.org
|
|
MAINTAINER = Stefan Sperling <stsp@openbsd.org>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MULTI_PACKAGES = -main -web
|
|
|
|
# uses pledge()
|
|
WANTLIB-main = c curses panel pthread util z
|
|
WANTLIB-wb = c util z
|
|
|
|
ALL_TARGET = all web
|
|
INSTALL_TARGET = install web-install
|
|
|
|
MASTER_SITES = https://gameoftrees.org/releases/
|
|
|
|
DEBUG_PACKAGES-main = ${BUILD_PACKAGES:N-web}
|
|
DEBUG_PACKAGES-web = ${BUILD_PACKAGES:N-main}
|
|
|
|
BUILD_DEPENDS = www/kcgi
|
|
|
|
TEST_DEPENDS = devel/git \
|
|
${PKGPATH}=${V}
|
|
|
|
PREFIX-web = ${VARBASE}/www
|
|
TEST_TARGET = regress
|
|
FAKE_FLAGS = MANDIR=${PREFIX}/man/man CHROOT_DIR=${VARBASE}/www
|
|
|
|
.include <bsd.port.mk>
|