00d558f442
Tig is a git repository browser that additionally can act as a pager for output from various git commands. When browsing repositories, it uses the underlying git commands to present the user with various views, such as summarized revision log and showing the commit with the log message, diffstat, and the diff. Using it as a pager, it will display input from stdin and colorize it.
33 lines
896 B
Makefile
33 lines
896 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2007/11/16 07:41:11 bjs Exp $
|
|
#
|
|
|
|
DISTNAME= tig-0.9.1
|
|
CATEGORIES= devel scm
|
|
MASTER_SITES= http://jonas.nitro.dk/tig/releases/
|
|
|
|
MAINTAINER= bjs@NetBSD.org
|
|
HOMEPAGE= http://jonas.nitro.dk/tig/
|
|
COMMENT= Ncurses-based GIT repository tool
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
|
|
BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
|
|
DEPENDS+= scmgit-[0-9]*:../../devel/scmgit
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake
|
|
USE_NCURSES= yes
|
|
|
|
GIT_CONFIG= ${PREFIX}/bin/git-config
|
|
CONFIGURE_ENV+= GIT_CONFIG=${GIT_CONFIG:Q}
|
|
|
|
CONFIGURE_ARGS+= ${CONFIGURE_ARGS.${ICONV_TYPE}-iconv}
|
|
CONFIGURE_ARGS.gnu-iconv= --with-libiconv=${BUILDLINK_PREFIX.iconv}
|
|
|
|
BUILD_TARGET= all doc
|
|
INSTALL_TARGET= install install-doc
|
|
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|