mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
e44adb9948
Change uzsolt@uzsolt.hu to uzsolt@FreeBSD.org on all relevant ports: audio/musicpc converters/R-cran-jsonlite databases/R-cran-cachem databases/R-cran-fastmap databases/adminer deskutils/fet devel/R-cran-cli devel/R-cran-fansi devel/R-cran-later devel/R-cran-purrr devel/R-cran-vctrs devel/lua-sysctl ftp/R-cran-curl graphics/R-cran-colorspace graphics/R-cran-ggrepel graphics/R-cran-magick graphics/diff-pdf graphics/mupdf graphics/timg graphics/zathura-pdf-mupdf mail/squirrelmail-translations mail/squirrelmail math/R-cran-gtable math/R-cran-isoband math/geogebra misc/R-cran-xfun misc/histring print/R-cran-knitr security/R-cran-digest sysutils/hcloud sysutils/py-rdiff-backup textproc/R-cran-highr textproc/R-cran-htmltools textproc/R-cran-stringi textproc/R-cran-stringr textproc/R-cran-utf8 textproc/R-cran-yaml textproc/urlview www/kohana x11-wm/herbstluftwm x11/bemenu x11/dzen2 x11/stalonetray Approved by: bofh (mentor), diizzy (mentor) Differential Revision: https://reviews.freebsd.org/D43614
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>
|