
$FreeBSD: ports/www/xpi-conkeror/files/patch-conkeror,v 1.1 2009/09/05 15:46:18 dhn Exp $

--- 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
+
