mirror of
https://git.freebsd.org/ports.git
synced 2025-07-15 08:19:13 -04:00
- 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>
18 lines
334 B
Text
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
|
|
+
|