mirror of
https://git.freebsd.org/ports.git
synced 2025-07-11 14:29:17 -04:00
This is mainly for ports/106818. Submitted by: Jean-Francois Dockes <jean-francois.dockes at wanadoo.fr> (maintainer.
23 lines
931 B
Text
23 lines
931 B
Text
--- fonts/Makefile.orig Mon May 31 22:49:27 1993
|
|
+++ fonts/Makefile Mon Dec 18 11:46:21 2006
|
|
@@ -28,12 +28,18 @@
|
|
-${DIRBUILDER}
|
|
|
|
shownonascii: Xshownonascii
|
|
- sed -e s@/u/nsb/lib/fonts@`pwd`@ < Xshownonascii > shownonascii
|
|
+ sed -e s@/u/nsb/lib/fonts@${PREFIX}/lib/metamail/fonts@ < Xshownonascii > shownonascii
|
|
chmod +x shownonascii
|
|
|
|
mailto-hebrew: Xmailto-hebrew
|
|
- sed -e s@/u/nsb/lib/fonts@`pwd`@ < Xmailto-hebrew > mailto-hebrew
|
|
+ sed -e s@/u/nsb/lib/fonts@${PREFIX}/lib/metamail/fonts@ < Xmailto-hebrew > mailto-hebrew
|
|
chmod +x mailto-hebrew
|
|
+
|
|
+install:
|
|
+ mkdir -p ${PREFIX}/lib/metamail/fonts
|
|
+ install -c heb6x13.${FONTSUFFIX} heb8x13.${FONTSUFFIX} \
|
|
+ heb8x13B.${FONTSUFFIX} fonts.alias ${PREFIX}/lib/metamail/fonts
|
|
+ if [ -d /usr/X11R6 ]; then mkfontdir ${PREFIX}/lib/metamail/fonts ; fi
|
|
|
|
clean:
|
|
rm -f heb6x13.${FONTSUFFIX} heb8x13.${FONTSUFFIX} heb8x13B.${FONTSUFFIX} shownonascii mailto-hebrew fonts.dir
|