summaryrefslogtreecommitdiff
path: root/x11/XFree86/scripts
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>1995-01-05 03:51:15 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>1995-01-05 03:51:15 +0000
commit91c104263f9693b3d874b6bc19fa94751673e2f0 (patch)
treedda741e1175841ed591af28af7dab78e6fafb674 /x11/XFree86/scripts
parentUpdate checksum file to reflect latest tarball (diff)
This is X11R6/XFree86 3.1
The actual makefile does nothing! You have to edit it and remove a comment to build the beast. Note: there are in fact 2 makefiles: one which fetches the files from ftp.x.org and another which allows to compile from a cdrom. Note2: I have not extensively tested the port! (only one build!)
Notes
Notes: svn path=/head/; revision=710
Diffstat (limited to 'x11/XFree86/scripts')
-rw-r--r--x11/XFree86/scripts/configure30
1 files changed, 30 insertions, 0 deletions
diff --git a/x11/XFree86/scripts/configure b/x11/XFree86/scripts/configure
new file mode 100644
index 000000000000..b5783adfa5a4
--- /dev/null
+++ b/x11/XFree86/scripts/configure
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+cd $WRKSRC/config/cf/ || exit 1;
+cat >> xf86site.def << EOF
+#define XF86SvgaDrivers et4000 et3000 pvga1 gvga ati tvga8900 cirrus \
+ ncr77c22 compaq oak mx al2101 cl6420 \
+ video7 generic
+
+#define XF86Vga16Drivers et4000 ncr77c22 ati tvga8900 oak cl6420 generic
+
+#define XF86Vga2Drivers et4000 et3000 pvga1 gvga ati tvga8900 cirrus \
+ ncr77c22 compaq oak cl6420 generic
+ *
+#define XF86MonoDrivers hgc1280 sigma apollo hercules
+
+#define XF86W32Drivers et4000w32
+
+EOF
+
+version=`uname -r`
+set `echo $version|sed -e 's/\./ /g' -e 's/-/ /g'`
+mv FreeBSD.cf FreeBSD.cf.old
+sed -e "s/1.1.5/$version/" \
+ -e "s/OSMajorVersion *1/OSMajorVersion $1/" \
+ -e "s/OSMinorVersion *1/OSMinorVersion $2/" \
+ -e "s/OSTeenyVersion *5/OSTeenyVersion $3/" \
+ <FreeBSD.cf.old >FreeBSD.cf
+#you may change ExtraLibraries too!
+exit 0
+