aboutsummaryrefslogtreecommitdiff
path: root/x11-fonts/xfs/files/xfs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'x11-fonts/xfs/files/xfs.sh')
-rw-r--r--x11-fonts/xfs/files/xfs.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/x11-fonts/xfs/files/xfs.sh b/x11-fonts/xfs/files/xfs.sh
deleted file mode 100644
index 5aa5f178ecff..000000000000
--- a/x11-fonts/xfs/files/xfs.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD: /tmp/pcvs/ports/x11-fonts/xfs/files/Attic/xfs.sh,v 1.3 2006-02-20 20:47:50 dougb Exp $
-#
-
-# PROVIDE: xfs
-# REQUIRE: cleartmp ldconfig
-# BEFORE: LOGIN
-
-# The following variables are provided to control startup of X font server in
-# rc configuration file (eg /etc/rc.conf):
-# xfs_enable (bool): Set to "NO" by default.
-# Set it to "YES" to enable X font server
-# xfs_config (str): Set to "%%PREFIX%%/lib/X11/fs/config" by default.
-# Configuration file for X font server.
-#
-# Please see xfs(1), rc.conf(5) and rc(8) for further details.
-
-. %%RC_SUBR%%
-
-name="xfs"
-rcvar=`set_rcvar`
-
-# Set defaults
-[ -z "$xfs_enable" ] && xfs_enable="NO"
-[ -z "$xfs_config" ] && xfs_config="%%PREFIX%%/lib/X11/fs/config"
-
-load_rc_config $name
-
-command="%%PREFIX%%/bin/${name}"
-command_args="-config ${xfs_config} -daemon"
-required_files="$xfs_config"
-extra_commands="reload"
-
-run_rc_command "$1"