47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# Created by: Denise H. G. <darcsis@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tig
|
|
PORTVERSION= 2.5.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://github.com/jonas/tig/releases/download/${DISTNAME}/
|
|
|
|
MAINTAINER= 0mp@FreeBSD.org
|
|
COMMENT= Text-mode interface for git
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
TEST_DEPENDS= git:devel/git
|
|
|
|
USES= iconv gmake ncurses readline:port
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= ${ICONV_CONFIGURE_BASE}
|
|
MAKE_ARGS= V=1
|
|
|
|
INSTALL_TARGET= install install-doc-man
|
|
|
|
PLIST_FILES= bin/tig \
|
|
etc/tigrc \
|
|
man/man1/tig.1.gz \
|
|
man/man5/tigrc.5.gz \
|
|
man/man7/tigmanual.7.gz
|
|
|
|
OPTIONS_DEFINE= GIT
|
|
|
|
GIT_DESC= Install devel/git as runtime dependency
|
|
|
|
GIT_RUN_DEPENDS= git:devel/git
|
|
GIT_VARS_OFF= PKGMESSAGE="${.CURDIR}/pkg-message-git"
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/tig
|
|
|
|
do-test:
|
|
# Tests fail when running as part of a non-interactive Poudriere
|
|
# build, but using script(1) seems to be a good enough workaround and
|
|
# allows them to run successfully anyway.
|
|
@/usr/bin/script -q /dev/null \
|
|
${SETENV} SHELL=/bin/sh ${GMAKE} -C ${WRKSRC} test
|
|
|
|
.include <bsd.port.mk>
|