freebsd-ports/www/xpi-conkeror/files/patch-conkeror
Ashish SHUKLA 00f7eb7979 - Update to latest git revision
- Simplify build handling and respect build flags[1]
- Switch to options helpers[1]
- Remove unneeded @dir's from plist[1]
- Add build dependency on gmake
- Fix conkeror script to be PREFIX independent
- Update dependency on firefox to be inclusive

PR:		205576
Submitted by:	amdmi3[1]
2016-01-12 12:48:24 +00:00

15 lines
308 B
Text

--- conkeror.orig
+++ conkeror
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+XULRUNNER=$(which xulrunner)
+
+if [ -z "${XULRUNNER}" ]; then
+ echo Unable to locate xulrunner binary.
+elif [ ! -x "${XULRUNNER}" ]; then
+ echo ${XULRUNNER} is not executable.
+else
+ exec ${XULRUNNER} %%DATADIR%%/application.ini "$@"
+fi
+