ports/www/xpi-conkeror/files/patch-conkeror
Ashish SHUKLA 50f92c8f70 - Update to snapshot dated 20131117
- Add STAGEing support
- Add OPTIONs for building with Firefox, or libxul
- Add LICENSE information
- Improve package description

PR:		ports/183646
Submitted by:	Joseph Mingrone <jrm at ftfl.ca>
2013-12-02 14:02:20 +00:00

18 lines
334 B
Text

$FreeBSD$
--- 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} /usr/local/share/conkeror/application.ini "$@"
+fi
+