mirror of https://git.FreeBSD.org/ports.git
34 lines
800 B
Makefile
34 lines
800 B
Makefile
PORTNAME= urlview
|
|
PORTVERSION= 0.9.20131021
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc www
|
|
|
|
MAINTAINER= uzsolt@FreeBSD.org
|
|
COMMENT= URL extractor/launcher
|
|
WWW= https://github.com/sigpipe/urlview
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= ncurses
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= sigpipe
|
|
GH_TAGNAME= 45443109
|
|
|
|
GNU_CONFIGURE= yes
|
|
PLIST_FILES= bin/urlview \
|
|
etc/urlview.conf.sample \
|
|
share/man/man1/urlview.1.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,/etc,${PREFIX}&,' \
|
|
-e 's/DEFAULT_COMMAND.*url_handler.sh/DEFAULT_COMMAND "firefox/' \
|
|
${WRKSRC}/*
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/urlview ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/urlview.man ${STAGEDIR}${PREFIX}/share/man/man1/urlview.1
|
|
${INSTALL_DATA} ${WRKSRC}/sample.urlview \
|
|
${STAGEDIR}${PREFIX}/etc/urlview.conf.sample
|
|
|
|
.include <bsd.port.mk>
|