freebsd-ports/www/xpi-conkeror/files/patch-conkeror
Dennis Herrmann 533211e855 - Update to 20090821
- Take maintainership to Submitter [1]
- Connect to the build

PR:		ports/136010 ports/138022
Submitted by:	Anonymous <swell.k@gmail.com>
Submitted by:	Ashish SHUKLA <wahjava@gmail.com> [1]
2009-09-05 15:46:18 +00:00

18 lines
329 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
+