diff options
author | bapt <bapt@FreeBSD.org> | 2015-03-22 07:05:19 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-03-22 07:05:19 +0800 |
commit | fe5a7e4bee2fc7a40343278a44de77847b5c91c5 (patch) | |
tree | b9556c9042a9d20d7c71f49869f39f95afc00052 /emulators | |
parent | 9167139629893ea7664f3b1cf93141ff1eeb82b4 (diff) | |
download | freebsd-ports-gnome-fe5a7e4bee2fc7a40343278a44de77847b5c91c5.tar.gz freebsd-ports-gnome-fe5a7e4bee2fc7a40343278a44de77847b5c91c5.tar.zst freebsd-ports-gnome-fe5a7e4bee2fc7a40343278a44de77847b5c91c5.zip |
Make fonts repecting XDG
Xorg is now looking in ${LOCALBASE}/share/fonts by default
Xorg now accepts symlinks in etc/X11/fontpath.d (as decribed in Xserver(1))
Large cleanup on lots of font ports
All fonts are now properly dynamically generating fonts.dir and fonts.scale
instead of sometime overwriting existing ones)
All fonts are generating fontconfig's cache
Improve consistency in fonts ports
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/stonx/Makefile | 4 | ||||
-rw-r--r-- | emulators/stonx/pkg-plist | 15 | ||||
-rw-r--r-- | emulators/x48/Makefile | 4 |
3 files changed, 10 insertions, 13 deletions
diff --git a/emulators/stonx/Makefile b/emulators/stonx/Makefile index a34086de80af..e73617d0414b 100644 --- a/emulators/stonx/Makefile +++ b/emulators/stonx/Makefile @@ -14,7 +14,7 @@ BUILD_DEPENDS= bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf \ gccmakedep:${PORTSDIR}/devel/gccmakedep \ mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir \ mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale \ - ${LOCALBASE}/lib/X11/fonts/misc/10x20-ISO8859-1.pcf.gz:${PORTSDIR}/x11-fonts/font-misc-misc + ${LOCALBASE}/share/fonts/misc/10x20-ISO8859-1.pcf.gz:${PORTSDIR}/x11-fonts/font-misc-misc RUN_DEPENDS= mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir RESTRICTED= Contains ROM (C) by Atari @@ -27,7 +27,7 @@ CONFIGURE_ARGS= --x-includes=${LOCALBASE}/include \ ALL_TARGET= all fnttobdf tosfonts fonts BINDIR= ${PREFIX}/bin -FNTDIR= ${PREFIX}/lib/X11/fonts/misc +FNTDIR= ${PREFIX}/share/fonts/misc DATA= atari/bench1.pas atari/bench1.prg ETCFILES= keysyms-alternative keysyms-german keysyms-spanish diff --git a/emulators/stonx/pkg-plist b/emulators/stonx/pkg-plist index 240094f69467..9e5f8f597ddc 100644 --- a/emulators/stonx/pkg-plist +++ b/emulators/stonx/pkg-plist @@ -9,12 +9,12 @@ bin/stonx %%DATADIR%%/gemdos_c/final.tos %%DATADIR%%/gemdos_c/mint/stonx.xfs %%DATADIR%%/tos.img -lib/X11/fonts/misc/System0-iso.pcf.gz -lib/X11/fonts/misc/System0.pcf.gz -lib/X11/fonts/misc/System1-iso.pcf.gz -lib/X11/fonts/misc/System1.pcf.gz -lib/X11/fonts/misc/System2-iso.pcf.gz -lib/X11/fonts/misc/System2.pcf.gz +%%FONTSDIR%%/misc/System0-iso.pcf.gz +%%FONTSDIR%%/misc/System0.pcf.gz +%%FONTSDIR%%/misc/System1-iso.pcf.gz +%%FONTSDIR%%/misc/System1.pcf.gz +%%FONTSDIR%%/misc/System2-iso.pcf.gz +%%FONTSDIR%%/misc/System2.pcf.gz %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/DEBUGGING @@ -24,6 +24,3 @@ lib/X11/fonts/misc/System2.pcf.gz %%PORTDOCS%%%%DOCSDIR%%/TOS-VERSIONS %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bench1.pas %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bench1.prg -@exec mkfontdir %D/lib/X11/fonts/misc -@exec xset fp+ %D/lib/X11/fonts/misc -@exec xset fp rehash diff --git a/emulators/x48/Makefile b/emulators/x48/Makefile index 2785a9b633b5..a0a7521d1c3f 100644 --- a/emulators/x48/Makefile +++ b/emulators/x48/Makefile @@ -15,8 +15,8 @@ COMMENT= HP48 SX/GX graphic calculator emulator LICENSE= GPLv3 -RUN_DEPENDS= ${LOCALBASE}/lib/X11/fonts/misc/7x14B-ISO8859-1.pcf.gz:${PORTSDIR}/x11-fonts/font-misc-misc \ - ${LOCALBASE}/lib/X11/fonts/75dpi/helvR12-ISO8859-1.pcf.gz:${PORTSDIR}/x11-fonts/font-adobe-75dpi +RUN_DEPENDS= ${LOCALBASE}/share/fonts/misc/7x14B-ISO8859-1.pcf.gz:${PORTSDIR}/x11-fonts/font-misc-misc \ + ${LOCALBASE}/share/fonts/75dpi/helvR12-ISO8859-1.pcf.gz:${PORTSDIR}/x11-fonts/font-adobe-75dpi USE_AUTOTOOLS= aclocal autoheader automake autoconf AUTOMAKE_ARGS= --add-missing --copy -Wno-portability |