mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
de7418aad0
PR: 7260 Submitted by: Dom Mitchell <dom@myrddin.demon.co.uk>
14 lines
339 B
Bash
14 lines
339 B
Bash
#!/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
|