mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
14 lines
352 B
Bash
14 lines
352 B
Bash
#!/bin/sh
|
|
#
|
|
# Set up the Imakefile correctly for gxditview.
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
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)|' \
|
|
-e "s|@srcdir@|${WRKSRC}|" \
|
|
Imakefile.in > Imakefile
|