$FreeBSD: head/www/xpi-conkeror/files/patch-conkeror 340725 2014-01-22 17:40:44Z mat $ --- 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 +