mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
0a8553ab74
Submitted by: MIHIRA Yoshiro <sanpei@yy.cs.keio.ac.jp>
17 lines
345 B
Bash
17 lines
345 B
Bash
#! /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
|
|
|