533211e855
- 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]
18 lines
329 B
Text
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
|
|
+
|