freebsd-ports/x11-servers/XFree86-4-PrintServer/scripts/configure
FUJISHIMA Satsuki 2fceaeca3d configure exits with error if
- USA_RESIDENT=YES and
 - imake-4 assumes HasXdmAuth=YES and
 - Wraphelp.c can't be found.
2002-01-06 20:55:22 +00:00

90 lines
2.4 KiB
Bash

#!/bin/sh
# This scripts work as following:
# (1) cp current xf86site.def (it may be created by imake-4 ports)
# to ${WRKDIR}/xc/config/cf.
# this means this ports use imake-4's config defaultly.
# (2) Generate temporal config for compiling.
# Some configs, such as `ForceNormalLib', `FreeBSDBuildXprog', are
# used for compiling this ports localy. so these configs will be generated
# this scripts. these configs will be stored to `host.def' file.
# but this host.def will never install. use local only.
ORIGDEF=$PREFIX/lib/X11/config/xf86site.def
DESTDEF=$WRKDIR/xc/config/cf/xf86site.def
ORIGHOSTDEF=$PREFIX/lib/X11/config/host.def
LOCALDEF=$WRKDIR/.config
HOSTDEF=$WRKDIR/xc/config/cf/host.def
configure () {
# Use original host.def as initial config file
rm -f $LOCALDEF
grep -v '#define.*ProjectRoot' $ORIGHOSTDEF >> $LOCALDEF
echo "#define ProjectRoot $PREFIX" >> $LOCALDEF
if [ X$InstallFSConfig = "X" ]; then
InstallFSConfig=YES
fi
# disable some configs: there are not used this ports
for i in BuildFonts \
Build75DpiFonts \
Build100DpiFonts \
BuildSpeedoFonts \
BuildType1Fonts \
BuildCIDFonts \
BuildCyrillicFonts \
BuildLatin2Fonts \
XF86Server \
BuildFontServer \
XnestServer \
XVirtualFramebufferServer \
LibHeaders \
ForceNormalLib \
XTrueTypeInstallCConvHeaders
do \
echo "#define $i NO" >> $LOCALDEF
done
echo "#define BuildServer YES" >> $LOCALDEF
echo "#define XprtServer YES" >> $LOCALDEF
echo "#define BuildServersOnly YES" >> $LOCALDEF
# Check Wraphelp.c
if [ $HasXdmAuth = DEFAULT ]; then
HasXdmAuth=$(awk '/^#define.*HasXdmAuth/ {print $3}' $ORIGDEF|tail -1)
fi
cpwh=NO
if [ $HasXdmAuth = YES ]; then
WH=$WRKDIR/xc/lib/Xdmcp/Wraphelp.c
if [ -f $WH ] ; then
cpwh=SOURCE
elif [ -f $DISTDIR/xc/Wraphelp.c ] ; then
cpwh=$DISTDIR/xc/Wraphelp.c
else
echo "==> You must fetch USA-legal Wraphelp.c manually"
echo "==> and put it to ${DISTDIR}/xc/."
exit 1
fi
if [ X$cpwh != XNO -a X$cpwh != XSOURCE ]; then
tr -d '\r' < $cpwh > $WH
fi
fi
# Copy ORIGDEF to DESTDEF
rm -f $DESTDEF
grep -v '#define.*HasXdmAuth' $ORIGDEF >> $DESTDEF
if [ $cpwh = NO ] ; then
echo "#define HasXdmAuth NO" >> $DESTDEF
else
echo "#define HasXdmAuth YES" >> $DESTDEF
fi
# copy generated config to host.def
cp -f $LOCALDEF $HOSTDEF
}
cp ${X11BASE}/lib/X11/config/version.def ${WRKSRC}/config/cf
configure
exit 0