- Add LICENSE_FILE - Strip binary PR: 196582 Submitted by: lightside@gmx.com Approved by: maintainer timeout
37 lines
838 B
Makefile
37 lines
838 B
Makefile
# Created by: Denise H. G. <darcsis@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tig
|
|
PORTVERSION= 2.0.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://jonas.nitro.dk/tig/releases/
|
|
|
|
MAINTAINER= darcsis@gmail.com
|
|
COMMENT= Text-mode interface for git
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= git:${PORTSDIR}/devel/git
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= ${ICONV_CONFIGURE_BASE}
|
|
USES= iconv gmake ncurses readline:port
|
|
|
|
ALL_TARGET= all strip
|
|
INSTALL_TARGET= install
|
|
|
|
PLIST_FILES= bin/tig etc/tigrc
|
|
|
|
OPTIONS_DEFINE= MANPAGES
|
|
OPTIONS_DEFAULT=MANPAGES
|
|
|
|
MANPAGES_BUILD_DEPENDS= asciidoc:${PORTSDIR}/textproc/asciidoc \
|
|
xmlto:${PORTSDIR}/textproc/xmlto
|
|
MANPAGES_ALL_TARGET= doc-man
|
|
MANPAGES_INSTALL_TARGET= install-doc-man
|
|
MANPAGES_PLIST_FILES= man/man1/tig.1.gz \
|
|
man/man5/tigrc.5.gz \
|
|
man/man7/tigmanual.7.gz
|
|
|
|
.include <bsd.port.mk>
|