1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

- Respect X11BASE

Approved by:	portmgr (linimon)
This commit is contained in:
Rong-En Fan 2006-12-07 01:13:53 +00:00
parent ad9935bd64
commit d722371cea
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=179075

View File

@ -11,13 +11,13 @@
+
+ install: .pcf_done
+ ( \
+ if [ ! -d /usr/X11R6/lib/X11/fonts/non-cjk ] ; \
+ then mkdir -p /usr/X11R6/lib/X11/fonts/non-cjk ; \
+ if [ ! -d ${X11BASE}/lib/X11/fonts/non-cjk ] ; \
+ then mkdir -p ${X11BASE}/lib/X11/fonts/non-cjk ; \
+ fi ; \
+ )
+ cp *pcf* fonts.alias /usr/X11R6/lib/X11/fonts/non-cjk
+ cp *pcf* fonts.alias ${X11BASE}/lib/X11/fonts/non-cjk
+ ( \
+ cd /usr/X11R6/lib/X11/fonts/non-cjk ; \
+ cd ${X11BASE}/lib/X11/fonts/non-cjk ; \
+ mkfontdir ; \
+ )
+