diff options
author | bapt <bapt@FreeBSD.org> | 2016-10-13 00:47:13 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2016-10-13 00:47:13 +0800 |
commit | f6b1932acb653c80aa63b5dbc44782bb4b8bb9c6 (patch) | |
tree | 122225b87c1a38f812fb2c0bbe558036cab4cde0 | |
parent | 58a3ab08fa761010c0e98279415351c7572e13ab (diff) | |
download | freebsd-ports-gnome-f6b1932acb653c80aa63b5dbc44782bb4b8bb9c6.tar.gz freebsd-ports-gnome-f6b1932acb653c80aa63b5dbc44782bb4b8bb9c6.tar.zst freebsd-ports-gnome-f6b1932acb653c80aa63b5dbc44782bb4b8bb9c6.zip |
Fix default command
Before urlview was trying to run /usr/local/etc/urlview/firefox
Now it properly calls firefox
-rw-r--r-- | textproc/urlview/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/urlview/Makefile b/textproc/urlview/Makefile index 824c0a87058b..6f06ede17ea6 100644 --- a/textproc/urlview/Makefile +++ b/textproc/urlview/Makefile @@ -3,6 +3,7 @@ PORTNAME= urlview PORTVERSION= 0.9.20131021 +PORTREVISION= 1 CATEGORIES= textproc www MAINTAINER= udvzsolt@gmail.com @@ -22,7 +23,7 @@ PLIST_FILES= bin/urlview \ post-patch: @${REINPLACE_CMD} -e 's,/etc,${PREFIX}&,' \ - -e 's/url_handler.sh/firefox/' \ + -e 's/DEFAULT_COMMAND.*url_handler.sh/DEFAULT_COMMAND "firefox/' \ ${WRKSRC}/* do-install: |