summaryrefslogtreecommitdiff
path: root/emulators/linux-ePSXe/files/epsxe
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2003-12-26 23:01:39 +0000
committerPav Lucistnik <pav@FreeBSD.org>2003-12-26 23:01:39 +0000
commit5a25befeea7d96158dd39af5177609b511b0e950 (patch)
treeb00adc3269bb64349ea480e7831349764d39486c /emulators/linux-ePSXe/files/epsxe
parent- Remove devel/sip, it was integrated in devel/py-sip (diff)
- Update to 1.6.0
PR: ports/59670 Submitted by: Jean-Yves Lefort <jylefort@brutele.be> (maintainer)
Notes
Notes: svn path=/head/; revision=96651
Diffstat (limited to 'emulators/linux-ePSXe/files/epsxe')
-rw-r--r--emulators/linux-ePSXe/files/epsxe15
1 files changed, 15 insertions, 0 deletions
diff --git a/emulators/linux-ePSXe/files/epsxe b/emulators/linux-ePSXe/files/epsxe
new file mode 100644
index 000000000000..b50f5f52c02a
--- /dev/null
+++ b/emulators/linux-ePSXe/files/epsxe
@@ -0,0 +1,15 @@
+#!/bin/sh
+# epsxe - ePSXe launcher
+#
+# (c) 2002-2003 Jean-Yves Lefort.
+# All rights reserved.
+
+USERDIR=$HOME/.epsxe
+
+if [ ! -x $USERDIR/epsxe ]; then
+ echo "$USERDIR/epsxe not found or not executable."
+ echo "You should run epsxe-install."
+ exit 1
+fi
+
+cd $USERDIR && exec ./epsxe "$@"