mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
17 lines
345 B
Plaintext
17 lines
345 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
cd ${WRKSRC}
|
||
|
|
||
|
localconfig=src/config/InterViews/local.def
|
||
|
|
||
|
sed -e "s:/usr/local/interviews:${PREFIX}/interviews:" \
|
||
|
-e "s:/usr/X11R6:${X11BASE}:" \
|
||
|
${localconfig} > ${localconfig}.new
|
||
|
mv -f ${localconfig}.new ${localconfig}
|
||
|
|
||
|
CPU=`make CPU`; export CPU
|
||
|
make Makefile XCONFIGDIR=${X11BASE}/lib/X11/config
|
||
|
make Makefiles
|
||
|
make depend
|
||
|
|