mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -04:00
DRI drivers are incompatible with the old libGL in XFree86, they have been repocopied to graphics/xfree86-dri. Also note that with this commit the html manpages are going away, and with it the runtime dependency on perl for the imake port. Release notes at: http://www.x.org/X11R6.8.1/RELNOTES.txt Props to: kris (multiple cluster runs and sorting through logs) lesi (fixing all the issues in those logs, and more)
21 lines
798 B
Bash
21 lines
798 B
Bash
#!/bin/sh
|
|
|
|
LOCALDEF=$WRKDIR/.config
|
|
|
|
rm -f $LOCALDEF
|
|
echo "#define BuildServer YES" >> $LOCALDEF
|
|
echo "#define BuildServersOnly YES" >> $LOCALDEF
|
|
echo "#define XprtServer NO" >> $LOCALDEF
|
|
echo "#define BuildXprint NO" >> $LOCALDEF
|
|
echo "#define XnestServer YES" >> $LOCALDEF
|
|
echo "#define XorgServer NO" >> $LOCALDEF
|
|
echo "#define XVirtualFramebufferServer NO" >> $LOCALDEF
|
|
echo "#define XF86Server NO" >> $LOCALDEF
|
|
echo "#define BuildFontServer NO" >> $LOCALDEF
|
|
echo "#define BuildLBX NO" >> $LOCALDEF
|
|
echo "#define BuildXF86DRI NO" >> $LOCALDEF
|
|
echo "#define UseInstalledPrograms YES" >> $LOCALDEF
|
|
echo "#define UseInstalledLibraries YES" >> $LOCALDEF
|
|
echo "#define StandardIncludes -I${PREFIX}/include" >> $LOCALDEF
|
|
|
|
sh $PORTSDIR/x11-servers/xorg-server/scripts/configure.gen
|