This is no longer needed. XF4-current finds these fonts w/o any

changes.
This commit is contained in:
marcm 2003-06-01 21:57:31 +00:00
parent 418c26cc59
commit 5f1bc7534b

View File

@ -1,58 +0,0 @@
#!/bin/sh
#
# $OpenBSD: INSTALL,v 1.2 2003/04/20 17:36:47 marcm Exp $
#
# exit on errors, use a sane path and install prefix
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
INST_DIR=${INST_DIR:-lib/X11/fonts}
do_notice()
{
echo
echo "+---------------"
echo "| After installing, you'll need to do one of the following:"
echo "| "
echo "| If you are the only user on the system who wants to use these"
echo "| fonts, create ~/.fonts.conf with this line:"
echo "| "
echo "| <dir>${PREFIX}/${INST_DIR}</dir>"
echo "| "
echo "| To enable the fonts systemwide, you have to edit"
echo "| /etc/fonts/fonts.conf and add:"
echo "| "
echo "| <dir>${PREFIX}/${INST_DIR}</dir>"
echo "| "
echo "| to the Font directory list section. "
echo "| "
echo "| See http://www.openbsd.org/faq/truetype.html for more details."
echo "+---------------"
echo
}
# verify proper execution
#
if [ $# -ne 2 ]; then
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
fi
# Verify/process the command
#
case $2 in
PRE-INSTALL)
: nothing to pre-install for this port
;;
POST-INSTALL)
do_notice
;;
*)
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
;;
esac
exit 0