summaryrefslogtreecommitdiff
path: root/app-editors/fte/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-12-16 02:52:59 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-12-16 02:52:59 +0000
commitd17fad940dac9897b8b58d2f1d072869942696a5 (patch)
treee77cd567646e69b19c4e8a8b20a6b201c7f6966e /app-editors/fte/files
parent20e7188871e6d724b707132f925b9872536a91a0 (diff)
gentoo auto-resync : 16:12:2023 - 02:52:59
Diffstat (limited to 'app-editors/fte/files')
-rw-r--r--app-editors/fte/files/fte26
1 files changed, 0 insertions, 26 deletions
diff --git a/app-editors/fte/files/fte b/app-editors/fte/files/fte
deleted file mode 100644
index 2e4621b92a62..000000000000
--- a/app-editors/fte/files/fte
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-#
-# simple wrapper shell script which selects appropriate fte executable
-#
-
-if [ -n "$DISPLAY" ]; then
- if which xfte >/dev/null; then
- exec xfte "$@"
- elif which sfte >/dev/null; then
- exec sfte "$@"
- elif which vfte >/dev/null; then
- echo "Only Console version installed!"
- fi
-else
- if [ "$TERM" = linux ] && which vfte >/dev/null; then
- exec vfte "$@"
- elif which sfte >/dev/null; then
- exec sfte "$@"
- elif which xfte >/dev/null; then
- echo "Only X-Window version installed!"
- fi
-
-fi
-
-echo "No binary executable from the FTE family has been found!"
-echo "Please install one of them."