mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
14 lines
339 B
Plaintext
14 lines
339 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Set up the Imakefile correctly for gxditview.
|
||
|
#
|
||
|
# $Id$
|
||
|
#
|
||
|
|
||
|
cd $WRKSRC
|
||
|
sed -e 's|^GROFF_LIBDIR.*|GROFF_LIBDIR=/usr/share|' \
|
||
|
-e 's|^GROFF_FONTDIR.*|GROFF_FONTDIR=/usr/share/groff_font|' \
|
||
|
-e 's|^GROFF_FONTPATH.*|GROFF_FONTPATH=.:$(GROFF_FONTDIR)|' \
|
||
|
Imakefile > Imakefile.new
|
||
|
mv Imakefile.new Imakefile
|