#!/bin/bash # Specifies that the package can make effective use of up to 8 CPUs. #BuildProvides: rhbuildsys(ParallelBuild) <= 8 # XFree86 build requires about 1Gb of disk space, however other disk space # users may be running simultaneously, so we set requirements to 2Gb BuildConflicts: rhbuildsys(DiskFree) < 2000M %define CVSBuild 0 %define XFree86CVSDate 00000000 Name: XFree86 Version: 4.3.0 Release: 2 # These defines must precede any usage or weird things may happen. %define _x11dir /usr/X11R6 %define _x11bindir %{_x11dir}/bin %define _x11datadir %{_x11dir}/lib %define _x11includedir %{_x11dir}/include %define _x11localedir %{_x11datadir}/X11/locale %define _x11libdir %{_x11dir}/%{_lib} %define _x11mandir %{_x11dir}/man %define _x11fontdir %{_x11datadir}/X11/fonts %define with_icons_in_datadir 1 %if %{with_icons_in_datadir} %define _x11icondir %{_datadir}/icons %else %define _x11icondir %{_x11datadir}/X11/icons %endif # Takes advantage of SMP systems when building if enabled. Disable when # debugging builds with major new XFree86 versions until parallel building is # known to work again. ParallelBuild on s390x does not work. %ifarch s390 s390x %define ParallelBuild 0 %else # ParallelBuild doesn't work. I ported the patch to 4.2.99.901 but it fails # randomly. No idea what is going wrong in it. If anyone is interested, # please feel free to figure it out and send me an updated patch. %define ParallelBuild 0 %endif %define VerboseBuild 1 # Builds X with debug symbol info. This results in *FRECKIN* *HUGE* packages. # Enable this if you want to debug the modular X server. As of gdb 5.1.1, this # requires patches to gdb to be completely useful. I MEAN HUGE, ie 2-3 times # the size! Don't complain - you've been warned! gdb for XFree86 is # Available for download from ftp://people.redhat.com/mharris/gdb-xfree86 %define DebuggableBuild 0 %define Glide3version 20010520 %ifarch %{ix86} alpha ia64 # NEED GLIDE 2 first before this can be enabled %define BuildVoodoo 0 %define Glide3Require 1 %else %define BuildVoodoo 0 %define Glide3Require 0 %endif %define WithNewSavageDriver 1 %ifarch %{ix86} athlon x86_64 ia64 alpha %define with_DRI 1 %else %define with_DRI 0 %endif # Include the XFree86 Software Development Kit for drivers and module devel %define enable_sdk 0 %ifarch s390 s390x %define with_sdk 0 %else %define with_sdk %{enable_sdk} %endif # xf86cfg is now disabled, as we're moving to our own GTK based config tool # This only works well on x86/alpha, so we ifarch #ifarch %{ix86} alpha %ifarch s390 s390x %define with_xf86cfg 0 %define with_xf86config 0 %else %define with_xf86cfg 0 %define with_xf86config 0 %endif %define with_xedit 0 %define with_xman 0 %define with_xmh 0 # Build restest X resource extension client %define with_restest 1 # Build fontconfig and package it instead of using external fontconfig %define with_fontconfig 0 # Build using XFree86 supplied Freetype 2 %define with_freetype2 0 # Eventually we want to build fonts in a separate subpackage, so this option # toggles font building and subpackage inclusion %define with_fonts 1 %define with_whiteglass 0 %define with_redglass 0 %define with_handhelds 0 %define with_libxrx 0 %ifarch x86_64 %define with_dll_modules 0 %else %define with_dll_modules 0 %endif # Include the kdrive TinyX vesa and fbdev X servers # Note: This option is SOLELY for my own pure chewing satisfaction right # now. Kdrive may or may not be enabled at any given time depending on # if I forget to disable it or not. If it manages to squeak into Rawhide, # note that it is not supported at this time, and there is no official plan # to include or support it at this time. It's an experimental-only build # time feature for myself (and potentially others) to play with for a while. %ifarch %{ix86} athlon # gcc exhibits an ICE when building XIgsServer on x86_64 # build fails on XIgsServer when building on ppc # build fails on alpha in various places.. %define with_kdrive 0 %else %define with_kdrive 0 %endif # Command macros %define __mkfontdir umask 133;%{_x11bindir}/mkfontdir # Use this macro to call fc-cache throughout the specfile. %define __fccache umask 133;which fc-cache &> /dev/null && fc-cache # RPM 4.1-0.63 and higher in current rawhide, has the ability to abort builds # during final file packaging, if any files and/or directories are present in # $RPM_BUILD_ROOT that are not explicitly listed in %files section. Developers # can use this feature to ensure no important files go missing when updating # packages, and also to ensure new software versions which install new files, # do not end up having missing files due to a developer not checking for new # files. %define _unpackaged_files_terminate_build 0 %define _missing_doc_files_terminate_build 0 # Disable rpm from stripping XFree86's modules, or they explode #if %{DebuggableBuild} %define __spec_install_post /usr/lib/rpm/brp-compress %define debug_package %{nil} #endif %define rhbsys %([ -r /etc/beehive-root ] && echo 1 || echo 0) ###################################################################### ###################################################################### Summary: The basic fonts, programs and docs for an X workstation. License: XFree86 Group: User Interface/X URL: http://www.xfree86.org BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: flex >= 2.5.4a BuildRequires: bison, zlib-devel, ncurses-devel, utempter, expat-devel BuildRequires: pam-devel, kudzu-devel, pciutils-devel, libpng-devel # FIXME: Aparently fontconfig requires ed or ex to build. We don't want to # build fontconfig however, so this can go away when we can get rid of # fontconfig weirdness BuildRequires: ed # Requires rpm 4.0.4 or higher to build or else modules will get stripped BuildRequires: rpm >= 4.0.4 %if ! %{with_freetype2} # Requires new freetype, for a patch we apply or xft will fail to build BuildRequires: freetype-devel >= 2.1.3-4 #BuildRequires: freetype-devel >= 2.1.2-7 %endif %if ! %{with_fontconfig} BuildRequires: fontconfig-devel >= 2.1 %endif Prereq: /bin/ln, %{_sbindir}/chkfontpath, %{_x11bindir}/mkfontdir # Added when Glide3 was separated back out. # This conditional buildrequires works when you use rpm manually. However # it breaks horribly when passed through the Red Hat build system which # doesn't grok conditionals like this. %if %{Glide3Require} Requires: Glide3 >= %{Glide3version} %endif Requires: XFree86-xfs = %{version}-%{release}, XFree86-libs = %{version}-%{release} # Don't make the XFree86-base-fonts dependancy ver-rel as that is a bit problematic Requires: XFree86-base-fonts = %{version}, utempter # xinitrc is required as per bug #81424 in Red Hat bugzilla Requires: xinitrc Requires: %{_sysconfdir}/pam.d/system-auth # FIXME: xrdb needs /lib/cpp at runtime (should be changed to use /usr/bin/cpp) Requires: /usr/bin/cpp, %{_x11bindir}/xauth # kernel-drm requirement is so DRI works properly. The kernel RPM package # should have a "Provides: kernel-drm = 4.2.0". Future kernels that provide # new kernel-drm, should list all supported DRM interfaces with multiple # Provides: lines. The 4.2.0 DRM is backward compatible with XFree86 4.1.0 # also. %if %{with_DRI} Requires: kernel-drm = 4.3.0 %endif # Obsolete all old XFree86 3.3.x crap, and similar ancient stuff Obsoletes: XFree86-ATI, XFree86-Alliance, XFree86-ChipsTechnologies Obsoletes: XFree86-Cirrus, XFree86-Cyrix, XFree86-i740, XFree86-i810, XFree86-mga Obsoletes: XFree86-NeoMagic, XFree86-NVidia, XFree86-Rage128, XFree86-Rendition Obsoletes: XFree86-SiS, XFree86-3dfx, XFree86-Trident, XFree86-Tseng Obsoletes: tdfx_dri, X11R6-contrib, XFree86-V4L, XFree86-Setup Obsoletes: XFree86-3DLabs, XFree86-8514, XFree86-AGX, XFree86-FBDev Obsoletes: XFree86-Mach32, XFree86-Mach64, XFree86-Mach8, XFree86-Mono Obsoletes: XFree86-P9000, XFree86-S3, XFree86-S3V, XFree86-SVGA Obsoletes: XFree86-VGA16, XFree86-W32, XFree86-compat-modules, XFree86-compat-libs # This one is only on Alpha Obsoletes: XFree86-TGA # THese 2 don't really deserve their own packages, so we got rid of them Obsoletes: XFree86-xtrap-clients, XFree86-cursors # If we're not including xf86cfg, then we should obsolete it so it gets fried %if ! %{with_xf86cfg} Obsoletes: XFree86-xf86cfg %endif # This Obsoletes was added for ulT1mo latin2 fonts, subsequently removed for # 4.2.0, and now added back to force any prior packages to be removed upon # upgrade, since do not supply these fonts any longer, so Provides is not needed. Obsoletes: XFree86-ISO8859-2-Type1-fonts #Provides: XFree86-ISO8859-2-Type1-fonts Conflicts: XFree86-sdk < 4.2.99.3-20030115.0 # What archive format are we using? %define zipext tar.gz %if %{CVSBuild} Source: XFree86-%{version}-%{XFree86CVSDate}.%{zipext} %else Source: XFree86-%{version}.%{zipext} %endif Source3: xserver.pamd Source4: xdm.pamd Source5: xfs.init Source6: xfs.config Source7: xdm.init Source14: http://www.probo.com/timr/savage-1.1.27t.tgz Source23: mkxauth Source24: mkxauth.1x Source25: restest.c # My ATI hardware support document - work in progress. Please don't ask me # about this. When it is ready, I'll add it to the package, etc. #Source50: ati-hardware-jackpot.txt # XFree86 stable branch patch #Patch0: XFree86-4.2.1-xf-4_2-branch-20021008.patch # FIXME: Build without this and see if it is still relevant or not Patch12: XFree86-4.0-broken-includes.patch ##### DRIVER PATCHES ################################################# # Patches 100-104: apm driver patches # Patches 105-109: ark driver patches # Patches 110-119: ati driver patches # Patches 120-129: ATI Rage 128 Patch120: XFree86-4.2.99.901-ati-r128-chip-names-touchup.patch # Patches 130-139: radeon driver patches # XFree86-4.2.99.4-ati-chip-support-update.2.patch Patch132: XFree86-4.2.99.901-ati-radeon-argb-cursor-fix-from-keithp.patch Patch133: XFree86-4.2.99.901-ati-radeon-ia64-pagesize.patch Patch134: XFree86-4.2.99.902-ati-radeon-alan-legacy-vga.patch Patch135: XFree86-4.3.0-ati-radeon-dpms-on-dvi-v2.patch # Patches 140-149: chips driver patches Patch140: XFree86-4.2.99.901-chips-default-to-noaccel-on-69000.patch # For bugzilla https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=82438 Patch141: XFree86-4.2.99.901-chips-default-to-swcursor-on-65550.patch # Patches 150-159: cirrus driver patches # Patches 160-169: cyrix driver patches # Patches 170-179: fbdev driver patches # Patches 180-189: glint driver patches # Patches 190-199: i128 driver patches # Patches 200-209: i740 driver patches # Patches 210-219: Intel i810 / i830 patches # Patches 220-229: mga driver patches Patch220: XFree86-4.2.99.2-mga-xinerama-G450-issue.patch Patch221: XFree86-4.2.99.3-mga-unresolved-symbols.patch # Patches 230-239: neomagic driver patches # Patches 240-249: nv driver patches # Patches 255-259: rendition driver patches # Patches 260-269: s3 driver patches # Patches 270-279: s3virge driver patches # Patches 280-289: savage driver patches Patch280: XFree86-4.2.99.3-savage-pci-id-fixes.patch # The following 4 patches are required because we're not using stock XFree86 # savage driver 1.1.26, we're using Tim Robert's 1.1.27t driver instead. # This one is needed to fix the Imakefile as XFree86 4.3.0 moved the vbe # source directory Patch281: XFree86-4.2.99.902-savage-Imakefile-vbe-fixup.patch # These 2 (282,283) are ports of XFree86 differences between 1.1.26t and 1.1.26 # in XFree86 4.3.0 forward ported to 1.1.27t which we're using Patch282: XFree86-4.2.99.902-savage-1.1.26cvs-1.1.27t-fixups.patch Patch283: XFree86-4.2.99.902-savage-1.1.26cvs-1.1.27t-accel-fixup.patch # This one backs out a change which XFree86 CVS broke the driver with on # Dec 16, 2002. This change has been reverted in stock 4.3.0 sources already. Patch284: XFree86-4.2.99.902-savage-revert-vbe-change-from-X-cvs.patch # Patches 290-299: siliconmotion driver patches # Patches 300-309: sis driver patches # Patches 310-319: tdfx driver patches # Fix compiler warnings in tdfx Mesa code Patch319: XFree86-4.2.0-tdfx-fix-compiler-warnings.patch # Patches 320-329: tga driver patches # Patches 330-339: trident driver patches # Patches 340-349: tseng driver patches # Patches 350-359: v4l driver patches # Patches 360-369: vesa driver patches # Patches 370-379: vga driver patches # Patches 380-389: vmware driver patches ### Non-video driver patches ######################################### # Patches 400-419: xc/nls/{locale.dir,locale.alias,compose.dir} patches Patch400: XFree86-4.2.99.3-locale-alias-gb18030.patch Patch402: XFree86-4.0.2-xfree86.lst.patch # Manpage fixup Mike A. Harris Patch422: XFree86-4.0.3-xset-man-update.patch Patch504: XFree86-4.0.99.3-Xwrapper.patch # Patches: 800-819 - xkb keyboard symbol files Patch800: XFree86-4.2.99.901-xkb-sysreq.patch # TEMPORARILY MOVED HERE for patch reorganization Patch1009: XFree86-4.0.1-alpha-pcibus-lemming.patch # load agpgart for DRM Patch1021: XFree86-4.1.0-agpgart-load.patch # S390 patches (will be moved to arch specific section later) Patch3001: XFree86-4.0.1-nohardware.patch Patch3004: xdm-4.0-servonly.patch Patch3005: XFree86-4.1.0-cpp-s390x.patch #Patch3010: XFree86-4.1.0-sis-drm.patch # Chinese i18n support patches # 4000 - gb18030 patches may need tweaking # Patch by James Su, and Yu Shao Patch4000: XFree86-4.3.0-gb18030-20020207.patch # Patch by various people including GB18030 support by James Su # Arabic additions and other additions are credited to people inside the # patch itself. I'll be probably reworking these patches in the future to be # more streamlined. Patch4001: XFree86-4.3.0-gb18030-xtt.patch # Patch by Yu Shao which patches above work by Yu Shao # and James Su - XFree86-4.3.0-gb18030-20020207.patch Patch4002: XFree86-4.3.0-gb18030-enc.patch Patch4201: XFree86-4.2.0-alpha-ia64-_LP64-fix.patch Patch4305: XFree86-4.2.99.1-libICE-remove-bogus-delay.patch Patch5000: XFree86-4.2.99.1-Wacom-USB-driver-a25-update.patch Patch5001: XFree86-4.2.99.1-kdrive-posix-sigaction.patch # 6000-6049 xkb related patches # x86_64 / alpha / ia64 / ppc / ppc64 / s390 / s390x / sparc / sparc64 # 8000 series - ia64 patches # No idea, what if any of this crap is still needed, or if any of it is all # just ugly hacks, or real fixes. It's all HP supplied patches, and some # of the other X patches were just ugly bandaids. They're all disabled for # now by default, and probably will remain so until someone complains that # something is b0rken. Patch8001: XFree86-4.2.0-pci-hplso.diff Patch8002: XFree86-4.2.0-primpci-hplso.diff Patch8003: XFree86-4.2.0-ps2-hplso.diff Patch8004: XFree86-4.2.99.1-ia64-gcc3.1.patch Patch9006: XFree86-4.2.99.2-xkb-ar.patch Patch9007: XFree86-4.2.99.2-netmouse.patch # Red Hat Xft enhancements 9009/9010 are dependant on 9008 Patch9008: fontconfig-2.1-slighthint.patch Patch9009: XFree86-4.2.99.3-xft-loadtarget.patch Patch9010: XFree86-4.2.99.3-embeddedbitmap.patch Patch9013: XFree86-4.2.99.3-Imake-make-icondir-configurable.patch Patch9014: XFree86-4.2.99.4-x86_64-glx-nopic.patch Patch9015: XFree86-4.2.99.4-IncludeSharedObjectInNormalLib.patch # Minor version fixup from debian for manpage strings Patch9020: XFree86-4.2.99.901-007_fix_xfree86_man_version_string.patch Patch9021: XFree86-4.2.99.901-008_doc_extensions_fix.patch Patch9026: XFree86-4.2.99.901-024_r128_and_radeon_vgahw_independence.patch Patch9027: XFree86-4.2.99.901-027_ati_driver_message_cleanups.patch Patch9028: XFree86-4.2.99.901-028_fbdev_depth24_support.patch # Recommendation of Keith Packard Patch9031: XFree86-4.2.99.901-dont-install-Xcms.txt.patch Patch9033: XFree86-4.2.99.901-argb-cursor-render-bugfix-keithp.patch Patch9100: XFree86-4.3.0-xterm-can-2003-0063.patch # Revert CVS commit, as we can't verify it to be regressionless at this # stage, but will apply it once we've seen widescale testing. # # 952. A more complete set of dead accent/space compose sequences, add # for letters with a "stroke", and add some # combos for exponent characters, katakana voiced sounds, etc to # the en_US.UTF-8 compose file (#5646, David Monniaux). Patch9102: XFree86-4.3.0-revert-en_US.UTF-8-Compose.patch # This patch is a smaller version of the original 952 commit believed to # be safer for now, but unapplied currently Patch9103: XFree86-4.3.0-en_US.UTF-8-Compose-safer.patch ###################################################################### # Red Hat customizations, not intended for submission upstream Patch10000: XFree86-4.2.99.901-redhat-custom-startup.patch Patch10001: XFree86-4.2.99.2-redhat-custom-modelines.patch # Disable the ugly checkerboard pattern that X starts up with. We're in the # year 2002 now, and this pattern just has to go. No really. Patch10002: XFree86-4.2.0-die-ugly-pattern-die-die-die.patch # Parallel make patch, designed specifically to hog all CPU's on all the # build system boxes and make kernel builds take longer. Patch10003: XFree86-4.2.99.901-parallelmake.patch #XFree86-4.2.99.901-parallelmake-this-time-its-personal.patch Patch10004: XFree86-4.3.0-redhat-version-change-detection.patch # Red Hack kludges, bandaids, and other finely crafted ugly crap. The ones # containing "redhat" in the patch name, are our own home brewed crap, whereas # the other ones are to blame on someone else. # Mark Vojkovich claims this is a bug in the kernel. The kernel is # aparently caching things it shouldn't. Update: It seems to be confirmed to # not be a kernel bug, but rather some wonkyness on ia64 that is unknown # currently Patch20000: XFree86-4.2.99.2-hp-nv-ia64-memory-barrier.patch Patch20001: XFree86-4.1.0-hp-ia64-vgaHW-memory-barrier2.patch # FIXME: This patch is very crackrockish, and needs to be totally redone in # a cleaner more portable and sensible way. It "WorksForUs(TM)" though, so # we will use it for now. Patch20002: XFree86-4.2.0-sessreg-highuid.patch Patch20003: XFree86-4.2.0-xtermresources.patch # Disable DRI on 16Mb cards in high res (Mike A. Harris ) Patch20004: XFree86-4.2.0-tdfx-disable-dri-on-16Mb-cards-in-hires.patch # Force mkfontdir to make fonts.dir and encodings.dir, etc. mode 0644 Mike A. Harris # FIXME: Dawes doesn't like this one, perhaps reimplement as a commandline # option. Something to explore in the future. Patch20005: XFree86-4.2.99.2-mkfontdir-perms.patch Patch20006: XFree86-underline.patch # EXPERIMENTAL patches (disabled except for development) ###################################################################### %description XFree86 is an open source implementation of the X Window System. It provides the basic low level functionality which full fledged graphical user interfaces (GUIs) such as GNOME and KDE are designed upon. ###################################################################### %package devel Summary: X11R6 static libraries, headers and programming man pages. Group: Development/Libraries Requires: XFree86-libs = %{version}-%{release} Obsoletes: xpm-devel, Mesa-devel, Xft-devel Conflicts: Xft-devel Provides: xpm-devel, Mesa-devel #Provides: Xft-devel Requires: fontconfig-devel pkgconfig %description devel XFree86-devel includes the libraries, header files and documentation needed for developing applications for the X window system. ###################################################################### %package font-utils Summary: Font utilities required for installing fonts Group: User Interface/X # mkfontdir, ttmkfdir and other util were moved here so this conflict is needed Conflicts: XFree86 < 4.2.0-5.2, %description font-utils XFree86-font-utils provides mkfontdir, and other font related utilities which are required when installing font packages. ###################################################################### %package xfs Summary: A font server for the X Window System. Group: System Environment/Daemons Prereq: fileutils sed shadow-utils initscripts # chkconfig is needed for %post %postun Prereq: /sbin/chkconfig, %{_x11bindir}/mkfontdir, %{_bindir}/ttmkfdir Requires: XFree86-libs = %{version}-%{release} %description xfs XFree86-xfs contains the font server for XFree86. Xfs can also serve fonts to remote X servers. The remote system will be able to use all fonts installed on the font server, even if they are not installed on the remote computer. ###################################################################### %package twm Summary: A simple window manager Group: User Interface/X Requires: XFree86, XFree86-libs = %{version}-%{release} Provides: windowmanager # The twm.1 manpage was moved from the XFree86 package to the twm package # to fix bug #70025 on July 29 2002 - Mike A. Harris Conflicts: XFree86 <= 4.2.0-57.1 %description twm A simple and lightweight window manager ###################################################################### %package xdm Summary: X Display Manager Requires: XFree86 = %{version}, /etc/pam.d/system-auth # xinitrc requirement on 3.13 for user login shell enhancement to Xsession Requires: xinitrc >= 3.13 Group: User Interface/X %description xdm X Display Manager. ###################################################################### %package libs Summary: Shared libraries needed by the X Window System Group: System Environment/Libraries # Now that Xft2 is part of XFree86 4.3.0, we obsolete the old standalone one Obsoletes: Xft Conflicts: Xft Requires: freetype >= 2.1.3-4 %if %{with_freetype2} Obsoletes: freetype, xpm Provides: freetype = 2.1.2 %endif Provides: xpm #Provides: Xft Requires: XFree86-libs-data = %{version}-%{release} #Requires(post,postun,verify): /sbin/ldconfig grep textutils Prereq: /sbin/ldconfig grep textutils %description libs XFree86-libs contains the shared libraries required for running X applications. ###################################################################### %package libs-data Summary: Common architecture independent data required by XFree86-libs Group: System Environment/Libraries # Files moved here from these packages, so we conflict them Conflicts: XFree86 <= 4.2.99.2-0.20021105.0, XFree86-libs <= 4.2.99.2-0.20021105.0 %description libs-data Architecture independent data files required by XFree86-libs, including locale and compose database files, XErrorsDB, rgb.txt, etc. ###################################################################### # Font subpackages %if %{with_fonts} %package base-fonts Summary: The collection of XFree86 core base fonts Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir # Required so upgrades work, since base fonts moved here from main pkg Conflicts: XFree86 <= 4.2.0-3.1 # The fonts.* files from truetype and syriac moved from those pkgs to base Conflicts: XFree86-truetype-fonts < 4.2.99.901-20030209.2 Conflicts: XFree86-syriac-fonts < 4.2.99.901-20030209.2 %description base-fonts XFree86-base-fonts provides the base fonts required by XFree86 for proper operation. ###################################################################### %package truetype-fonts Summary: XFree86 Luxi TrueType fonts by Bigelow and Holmes Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir, %{_bindir}/ttmkfdir %description truetype-fonts A collection of truetype fonts which are part of the XFree86 core distribution, including the Luxi fonts donated by Bigelow and Holmes. ###################################################################### %package syriac-fonts Summary: XFree86 Syriac TrueType fonts by Beth Mardutho Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir, %{_bindir}/ttmkfdir %description syriac-fonts A collection of Syriac truetype fonts from Beth Mardutho, which are part of the XFree86 core distribution. ###################################################################### %package 75dpi-fonts Summary: A set of 75dpi resolution fonts for the X Window System. Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description 75dpi-fonts A set of 75 dpi fonts used by the X window system. ###################################################################### %package 100dpi-fonts Summary: A set of 100dpi resolution fonts for the X Window System. Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description 100dpi-fonts A set of 100 dpi fonts used by the X window system. ###################################################################### %package ISO8859-2-75dpi-fonts Summary: A set of 75dpi Central European language fonts for X. Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description ISO8859-2-75dpi-fonts Contains a set of 75dpi fonts for Central European languages. ###################################################################### %package ISO8859-2-100dpi-fonts Summary: A set of 100dpi Central European language fonts for X. Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description ISO8859-2-100dpi-fonts Contains a set of 100dpi fonts for Central European languages. ###################################################################### %package ISO8859-9-75dpi-fonts Summary: ISO8859-9-75dpi-fonts Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description ISO8859-9-75dpi-fonts Contains a set of 75dpi fonts for the Turkish language. ###################################################################### %package ISO8859-9-100dpi-fonts Summary: ISO8859-9-100dpi-fonts Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description ISO8859-9-100dpi-fonts Contains a set of 100dpi fonts for the Turkish language. ###################################################################### %package ISO8859-14-75dpi-fonts Summary: ISO8859-14-75dpi-fonts Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description ISO8859-14-75dpi-fonts Contains a set of 75dpi fonts in the ISO8859-14 encoding which provide Welsh support. ###################################################################### %package ISO8859-14-100dpi-fonts Summary: ISO8859-14-100dpi-fonts Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description ISO8859-14-100dpi-fonts Contains a set of 100dpi fonts in the ISO8859-14 encoding which provide Welsh support. ###################################################################### %package ISO8859-15-75dpi-fonts Summary: ISO8859-15-75dpi-fonts Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description ISO8859-15-75dpi-fonts Contains a set of 75dpi fonts in the ISO8859-15 encoding which provide Euro support. ###################################################################### %package ISO8859-15-100dpi-fonts Summary: ISO8859-15-100dpi-fonts Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description ISO8859-15-100dpi-fonts Contains a set of 100dpi fonts in the ISO8859-15 encoding which provide Euro support. ###################################################################### %package cyrillic-fonts Summary: Cyrillic fonts for X. Group: User Interface/X Prereq: /usr/sbin/chkfontpath, %{_x11bindir}/mkfontdir %description cyrillic-fonts Contains a set of Cyrillic fonts. %endif # End of font subpackages ############################################ ###################################################################### %ifnarch s390 s390x %package doc Summary: Documentation on various X11 programming interfaces. Group: Documentation %description doc XFree86-doc provides a great deal of documentation, in PostScript format, on the various X APIs, libraries, and other interfaces. If you need low level X documentation, you will find it here. Topics include the X protocol, the ICCCM window manager standard, ICE session management, the font server API, etc. %endif ###################################################################### %package Xnest Summary: A nested XFree86 server. Group: User Interface/X Requires: XFree86 = %{version}-%{release} %description Xnest Xnest is an X server, which has been implemented as an ordinary X application. It runs in a window just like other X applications, but it is an X server itself in which you can run other software. It is a very useful tool for developers who wish to test their applications without running them on their real X server. ###################################################################### ###################################################################### %package Xvfb Summary: A virtual framebuffer X Windows System server for XFree86. Group: User Interface/X Requires: XFree86 = %{version}-%{release} ###################################################################### %package tools Summary: Various tools for XFree86 Group: User Interface/X Obsoletes: X11R6-contrib Requires: XFree86 %description tools Various tools for X, including listres, xbiff, xeyes, xcalc, and xload among others. This package contains all applications that used to be in X11R6-contrib in older releases. ###################################################################### %package xauth Summary: X authority file utility Group: User Interface/X Conflicts: XFree86 < 4.2.0-50.11 Obsoletes: mkxauth Provides: mkxauth %description xauth The xauth program is used to edit and display the authorization information used in connecting to the X server. ###################################################################### %package Mesa-libGL Summary: A 3D graphics library which uses an OpenGL-like API Group: System Environment/Libraries Obsoletes: Mesa Provides: Mesa # Conflict is due to this package being split out from XFree86-libs Conflicts: XFree86-libs < 4.2.0-50.5 %description Mesa-libGL The Mesa 3D graphics library is a powerful and generic toolset for creating hardware assisted computer graphics. To the extent that Mesa utilizes the OpenGL command syntax or state machine, it is being used with authorization from Silicon Graphics, Inc. However, the author (Brian Paul) makes no claim that Mesa is in any way a compatible replacement for OpenGL or associated with Silicon Graphics, Inc. Those who want a licensed implementation of OpenGL should contact a licensed vendor. Mesa is very similar to OpenGL and you might find Mesa to be a valid alternative to OpenGL. ###################################################################### %package Mesa-libGLU Summary: Commonly used GL utility library Group: System Environment/Libraries #Requires: XFree86 # Conflict is due to this package being split out from XFree86-libs Conflicts: XFree86-libs < 4.2.0-50.5 %description Mesa-libGLU libGLU is a utility library used by a lot of OpenGL applications ###################################################################### %if %{with_xf86cfg} %package xf86cfg Summary: XFree86 configuration program Group: User Interface/X Obsoletes: XFree86-XF86Setup Requires: XFree86 = %{version}-%{release} # Removed dep on Xconfigurator and changed to the actual Cards file instead Requires: %{_x11datadir}/X11/Cards %description xf86cfg Configuration tool for XFree86 %endif ###################################################################### %description Xvfb Xvfb (X Virtual Frame Buffer) is an X server that is able to run on machines with no display hardware and no physical input devices. Xvfb simulates a dumb framebuffer using virtual memory. Xvfb does not open any devices, but behaves otherwise as an X display. Xvfb is normally used for testing servers. ###################################################################### %if %{with_kdrive} %package TinyX Summary: [EXPERIMENTAL] XFree86 TinyX minimalist X servers for embedded systems Group: User Interface/X #Prereq: no idea what prereqs we need yet. %description TinyX [EXPERIMENTAL] TinyX is comprised of a various X servers especially designed for PDAs, portable devices, embedded systems, and other hardware with scarce memory and CPU resources. These RPM packaged X servers are an RPM packager build experiment, and the package is not currently officially supported. %endif ###################################################################### %if %{with_sdk} %package sdk Summary: XFree86 SDK for X server driver module development Group: User Interface/X #Prereq: no idea what prereqs we need yet. %description sdk The XFree86 SDK provides the developmental files which are necessary for developing X server driver modules, and for compiling driver modules outside of the XFree86 source code tree. Developers writing X video drivers, input drivers, or other X modules should install this package. %endif ########## PREP ################################################### %prep # Beehive doesn't grok BuildRequires tags that fall inside a %ifarch block # so we can't conditionally include Glide3-devel per architecture. Instead # we leave out the BuildRequires and test for the package existing here with # a prep time check. We bomb out if Glide3-devel is not installed. %if %{Glide3Require} #%define Glide3BuildRequires %([ "$(rpm -q --queryformat '%{version}' Glide3-devel)" -ge %{Glide3version} ] && echo 1 || echo 0) echo -n "Testing for Glide3-devel >= %{version} build requirement ... " if [ "$(rpm -q --queryformat '%%{version}' Glide3-devel)" -ge "%{Glide3version}" ];then echo "Glide3-devel found." else echo -e "not found.\n\n" cat <<-EOF Glide3 and Glide3-devel version %{Glide3version} or higher are required to build XFree86 on x86, alpha and ia64. Please install these packages first prior to building XFree86. This dependancy check would normally be a BuildRequires line in the XFree86 spec file, however build requirements that only pertain to certain architectures, and not all screw up some software, so this check was implemented instead. EOF %exit fi %endif %setup -q -c %if %{WithNewSavageDriver} { echo "Updating SAVAGE driver with %{SOURCE14}" pushd xc/programs/Xserver/hw/xfree86/drivers mv savage savage.1.1.26 tar zxvf %{SOURCE14} popd } %endif ########## PATCH ################################################## #%patch0 -p0 -b .xf-4_3-branch %patch12 -p1 -b .patch-broken # Patch for R128 from Michal Daenzer %patch120 -p0 -b .ati-r128-chip-names-touchup #%patch132 -p0 -b .ati-radeon-argb-cursor-fix-from-keithp %patch133 -p0 -b .ati-radeon-ia64-pagesize %patch134 -p0 -b .ati-radeon-alan-legacy-vga %patch135 -p0 -b .ati-radeon-dpms-on-dvi %patch140 -p0 -b .chips-default-to-noaccel-on-69000 %patch141 -p0 -b .chips-default-to-swcursor-on-65550 # Cyrix # Glint # Intel i740 # Intel i810/i830 # mga - Matrox #%patch220 -p0 -b .mga-xinerama-G450-issue %patch221 -p0 -b .mga-unresolved-symbols %patch280 -p0 -b .savage-pci-id-fixes %patch281 -p0 -b .savage-Imakefile-vbe-fixup %patch282 -p0 -b .savage-1.1.26cvs-1.1.27t-fixups %patch283 -p0 -b .savage-1.1.26cvs-1.1.27t-accel-fixup %patch284 -p0 -b .savage-revert-vbe-change-from-X-cvs # neomagic # Nvidia (nv) # SiS patches # tdfx driver patches # Trident ###################################################################### %patch402 -p0 -b .patch-xfree86.lst %patch400 -p0 -b .locale-alias-gb18030 %patch422 -p0 -b .xset-man-update # Patches 800 - 819 xkb keyboard symbol patches %patch800 -p0 -b .xkb-sysreq %ifarch alpha # FIXME: Needed still? %patch1009 -p0 -b .lemming %endif %patch1021 -p1 -b .agpgart-load # S/390, S/390x patches %ifarch s390 s390x %patch3001 -p1 -b .s390-nohardware %patch3005 -p1 -b .s390-cpp %endif %patch3004 -p1 -b .xdm-servonly #%patch3010 -p0 -b .sis-drm-fix # Chinese i18n - GB18030 locale support patches %patch4000 -p0 -b .gb18030-support %patch4001 -p0 -b .gb18030-xtt-support %patch4002 -p0 -b .gb18030-enc %ifarch alpha ia64 ppc64 s390x x86_64 # FIXME properly %patch4201 -p0 -b .alpha-ia64-_LP64-fix %endif %patch4305 -p0 -b .libICE-remove-bogus-delay %patch5000 -p0 -b .Wacom-USB-driver-a25-update %patch5001 -p0 -b .kdrive-posix-sigaction %patch9007 -p0 -b .netmouse perl -p -i -e 's# fontconfig/# xc/lib/fontconfig/#g' %{PATCH9008} %patch9008 -p0 -b .fontconfig-slighthint %patch9009 -p0 -b .xft-loadtarget %patch9010 -p0 -b .embeddedbitmap %patch9013 -p0 -b .Imake-make-icondir-configurable #%patch9014 -p0 -b .x86_64-glx-nopic %patch9015 -p0 -b .IncludeSharedObjectInNormalLib # Fixes from Daniel Stone's Debian debs %patch9020 -p0 -b .007_fix_xfree86_man_version_string %patch9021 -p0 -b .008_doc_extensions_fix # This is ifnarchd for now just to be safe %ifnarch %{ix86} x86_64 alpha ia64 #%patch9026 -p0 -b .r128_and_radeon_vgahw_independence %endif %patch9027 -p0 -b .027_ati_driver_message_cleanups %patch9028 -p0 -b .028_fbdev_depth24_support %patch9031 -p0 -b .dont-install-Xcms.txt %patch9100 -p0 -b .xterm-can-2003-0063 %patch9102 -p0 -R -b .revert-en_US.UTF-8-Compose %patch9103 -p0 -b .en_US.UTF-8-Compose-safer # Red Hat custom patches %patch10000 -p0 -b .redhat-custom-startup %patch10001 -p0 -b .redhat-custom-modelines # The ancient X startup stipple pattern is no more.. %patch10002 -p0 -b .die-ugly-pattern-die-die-die # FIXME The parallel make patch might patch stuff that is fixed in a different # way now, but that doesn't conflict with the patch. Disabled to be safe. %if %{ParallelBuild} #%patch10003 -p0 -b .parallelmake %endif %patch10004 -p0 -b .redhat-version-change-notification # Red Hacks - this is ugly bandaid "make stuff work" crap. ;o) # FIXME: kludge for kernel bug. Fix the damn kernel. #%patch20000 -p0 -b .nv-ia64-memory-barrier # Kludge for a kernel bug on ia64. Fix the damn kernel. #%patch20001 -p0 -b .vgaHW-memory-barrier # This patch is crackheadish hack. Needs to be redone in a clean way. %patch20002 -p0 -b .sessreg-highuid %patch20003 -p0 -b .xtermresources %patch20004 -p0 -b .tdfx-disable-dri-on-16Mb-cards-in-hires %patch20005 -p0 -b .mkfontdir-perms %patch20006 -p0 -b .underline ###################################################################### ##### CREATE host.def ############################################## pwd %if %{rhbsys} %define rhbuild Red Hat Linux release %else %define rhbuild Custom Build %endif # FIXME: Hack to remove -g from RPM_OPT_FLAGS until XFree86 can be built # with new rpm/gdb -debuginfo goodness export RPM_OPT_FLAGS=${RPM_OPT_FLAGS//-g/} cat > xc/config/cf/host.def << EOF #define XFree86CustomVersion "%rhbuild: %{version}-%{release}" /* Experimental custom messages */ #define XFree86RedHatCustom YES #define BuilderString "Build Host: %(hostname)\n" #define LinuxDistribution LinuxRedHat %if %{DebuggableBuild} #define BuildDebug YES /* #define XFree86Devel YES */ %endif /* FIXME: Should we be setting this to YES, or should Imake be autodetecting? * I would think it should autodetect, and we dont need to care about it here. * * #define HasGcc3 YES (for XFree86 4.3.0) */ #define BootstrapCFlags $RPM_OPT_FLAGS -pipe #define DefaultGcc2i386Opt $RPM_OPT_FLAGS -fno-strength-reduce GccAliasingArgs -pipe /* -fPIC present as it is needed by static libs in order to be linked into * shared libs */ #define DefaultGcc2x86_64Opt $RPM_OPT_FLAGS -fno-strength-reduce GccAliasingArgs -pipe /* -fPIC */ #define DefaultGcc2AxpOpt $RPM_OPT_FLAGS -Wa,-m21164a GccAliasingArgs -pipe #define DefaultGcc2PpcOpt $RPM_OPT_FLAGS GccAliasingArgs -pipe %if %{with_dll_modules} #define MakeDllModules YES %endif %if %{ParallelBuild} #define ParallelMakeFlags -j%(getconf _NPROCESSORS_ONLN) /* This oneseems to fuckup on GLU, possibly a conflict with HJL's patch */ /* #define HasParallelMake YES */ %endif /* FIXME: Future enhancement ... no ETA, dont ask. *#define ProjectRoot /usr/local/X11R6 *#define NothingOutsideProjectRoot YES *#define EtcX11Directory ProjectRoot/etc */ /* We want includes in %{_includedir}/GL, so we move them there later on */ #define LinkGLToUsrInclude NO /* The OpenGL ABI on Linux standard states libGL and libGLU must be present in * /usr/lib either directly, or as symlinks. */ #define LinkGLToUsrLib YES #define BuildGLwLibrary YES #define ForceNormalLib YES /* Disable joystick support because it is totally broken in XFree86 4.x, at * least up to and including 4.1.0. Use native OS joystick support instead. */ #define JoystickSupport NO /* FIXME: This should be defaulted upstream correctly, or patched and sent * upstream, and then removed from our specfile. What a mess. */ %ifarch s390 s390x #define HasAgpGart NO %else #define HasAgpGart YES %endif /* Expat is only needed by fontconfig */ #define HasExpat YES /* FIXME: HasFontconfig is broken so we have to use UseFontconfig */ #define UseFontconfig YES /* FIXME: Building using XFree86's internal freetype for now * Remove this mess once builds succeed with with_freetype2 set to 0 */ %if %{with_freetype2} #define HasFreetype2 NO %else #define HasFreetype2 YES %endif #define HasPam YES #define HasPamMisc YES #define HasZlib YES /* This is YES in xfree86.cf for all architectures but x86, and we need it * on x86 or else KDE/GNOME shared libs and others that link to them will * not be too happy. * Update: This is needed on x86_64 also as the xfree86.cf file settings get * ignored. I've assumed they all get ignored and made it all-arch instead. */ #define StaticNeedsPicForShared YES #define HasLinuxInput YES #define XtermWithI18N YES %if %{BuildVoodoo} #define HasGlide2 YES #define Glide2IncDir %{_includedir}/glide %endif %ifarch %{ix86} alpha ia64 #define HasGlide3 YES #define Glide3LibName glide3 #define Glide3IncDir %{_includedir}/glide3 %endif %if %{with_fonts} #define BuildFonts YES #define BuildSpeedoFonts YES #define BuildCyrillicFonts YES #define BuildBethMarduthoFonts YES /* #define BuildISO8859_1Fonts YES */ #define BuildISO8859_2Fonts YES #define BuildISO8859_3Fonts NO #define BuildISO8859_4Fonts NO #define BuildISO8859_5Fonts BuildCyrillicFonts /* #define BuildISO8859_6Fonts NO */ #define BuildISO8859_7Fonts YES /* #define BuildISO8859_8Fonts NO */ #define BuildISO8859_9Fonts YES #define BuildISO8859_10Fonts NO #define BuildISO8859_11Fonts NO #define BuildISO8859_12Fonts NO #define BuildISO8859_13Fonts NO #define BuildISO8859_14Fonts YES #define BuildISO8859_15Fonts YES #define BuildISO8859_16Fonts NO %else #define BuildFonts NO %endif #define BuildXF86MiscExt YES #define BuildHtmlManPages NO /* FIXME: This is commented out, in order to test XFree86's Imake DRI defaults * for each architecture. Once confirmed all DRI capable archs build, we can * remove this, for a cleaner environmentally friendly host.def * * if %{with_DRI} * #define BuildXF86DRI YES * else * #define BuildXF86DRI NO * endif */ %if %{with_DRI} #define BuildXF86DRI YES %else #define BuildXF86DRI NO %endif #define BuildXF86DRM NO %ifarch s390 s390x #define BuildServer YES #define XVirtualFramebufferServer YES #define XnestServer YES %endif /* FIXME: We don't need this anymore? */ #define UseXserverWrapper YES #define UseUtempter YES #define UseInternalMalloc NO #define UseMatroxHal NO #define UseConfDirForXkb NO #define UseConfDirForAppDefaults NO #undef DefaultUserPath #define DefaultUserPath /usr/local/bin:/bin:/usr/bin #undef DefaultSystemPath #define DefaultSystemPath /usr/local/sbin:/sbin:/usr/sbin:/bin:/usr/bin /* We default to Bluecurve cursor theme, but if it isn't installed, X will * fallback to core cursors, so no forced dependancy is required. */ #define DefaultCursorTheme Bluecurve #define AdmDir /var/log #define LbxproxyDir /etc/X11/lbxproxy #define ProxyManagerDir /etc/X11/proxymngr #define ServerConfigDir /etc/X11/xserver #define XdmDir /etc/X11/xdm #define XConfigDir /etc/X11 #define XinitDir /etc/X11/xinit /* FIXME: Many of these video drivers are useless on Alpha, trim them. */ %ifarch alpha #define XF86CardDrivers mga nv tga sis rendition \ i740 tdfx cirrus tseng \ fbdev ati vga v4l glint %endif %ifarch ia64 /* Original hardware driver list we've shipped in the past * #define XF86CardDrivers mga nv s3virge sis rendition i740 \ * tdfx v4l fbdev glint ati vga */ /* Hardware driver list we've pruned */ #define XF86CardDrivers mga nv tdfx v4l fbdev glint ati vga %endif %ifarch ppc ppc64 #define XF86CardDrivers mga glint s3virge sis savage \ ati trident chips fbdev \ DevelDrivers vga \ XF86OSCardDrivers XF86ExtraCardDrivers %endif #define DriverManDir \$(MANSOURCEPATH)4 #define DriverManSuffix 4x /* use just one tab or cpp will die */ #define MiscManDir \$(MANSOURCEPATH)7 #define MiscManSuffix 7x /* use just one tab or cpp will die */ EOF # host.def for optionally building kdrive servers */ %if %{with_kdrive} cat > xc/config/cf/kdrive-host.def << EOF /* FIXME: Some of this should be shared with main host.def to avoid duplication */ #define BootstrapCFlags $RPM_OPT_FLAGS -pipe #define DefaultGcc2i386Opt $RPM_OPT_FLAGS -pipe #define DefaultGcc2AxpOpt $RPM_OPT_FLAGS -pipe -Wa,-m21164a #define DefaultGcc2PpcOpt $RPM_OPT_FLAGS -pipe #define DefaultGcc2x86_64Opt $RPM_OPT_FLAGS -pipe #define BuildHtmlManPages NO #define KDriveXServer YES #define XSavageServer YES #define XTridentServer YES #define XSis530Server YES #define XTrioServer YES #define XTS300Server YES #define XfbdevServer YES #define XIgsServer YES #define XvesaServer YES #define Xi810Server YES #define Xmach64Server YES #define HasXdmAuth NO #define BuildLBX NO #define BuildPseudo8 NO #define BuildXinerama YES #define BuildServersOnly YES #define BuildRandR YES #define BuildXvExt YES EOF %endif # Attempt to make the xc/config/cf more readable, and lessen the crap # returned by grepping the dir. %if 0 { pushd xc/config/cf rm -f bsdiLib.rules os2Lib.rules QNX4.rules sgiLib.rules sv4Lib.rules \ bsdLib.rules hpLib.rules necLib.rules os2.rules scoLib.rules \ sunLib.rules cde.rules darwinLib.rules ibmLib.rules \ OpenBSDLib.rules osfLib.rules sequentLib.rules sv3Lib.rules } %endif ########## BUILD ################################################## %build [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT # Remove unnecessary stuff... DO NOT MOVE THIS find . -name CVS -type d | xargs rm -rf #find . -name .cvsignore -type f |xargs rm -f %if %{with_kdrive} { echo -e '\n\n\n\n' echo '##############################################################' echo '### Building TinyX/kdrive X servers ###' echo '##############################################################' # Temporarily rename the host.def file, and put the kdrive one in place mv xc/config/cf/host.def xc/config/cf/redhat-host.def mv xc/config/cf/kdrive-host.def xc/config/cf/host.def # Build kdrive servers and install them into buildroot make World -C xc WORLDOPTS= make -C xc DESTDIR=$RPM_BUILD_ROOT install install.man # Remove unwanted crap from buildroot ls $RPM_BUILD_ROOT/%{_x11bindir} | grep -v ^X | xargs rm -f ls $RPM_BUILD_ROOT/%{_x11mandir} | grep -v ^X | xargs rm -f mv $RPM_BUILD_ROOT/%{_x11bindir} xc/kdrive-bin mv $RPM_BUILD_ROOT/%{_x11mandir}/man1 xc/kdrive-man1 rm -f xc/kdrive-man1/Xserver.* xc/kdrive-man1/[a-z]* # Hide the evidence by blowing away the buildroot and cleaning up. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT make -C xc clean # put the host.def back mv xc/config/cf/redhat-host.def xc/config/cf/host.def } %endif %if %{DebuggableBuild} makeg World -C xc WORLDOPTS= %else make World -C xc WORLDOPTS= %endif ########## INSTALL ################################################# %install # Enable set -x if VerboseBuild is enabled %{!?VerboseBuild:set -x} #FIXME: See if "lib" can disappear here #mkdir -p $RPM_BUILD_ROOT{/usr/{include,lib},/etc/{pam.d,security/console.apps}} mkdir -p $RPM_BUILD_ROOT{/usr/{include,lib},/etc/{pam.d,security/console.apps}} install -c -m 644 %{SOURCE3} $RPM_BUILD_ROOT/etc/pam.d/xserver install -c -m 644 %{SOURCE4} $RPM_BUILD_ROOT/etc/pam.d/xdm touch $RPM_BUILD_ROOT/etc/security/console.apps/xserver make -C xc DESTDIR=$RPM_BUILD_ROOT install install.man %if %{with_sdk} make -C xc DESTDIR=$RPM_BUILD_ROOT install.sdk %endif # Put GL includes in %{_includedir}/GL instead of the default location { mkdir -p $RPM_BUILD_ROOT/%{_includedir}/GL mv $RPM_BUILD_ROOT%{_x11includedir}/GL/* $RPM_BUILD_ROOT/%{_includedir}/GL/ rmdir $RPM_BUILD_ROOT%{_x11includedir}/GL } # Install sample XF86Config %ifnarch s390 s390x #cp xc/programs/Xserver/hw/xfree86/XF86Config $RPM_BUILD_ROOT/etc/X11/ %endif # Explicitly create X authdir mkdir -m 700 -p $RPM_BUILD_ROOT/var/lib/xdm/authdir # We install our own config file for the xfs package mkdir -p $RPM_BUILD_ROOT/etc/X11/fs install -c -m 644 %{SOURCE6} $RPM_BUILD_ROOT/etc/X11/fs/config mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d install -c -m 755 %{SOURCE5} $RPM_BUILD_ROOT/etc/rc.d/init.d/xfs # FIXME: Can Imake do this? Fix up symlinks { mkdir -p $RPM_BUILD_ROOT/usr/{bin,include,lib} ln -sf ../X11R6/include/X11 $RPM_BUILD_ROOT%{_includedir}/X11 ln -sf ../X11R6/include/DPS $RPM_BUILD_ROOT%{_includedir}/DPS # This can probably go away in next major release %ifnarch s390 s390x ln -snf ../../../../etc/X11/XF86Config \ $RPM_BUILD_ROOT%{_x11datadir}/X11/XF86Config %endif } # Backward compatibility symlink ln -sf ../..%{_x11datadir}/X11/xkb $RPM_BUILD_ROOT/etc/X11 # symlink shared libs { pushd $RPM_BUILD_ROOT%{_x11libdir} for lib in *.so.*; do ln -sf $lib ${lib%.so*}.so ; done popd } # Auxilliary font related file processing { FONTDIR=$RPM_BUILD_ROOT%{_x11fontdir} # Strip out all fonts.dir files from font directories as they should # not be included in the packaging but should be generated at install # time instead. # rm -f $(find $FONTDIR -name 'fonts.dir') || : # "touch" all fonts.dir, fonts.alias, etc files we've got flagged as %ghost # but which are not present in the RPM_BUILD_ROOT when RPM looks for files touch $FONTDIR/{OTF,TTF}/fonts.alias for subdir in 100dpi 75dpi CID local misc Speedo Type1 TTF cyrillic ; do rm -f $FONTDIR/$subdir/{encodings,fonts}.dir touch $FONTDIR/$subdir/{encodings,fonts}.dir chmod 0644 $FONTDIR/$subdir/{encodings,fonts}.dir # FIXME: fonts.alias files should be created also possibly # touch $FONTDIR/$subdir/fonts.alias done } # Make sure all manpage dirs exist and are owned by XFree86-libs mkdir -m 755 -p $RPM_BUILD_ROOT%{_x11mandir}/man{1,2,3,4,5,6,7,8} || : # for ghost config file touch $RPM_BUILD_ROOT/etc/X11/XF86Config touch $RPM_BUILD_ROOT/etc/X11/XF86Config-4 #chmod 644 $RPM_BUILD_ROOT/etc/X11/{XF86Config,XF86Config-4} rm -f $RPM_BUILD_ROOT/etc/X11/XftConfig cat <<-EOF > $RPM_BUILD_ROOT/etc/X11/XftConfig.README-OBSOLETE # IMPORTANT NOTICE about XftConfig: # # As of Red Hat Linux 8.0, the XftConfig config file has been deprecated and # obsoleted by /etc/fonts/fonts.conf, which is the new font configuration file # for both Xft1 and Xft2, which is provided by the "fontconfig" package. # For information on configuring fonts using fontconfig, please # consult the fontconfig documentation. EOF # Fix permissions on locale/common/*.so libs # FIXME: (CVS X doesn't have this dir, it is locale/lib/common now #chmod 755 $RPM_BUILD_ROOT%{_x11localedir}/common/*.so.* #/usr/X11R6/lib/X11/locale/lib/common/ # Add symlinks to libGLU.so and libGLU.so.1 into %{_libdir} { rm -f $RPM_BUILD_ROOT%{_libdir}/libGL.so* ln -sf ../..%{_x11libdir}/libGL.so.1.2 $RPM_BUILD_ROOT%{_libdir}/libGL.so ln -sf ../..%{_x11libdir}/libGL.so.1.2 $RPM_BUILD_ROOT%{_libdir}/libGL.so.1 ln -sf ../..%{_x11libdir}/libGLU.so.1.3 $RPM_BUILD_ROOT%{_libdir}/libGLU.so ln -sf ../..%{_x11libdir}/libGLU.so.1.3 $RPM_BUILD_ROOT%{_libdir}/libGLU.so.1 } # Install mkxauth { install -m 755 %{SOURCE23} $RPM_BUILD_ROOT%{_x11bindir}/ install -m 644 %{SOURCE24} $RPM_BUILD_ROOT%{_x11mandir}/man1/ # chmod 644 $RPM_BUILD_ROOT%{_x11mandir}/man1/mkxauth.1x } # Build and install restest Xresource extension sample client %if %{with_restest} { gcc -o restest -Wall %{SOURCE25} \ -I$RPM_BUILD_DIR/%{name}-%{version}/xc/exports/include \ -L$RPM_BUILD_ROOT/%{_x11libdir} -lX11 -lXext -lXRes install -m 755 restest $RPM_BUILD_ROOT%{_x11bindir}/ } %endif # Copy CHANGELOG document into place for %%doc directive to find cp xc/programs/Xserver/hw/xfree86/CHANGELOG . %if %{with_kdrive} { # Install kdrive servers cp xc/kdrive-bin/* $RPM_BUILD_ROOT/%{_x11bindir}/ cp xc/kdrive-man1/* $RPM_BUILD_ROOT/%{_x11mandir}/man1/ } %endif # Create file list for SDK, because the list of files/dirs differs greatly # depending on architecture, and RPM doesn't allow nested conditionals. %if %{with_sdk} { SDKDIR=$RPM_BUILD_ROOT/%{_x11libdir}/Server # Find the directories first find $SDKDIR -type d | sort | \ sed -e "s#.*$RPM_BUILD_ROOT/%{_x11libdir}#%dir %%{_x11libdir}#g" > filelist.sdk # Append the files find $SDKDIR ! -type d | sort | \ sed -e "s#.*$RPM_BUILD_ROOT/%{_x11libdir}#%%{_x11libdir}#g" >> filelist.sdk # Add the filelist.sdk itself to itself and install it echo %%{_x11libdir}/Server/filelist.sdk >> filelist.sdk cp filelist.sdk $RPM_BUILD_ROOT/%{_x11libdir}/Server/filelist.sdk } %endif { touch filelist.XFree86 # Include new I/O utils for architectures that they work on for file in inb inl inw ioport outb outl outw ; do if [ -x $RPM_BUILD_ROOT/%{_x11bindir}/$file ] ; then echo %%{_x11bindir}/$file >> filelist.XFree86 fi done } # Remove unwanted libexpat that XFree86 forces on us even though we said we # don't want it. rm -f $RPM_BUILD_ROOT%{_x11libdir}/libexpat.* || : # Remove fontconfig.pc because we don't want it. rm -f $RPM_BUILD_ROOT%{_x11libdir}/pkgconfig/fontconfig.pc || : # Move pkgconfig files to proper location in _libdir # FIXME: Redo this with Imake and submit patch upstream { mkdir -p $RPM_BUILD_ROOT%{_libdir}/pkgconfig mv $RPM_BUILD_ROOT%{_x11libdir}/pkgconfig/* $RPM_BUILD_ROOT%{_libdir}/pkgconfig/ rmdir $RPM_BUILD_ROOT%{_x11libdir}/pkgconfig } ###################################################################### # DELETE UNWANTED FILES SECTION # # error: Installed (but unpackaged) file(s) found: { %if ! %{with_redglass} rm -rf $RPM_BUILD_ROOT/%{_x11icondir}/redglass %endif %if ! %{with_whiteglass} rm -rf $RPM_BUILD_ROOT/%{_x11icondir}/whiteglass %endif %if ! %{with_handhelds} rm -rf $RPM_BUILD_ROOT/%{_x11icondir}/handhelds %endif %if ! %{with_fontconfig} rm -rf $RPM_BUILD_ROOT/etc/fonts $RPM_BUILD_ROOT/%{_x11includedir}/fontconfig rm -f $RPM_BUILD_ROOT%{_x11bindir}/{fc-cache,fc-list,fontconfig-config} rm -f $RPM_BUILD_ROOT%{_x11mandir}/man1/{fc-cache,fc-list}.* rm -f $RPM_BUILD_ROOT%{_x11mandir}/man3/fontconfig.* rm -f $RPM_BUILD_ROOT%{_x11libdir}/libfontconfig.* %endif %if ! %{with_xedit} rm -rf $RPM_BUILD_ROOT%{_x11datadir}/X11/xedit rm -f $RPM_BUILD_ROOT%{_x11bindir}/xedit rm -f $RPM_BUILD_ROOT%{_x11mandir}/man1/xedit.* %endif %if ! %{with_xman} rm -f $RPM_BUILD_ROOT%{_x11bindir}/xman rm -f $RPM_BUILD_ROOT%{_x11datadir}/X11/xman* rm -f $RPM_BUILD_ROOT%{_x11mandir}/man1/xman.* %endif %if ! %{with_xf86cfg} rm -f $RPM_BUILD_ROOT%{_x11bindir}/xf86cfg rm -f $RPM_BUILD_ROOT%{_x11mandir}/man1/xf86cfg.* %endif %if ! %{with_xf86config} rm -f $RPM_BUILD_ROOT%{_x11bindir}/xf86config rm -f $RPM_BUILD_ROOT%{_x11mandir}/man1/xf86config.* %endif %if ! %{with_xmh} rm -f $RPM_BUILD_ROOT%{_x11bindir}/xmh rm -f $RPM_BUILD_ROOT%{_x11mandir}/man1/xmh.1x* %endif # Remove example config files that we do not ship rm -f $RPM_BUILD_ROOT%{_x11datadir}/X11/XF86Config.{98,eg,indy} # The Cards database is part of our "hwdata" package rm -f $RPM_BUILD_ROOT%{_x11datadir}/X11/Cards # The following are uncommented for the time being as I'm lazy. rm -f $RPM_BUILD_ROOT/etc/X11/rstart/commands/x11r6/@List rm -f $RPM_BUILD_ROOT/etc/X11/rstart/commands/x11r6/LoadMonitor rm -f $RPM_BUILD_ROOT/etc/X11/rstart/commands/x11r6/Terminal rm -f $RPM_BUILD_ROOT/etc/X11/xdm/GiveConsole rm -f $RPM_BUILD_ROOT/etc/X11/xdm/TakeConsole rm -f $RPM_BUILD_ROOT/etc/X11/xdm/Xaccess rm -f $RPM_BUILD_ROOT/etc/X11/xdm/Xsession rm -f $RPM_BUILD_ROOT/etc/X11/xdm/Xsetup_0 rm -f $RPM_BUILD_ROOT/etc/X11/xdm/libXdmGreet.so.1.0 rm -f $RPM_BUILD_ROOT/etc/X11/xdm/xdm-config rm -f $RPM_BUILD_ROOT/etc/X11/xinit/xinitrc rm -f $RPM_BUILD_ROOT%{_x11bindir}/ccmakedep rm -f $RPM_BUILD_ROOT%{_x11libdir}/modules/drivers/vmware_drv.* rm -f $RPM_BUILD_ROOT%{_x11mandir}/man4/vmware.4x* # FIXME: Fix this by patching Imake configs and submit upstream (hack fix bug #49990) %if ! %{with_libxrx} rm -f $RPM_BUILD_ROOT%{_x11libdir}/libxrx.* rm -f $RPM_BUILD_ROOT%{_x11mandir}/man1/libxrx.* %endif # Delete hardcopy XIE and PEX documentation since both are obsolete now rm -rf $RPM_BUILD_DIR/%{name}-%{version}/xc/doc/hardcopy/XIE rm -rf $RPM_BUILD_DIR/%{name}-%{version}/xc/doc/hardcopy/PEX5 } ###################################################################### # STRIP SECTION # strip the crap that's safe to strip # Current RPM default stripping policy does not destroy X modules so we are # no longer using this strip override. %if ! %{DebuggableBuild} { set +x # Strip ELF binary executables of debug symbols and .comment section for file in $(find $RPM_BUILD_ROOT -type f -perm +0111 -exec file {} \; | \ grep -v ' shared object,' | \ sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped/\1/p') do # strip wont take both of these on one commandline for some reason strip --strip-debug $file || : strip -R .comment $file || : done # Strip shared libraries of .comment section, and all unneeded symbols # strip wont take both of these on one commandline for some reason strip --strip-unneeded $RPM_BUILD_ROOT%{_x11libdir}/*.so.* || : strip -R .comment $RPM_BUILD_ROOT%{_x11libdir}/*.so.* || : strip --strip-unneeded $RPM_BUILD_ROOT%{_libdir}/*.so.* || : strip -R .comment $RPM_BUILD_ROOT%{_libdir}/*.so.* || : # Enable this only after testing and verifying it works properly strip --strip-unneeded $RPM_BUILD_ROOT%{_x11localedir}/%{_lib}/common/*.so.* || : strip -R .comment $RPM_BUILD_ROOT%{_x11localedir}/%{_lib}/common/*.so.* || : } %endif ### DO NOT PUT ANYTHING PAST THIS POINT ############################# ###################################################################### ######### SCRIPT SECTION ########################################### ###################################################################### %triggerpostun -- XFree86 { %ifarch s390 s390x for dir in lbxproxy proxymngr rstart ; do %else for dir in lbxproxy proxymngr rstart xserver ; do %endif if [ -d %{_x11datadir}/X11/$dir ] ; then mv -f %{_x11datadir}/X11/$dir /etc/X11/ 2>/dev/null || : fi # no need to keep this symlink around any longer - pgb 06/28/00 # these are needed for 3.x servers - notting 07/24/00 # But only on arch's we ship 3.3.6 on x86/alpha/ia64, and we no longer # ship 3.3.6, so this stuff can probably die whenever now. %ifarch %{ix86} alpha ia64 [ ! -L %{_x11datadir}/X11/$dir ] && \ ln -snf ../../../../etc/X11/$dir %{_x11libdir}/X11/$dir || : %endif done } &> /dev/null || : %pre { # Remove xie and pex5 from the config files, as they are # no longer provided nor supported as of XFree86 4.2.0 { CONFFILE=/etc/X11/XF86Config-4 if [ -e $CONFFILE ] ; then SAVECONF=$CONFFILE.rpmsave cp -p $CONFFILE $SAVECONF grep -iv 'Load[[:space:]]*"\(pex5\|xie\)"' $SAVECONF > $CONFFILE fi } # Do this for upgrades or installs XKB_DIR=%{_x11datadir}/X11/xkb/compiled if [ ! -L $XKB_DIR -a -d $XKB_DIR ]; then mkdir -p /var/lib/xkb mv -f $XKB_DIR /var/lib/xkb/ ln -sf ../../../../../var/lib/xkb $XKB_DIR fi } &> /dev/null || : %post { %ifarch s390 s390x for dir in lbxproxy proxymngr rstart ; do %else for dir in lbxproxy proxymngr rstart xserver ; do %endif [ ! -L %{_x11datadir}/X11/$dir -a ! -d %{_x11datadir}/X11/$dir ] && \ ln -snf ../../../../etc/X11/$dir %{_x11datadir}/X11/$dir || : done } &> /dev/null || : %pre xdm { # The dir /etc/X11/xdm/authdir moved to /var/lib/xdm/authdir and was replaced # by a symlink. Upgrades from Red Hat Linux 6.x and earlier to any new # release with XFree86-4.0.x fail without the following. (fixes bug #32574) if [ ! -L /etc/X11/xdm/authdir -a -d /etc/X11/xdm/authdir ]; then mkdir -p /var/lib/xdm && \ mv -f /etc/X11/xdm/authdir /var/lib/xdm/ && \ ln -sf ../../../var/lib/xdm/authdir /etc/X11/xdm/authdir || : fi } &> /dev/null || : %post libs { grep "^%{_x11libdir}$" /etc/ld.so.conf &> /dev/null [ $? -ne 0 ] && echo "%{_x11libdir}" >> /etc/ld.so.conf /sbin/ldconfig } # FIXME: The code below in the 3 lib subpackages which removes %{_x11libdir} # from ld.so.conf should be modified to ensure the directory is empty # of all shared libs first. Otherwise bad things can happen. %postun libs { if [ "$1" = "0" ]; then grep -v "^%{_x11libdir}$" /etc/ld.so.conf > /etc/ld.so.conf.new # preserve permissions cat /etc/ld.so.conf.new > /etc/ld.so.conf rm -f /etc/ld.so.conf.new fi /sbin/ldconfig } %post Mesa-libGL { grep "^%{_x11libdir}$" /etc/ld.so.conf &> /dev/null [ $? -ne 0 ] && echo "%{_x11libdir}" >> /etc/ld.so.conf /sbin/ldconfig } %postun Mesa-libGL { /sbin/ldconfig } %post Mesa-libGLU { grep "^%{_x11libdir}$" /etc/ld.so.conf &> /dev/null [ $? -ne 0 ] && echo "%{_x11libdir}" >> /etc/ld.so.conf /sbin/ldconfig } %postun Mesa-libGLU { /sbin/ldconfig } %verifyscript libs { echo -n "Looking for %{_x11libdir} in /etc/ld.so.conf... " if ! grep "^%{_x11libdir}$" /etc/ld.so.conf > /dev/null; then echo "missing" echo "%{_x11libdir} missing from /etc/ld.so.conf" >&2 else echo "found" fi } ##### xfs scripts #################################################### %pre xfs { # Conditionalized to work on RHL 7.1 and 7.2 which do not have /sbin/nologin LOGINSHELL=$([ -e /sbin/nologin ] && echo /sbin/nologin || echo /bin/false) /usr/sbin/useradd -c "X Font Server" -r -s $LOGINSHELL -u 43 -d /etc/X11/fs xfs } &> /dev/null || : %post xfs { /sbin/chkconfig --add xfs # FIXME: What an unmaintainable mess. ;o) There almost has to be a cleaner # way of doing this. If not, it needs to be figured out and documented to # avoid confusion. use_unix= for config in /etc/X11/XF86Config /etc/X11/XF86Config-4 ; do if [ -f $config ] && grep -q "unix/:" $config &> /dev/null; then use_unix=1 fi if [ -f $config ] && grep -q "unix/:-1" $config &> /dev/null; then rm -f $config.new $config.rpmsave sed "s#unix/:-1#unix/:7100#g" $config > $config.new cp -f $config $config.rpmsave cat $config.new > $config rm -f $config.new fi if [ -f $config ] && grep -q "unix/:" $config &> /dev/null && \ grep -q "%{_x11fontdir}/TrueType" $config &> /dev/null ; then \ sed "s|FontPath[ ]*\"%{_x11fontdir}/TrueType\"|#FontPath \"%{_x11fontdir}/TrueType\"|g" $config > $config.new cat $config.new > $config rm -f $config.new fi done if [ -n "$use_unix" ] && ! grep -q "no-listen" /etc/X11/fs/config &> /dev/null;then echo -e "# don't listen on tcp by default\nno-listen = tcp\n" >> /etc/X11/fs/config fi } %preun xfs { if [ "$1" = "0" ]; then /sbin/chkconfig --del xfs || : /usr/sbin/userdel xfs 2>/dev/null || : /usr/sbin/groupdel xfs 2>/dev/null || : service xfs stop &> /dev/null || : fi } %postun xfs { if [ "$1" -ge "1" ]; then service xfs condrestart &> /dev/null || : fi } %if %{with_fonts} %post base-fonts { # FIXME: Make it only run mkfontdir in dirs that have fonts in them. # Build fonts.dir files for all font dirs in this package. # (exclude the local and CID dirs as they do not have fonts currently) for fontdir in 100dpi 75dpi misc Speedo Type1 ;do %__mkfontdir %{_x11fontdir}/$fontdir || : done /usr/sbin/chkfontpath -qa %{_x11fontdir}/75dpi:unscaled || : /usr/sbin/chkfontpath -qa %{_x11fontdir}/100dpi:unscaled || : /usr/sbin/chkfontpath -qa %{_x11fontdir}/misc:unscaled || : /usr/sbin/chkfontpath -qa %{_x11fontdir}/Speedo || : /usr/sbin/chkfontpath -qa %{_x11fontdir}/Type1 || : # Only run fc-cache in the Type1 dir, gzipped pcf's take forever %__fccache %{_x11fontdir}/Type1 } &> /dev/null || : %postun base-fonts # Rebuild fonts.dir when uninstalling package. (exclude the local, CID dirs) { if [ "$1" = "0" ]; then for fontdir in 100dpi 75dpi misc Speedo Type1 ;do %__mkfontdir %{_x11fontdir}/$fontdir || : done # Only run fc-cache in the Type1 dir, gzipped pcf's take forever %__fccache %{_x11fontdir}/Type1 fi } &> /dev/null || : %post truetype-fonts { FONTDIR=%{_x11fontdir}/TTF ttmkfdir -d $FONTDIR -o $FONTDIR/fonts.scale %__mkfontdir $FONTDIR %__fccache $FONTDIR /usr/sbin/chkfontpath -q -a $FONTDIR } &> /dev/null || : %postun truetype-fonts { FONTDIR=%{_x11fontdir}/TTF if [ "$1" = "0" ]; then ttmkfdir -d $FONTDIR -o $FONTDIR/fonts.scale %__mkfontdir $FONTDIR %__fccache $FONTDIR fi } &> /dev/null || : %post syriac-fonts { FONTDIR=%{_x11fontdir}/OTF ttmkfdir -d $FONTDIR -o $FONTDIR/fonts.scale %__mkfontdir $FONTDIR %__fccache $FONTDIR /usr/sbin/chkfontpath -q -a $FONTDIR } &> /dev/null || : %postun syriac-fonts { FONTDIR=%{_x11fontdir}/OTF if [ "$1" = "0" ]; then ttmkfdir -d $FONTDIR -o $FONTDIR/fonts.scale %__mkfontdir $FONTDIR %__fccache $FONTDIR fi } &> /dev/null || : %post 75dpi-fonts { %__mkfontdir %{_x11fontdir}/75dpi # %__fccache %{_x11fontdir}/75dpi /usr/sbin/chkfontpath -q -a %{_x11fontdir}/75dpi:unscaled } &> /dev/null || : %post 100dpi-fonts { %__mkfontdir %{_x11fontdir}/100dpi # %__fccache %{_x11fontdir}/100dpi /usr/sbin/chkfontpath -q -a %{_x11fontdir}/100dpi:unscaled } &> /dev/null || : %post ISO8859-2-75dpi-fonts { %__mkfontdir %{_x11fontdir}/75dpi # %__fccache %{_x11fontdir}/75dpi /usr/sbin/chkfontpath -q -a %{_x11fontdir}/75dpi:unscaled } &> /dev/null || : %post ISO8859-2-100dpi-fonts { %__mkfontdir %{_x11fontdir}/100dpi # %__fccache %{_x11fontdir}/100dpi /usr/sbin/chkfontpath -q -a %{_x11fontdir}/100dpi:unscaled } &> /dev/null || : %post ISO8859-9-75dpi-fonts { %__mkfontdir %{_x11fontdir}/75dpi # %__fccache %{_x11fontdir}/75dpi /usr/sbin/chkfontpath -q -a %{_x11fontdir}/75dpi:unscaled } &> /dev/null || : %post ISO8859-9-100dpi-fonts { %__mkfontdir %{_x11fontdir}/100dpi # %__fccache %{_x11fontdir}/100dpi /usr/sbin/chkfontpath -q -a %{_x11fontdir}/100dpi:unscaled } &> /dev/null || : %post ISO8859-14-75dpi-fonts { %__mkfontdir %{_x11fontdir}/75dpi # %__fccache %{_x11fontdir}/75dpi /usr/sbin/chkfontpath -q -a %{_x11fontdir}/75dpi:unscaled } &> /dev/null || : %post ISO8859-14-100dpi-fonts { %__mkfontdir %{_x11fontdir}/100dpi # %__fccache %{_x11fontdir}/100dpi /usr/sbin/chkfontpath -q -a %{_x11fontdir}/100dpi:unscaled } &> /dev/null || : %post ISO8859-15-75dpi-fonts { %__mkfontdir %{_x11fontdir}/75dpi # %__fccache %{_x11fontdir}/75dpi /usr/sbin/chkfontpath -q -a %{_x11fontdir}/75dpi:unscaled } &> /dev/null || : %post ISO8859-15-100dpi-fonts { %__mkfontdir %{_x11fontdir}/100dpi # %__fccache %{_x11fontdir}/100dpi /usr/sbin/chkfontpath -q -a %{_x11fontdir}/100dpi:unscaled } &> /dev/null || : %post cyrillic-fonts { %__mkfontdir %{_x11fontdir}/cyrillic # %__fccache %{_x11fontdir}/cyrillic /usr/sbin/chkfontpath -q -a %{_x11fontdir}/cyrillic:unscaled } &> /dev/null || : %postun 75dpi-fonts { if [ "$1" = "0" ]; then %__mkfontdir %{_x11fontdir}/75dpi # %__fccache %{_x11fontdir}/75dpi fi } &> /dev/null || : %postun 100dpi-fonts { if [ "$1" = "0" ]; then %__mkfontdir %{_x11fontdir}/100dpi # %__fccache %{_x11fontdir}/100dpi fi } &> /dev/null || : %postun ISO8859-2-75dpi-fonts { if [ "$1" = "0" ]; then %__mkfontdir %{_x11fontdir}/75dpi # %__fccache %{_x11fontdir}/75dpi fi } %postun ISO8859-2-100dpi-fonts { if [ "$1" = "0" ]; then %__mkfontdir %{_x11fontdir}/100dpi # %__fccache %{_x11fontdir}/100dpi fi } &> /dev/null || : %postun ISO8859-9-75dpi-fonts { if [ "$1" = "0" ]; then %__mkfontdir %{_x11fontdir}/75dpi # %__fccache %{_x11fontdir}/75dpi fi } &> /dev/null || : %postun ISO8859-9-100dpi-fonts { if [ "$1" = "0" ]; then %__mkfontdir %{_x11fontdir}/100dpi # %__fccache %{_x11fontdir}/100dpi fi } &> /dev/null || : %postun ISO8859-15-75dpi-fonts { if [ "$1" = "0" ]; then %__mkfontdir %{_x11fontdir}/75dpi # %__fccache %{_x11fontdir}/75dpi fi } &> /dev/null || : %postun ISO8859-15-100dpi-fonts { if [ "$1" = "0" ]; then %__mkfontdir %{_x11fontdir}/100dpi # %__fccache %{_x11fontdir}/100dpi fi } &> /dev/null || : %postun cyrillic-fonts { if [ "$1" = "0" ]; then %__mkfontdir %{_x11fontdir}/cyrillic # %__fccache %{_x11fontdir}/cyrillic fi } &> /dev/null || : %endif ########## FILES SECTION ############################################# # FIXME: Move this to a separate README.specfile document # # IMPORTANT NOTE: All fonts.dir, fonts.scale files are created during package # installation time, and as such need to be flagged as ghost files, also their # content is variable while installed as new fonts can be installed in the same # directories potentially at any time, so they need to be flagged with %verify # also. They should not be flagged with %config however as they are not # considered to be user editable, and should not be preserved. Any case of a # user wanting to edit these files by hand for ANY REASON, indicates a bug # in the mkfontdir/ttmkfdir tools which should be fixed instead. # # encodings.dir files also should be flagged with %ghost and %verify, since # the same applies to them, the only difference is that it may not actually # exist unless the user creates it for some reason. These files are deprecated # and will be removed in a future upstream release entirely. # # fonts.alias should be flagged with %verify as it is modifyable. For directories # in which we supply a fonts.alias file, it should be flagged %config(noreplace) # and for dirs which we do not supply one it should be flagged as both %ghost # and %config(noreplace) so that the files are actually owned by the package, # just not supplied by default, and they are preserved across upgrades. ###################################################################### # XFree86 package %files -f filelist.XFree86 %defattr(-,root,root) %doc CHANGELOG %dir /etc/X11/lbxproxy %config /etc/X11/lbxproxy/AtomControl %dir /etc/X11/proxymngr %config /etc/X11/proxymngr/pmconfig # rstart crapola %dir /etc/X11/rstart %dir /etc/X11/rstart/commands /etc/X11/rstart/commands/@List /etc/X11/rstart/commands/ListContexts /etc/X11/rstart/commands/ListGenericCommands /etc/X11/rstart/commands/x /etc/X11/rstart/commands/x11 %dir /etc/X11/rstart/commands/x11r6 %dir /etc/X11/rstart/contexts /etc/X11/rstart/contexts/@List /etc/X11/rstart/contexts/default /etc/X11/rstart/contexts/x /etc/X11/rstart/contexts/x11 %dir /etc/X11/rstart/contexts/x11r6 %config /etc/X11/rstart/config /etc/X11/rstart/rstartd.real %ifnarch s390 s390x %dir /etc/X11/xinit # %config /etc/X11/xinit/xinitrc We have a separate xinitrc package %dir /etc/X11/xserver %config /etc/X11/xserver/* %ghost %config(missingok,noreplace) %verify(not md5 size mtime) /etc/X11/XF86Config %endif %ghost %config(missingok,noreplace) %verify(not md5 size mtime) /etc/X11/XF86Config-4 %dir /etc/X11/xsm %config /etc/X11/xsm/system.xsm %dir %{_x11datadir}/X11/etc %ghost %{_x11datadir}/X11/lbxproxy %ghost %{_x11datadir}/X11/proxymngr %ghost %{_x11datadir}/X11/rstart %ifnarch s390 s390x %ghost %{_x11datadir}/X11/xserver %endif %dir %{_x11datadir}/X11/xkb %config %{_x11datadir}/X11/app-defaults/* %dir /var/lib/xkb %config %attr(0644,root,root) /etc/pam.d/xserver %config(missingok) /etc/security/console.apps/xserver /var/lib/xkb/README # SuperProbe is obsolete %{_x11bindir}/SuperProbe %ifnarch s390 s390x %{_x11bindir}/X %attr(4711,root,root) %{_x11bindir}/XFree86 %endif %{_x11bindir}/Xmark %{_x11bindir}/Xprt %ifnarch s390 s390x ppc ppc64 %{_x11bindir}/pcitweak %{_x11bindir}/scanpci %{_x11bindir}/mmapr %{_x11bindir}/mmapw %endif %{_x11bindir}/appres %{_x11bindir}/atobm # FIXME: bdf2pcf and bdftruncate should be moved to XFree86-font-utils %{_x11bindir}/bdftopcf %{_x11bindir}/bdftruncate %{_x11bindir}/bitmap %{_x11bindir}/bmtoa %{_x11bindir}/cleanlinks %{_x11bindir}/dga %{_x11bindir}/dpsexec %{_x11bindir}/dpsinfo %{_x11bindir}/editres %{_x11bindir}/iceauth %ifnarch s390 s390x %{_x11bindir}/gtf %endif %{_x11bindir}/lbxproxy %{_x11bindir}/lndir %{_x11bindir}/luit %{_x11bindir}/makepsres %{_x11bindir}/makestrs %{_x11bindir}/mergelib %{_x11bindir}/mkcfm %{_x11bindir}/mkdirhier %{_x11bindir}/proxymngr %{_x11bindir}/resize # Xresource extension client app %if %{with_restest} %{_x11bindir}/restest %endif %{_x11bindir}/revpath %{_x11bindir}/rstart %{_x11bindir}/rstartd %{_x11bindir}/sessreg %{_x11bindir}/setxkbmap %{_x11bindir}/showrgb %{_x11bindir}/smproxy %ifnarch s390 s390x %{_x11bindir}/startx %endif %{_x11bindir}/texteroids %{_x11bindir}/uxterm %{_x11bindir}/xcmsdb %{_x11bindir}/xconsole %{_x11bindir}/xcursor-config %{_x11bindir}/xcursorgen %{_x11bindir}/xcutsel %{_x11bindir}/xdpyinfo %if %{with_xf86config} # This has been removed from build 4.2.99.2-0.20021110.8 and later. The # supported X configuration tool in Red Hat Linux is redhat-config-xfree86 now, # and we expect people to use it, and report bugs if there are any, and # make requests for any missing features. %{_x11bindir}/xf86config %endif %{_x11bindir}/xfindproxy %{_x11bindir}/xfwp %{_x11bindir}/xgamma %{_x11bindir}/xhost %ifnarch s390 s390x %{_x11bindir}/xinit %endif %{_x11bindir}/xkbbell %{_x11bindir}/xkbcomp %{_x11bindir}/xkbevd %{_x11bindir}/xkbprint %{_x11bindir}/xkbvleds %{_x11bindir}/xkbwatch %{_x11bindir}/xlsatoms %{_x11bindir}/xlsclients %{_x11bindir}/xlsfonts %if %{with_xmh} # xmh is obsolete %{_x11bindir}/xmh %endif %{_x11bindir}/xmodmap %{_x11bindir}/xon %{_x11bindir}/xprop %{_x11bindir}/xrandr %{_x11bindir}/xrdb %{_x11bindir}/xrefresh %{_x11bindir}/xset %{_x11bindir}/xsetmode %{_x11bindir}/xsetpointer %{_x11bindir}/xsetroot %{_x11bindir}/xsm %{_x11bindir}/xstdcmap %{_x11bindir}/xterm %{_x11bindir}/xtrapchar %{_x11bindir}/xtrapin %{_x11bindir}/xtrapinfo %{_x11bindir}/xtrapout %{_x11bindir}/xtrapproto %{_x11bindir}/xtrapreset %{_x11bindir}/xtrapstats %{_x11bindir}/xvidtune %{_x11bindir}/xwd %{_x11bindir}/xwud %ifnarch s390 s390x %dir %{_x11datadir}/X11/doc %{_x11datadir}/X11/doc/* %endif # XFree86 server modules %ifnarch s390 s390x %dir %{_x11libdir}/modules %{_x11libdir}/modules/*.* %endif # FIXME: Arches that do not use *.uc should not install it to start with. #%ifarch %{ix86} alpha #%{_x11libdir}/modules/*.uc #%endif %ifnarch s390 s390x %dir %{_x11libdir}/modules/codeconv %{_x11libdir}/modules/codeconv/* %dir %{_x11libdir}/modules/extensions %{_x11libdir}/modules/extensions/* %dir %{_x11libdir}/modules/fonts %{_x11libdir}/modules/fonts/* %dir %{_x11libdir}/modules/input %{_x11libdir}/modules/input/* %dir %{_x11libdir}/modules/linux %{_x11libdir}/modules/linux/* %endif %if %{with_DRI} %dir %{_x11libdir}/modules/dri %{_x11libdir}/modules/dri/* %endif %ifnarch s390 s390x %dir %{_x11libdir}/modules/drivers %{_x11libdir}/modules/drivers/* %endif # Provided by the Xconfigurator package in RHL 7.x, and in the hwdata # currently in rawhide. #%{_x11datadir}/X11/Cards # This should probably be moved to Xconfigurator also %ifnarch s390 s390x %{_x11datadir}/X11/Options %{_x11datadir}/X11/XF86Config # Junk config file for PC98 #%{_x11datadir}/X11/XF86Config.98 #%{_x11datadir}/X11/XF86Config.eg %endif %dir %{_x11datadir}/X11/app-defaults %ifnarch s390 s390x %{_x11datadir}/X11/etc/* %{_x11datadir}/X11/xinit %endif %{_x11datadir}/X11/xkb/* /etc/X11/xkb %dir %{_x11datadir}/X11/x11perfcomp %{_x11datadir}/X11/x11perfcomp/* %{_x11datadir}/X11/xsm %ifnarch s390 s390x # SuperProbe is obsolete %{_x11mandir}/man1/SuperProbe.1* %{_x11mandir}/man1/XFree86.1* %endif %{_x11mandir}/man1/Xserver.1* %{_x11mandir}/man1/Xmark.1* %{_x11mandir}/man1/appres.1* %{_x11mandir}/man1/atobm.1* # FIXME: bdf2pcf and bdftruncate should be moved to XFree86-font-utils %{_x11mandir}/man1/bdftopcf.1* %{_x11mandir}/man1/bdftruncate.1* %{_x11mandir}/man1/bitmap.1* %{_x11mandir}/man1/bmtoa.1* %{_x11mandir}/man1/cleanlinks.1* %{_x11mandir}/man1/dga.1* %{_x11mandir}/man1/dpsexec.1* %{_x11mandir}/man1/dpsinfo.1* %{_x11mandir}/man1/editres.1* %{_x11mandir}/man1/iceauth.1* %ifnarch s390 s390x %{_x11mandir}/man1/gtf.1* %endif %{_x11mandir}/man1/lbxproxy.1* %if %{with_libxrx} %{_x11mandir}/man1/libxrx.1* %endif %{_x11mandir}/man1/lndir.1* %{_x11mandir}/man1/luit.1* %{_x11mandir}/man1/makedepend.1* %{_x11mandir}/man1/makepsres.1* %{_x11mandir}/man1/makestrs.1* %{_x11mandir}/man1/mergelib.1* %{_x11mandir}/man1/mkcfm.1* %{_x11mandir}/man1/mkdirhier.1* %{_x11mandir}/man1/oclock.1* %ifnarch s390 s390x ppc ppc64 %{_x11mandir}/man1/pcitweak.1* %{_x11mandir}/man1/scanpci.1* %endif %{_x11mandir}/man1/proxymngr.1* %{_x11mandir}/man1/resize.1* %{_x11mandir}/man1/revpath.1* %{_x11mandir}/man1/rstart.1* %{_x11mandir}/man1/rstartd.1* %{_x11mandir}/man1/sessreg.1* %{_x11mandir}/man1/setxkbmap.1* %{_x11mandir}/man1/showrgb.1* %{_x11mandir}/man1/smproxy.1* %ifnarch s390 s390x %{_x11mandir}/man1/startx.1* %endif %{_x11mandir}/man1/texteroids.1* %{_x11mandir}/man1/xcmsdb.1* %{_x11mandir}/man1/xconsole.1* %{_x11mandir}/man1/xcursorgen.1* %{_x11mandir}/man1/xcutsel.1* %{_x11mandir}/man1/xdpyinfo.1* %if %{with_xf86config} %{_x11mandir}/man1/xf86config.1* %endif %{_x11mandir}/man1/xfindproxy.1* %{_x11mandir}/man1/xfwp.1* %{_x11mandir}/man1/xgamma.1* %{_x11mandir}/man1/xhost.1* %ifnarch s390 s390x %{_x11mandir}/man1/xinit.1* %endif %{_x11mandir}/man1/xkbcomp.1* %{_x11mandir}/man1/xkbevd.1* %{_x11mandir}/man1/xkbprint.1* %{_x11mandir}/man1/xkill.1* %{_x11mandir}/man1/xlogo.1* %{_x11mandir}/man1/xlsatoms.1* %{_x11mandir}/man1/xlsclients.1* %{_x11mandir}/man1/xlsfonts.1* %if %{with_xmh} # xmh is obsolete %{_x11mandir}/man1/xmh.1* %endif %{_x11mandir}/man1/xmodmap.1* %{_x11mandir}/man1/xon.1* %{_x11mandir}/man1/xprop.1* %{_x11mandir}/man1/xrandr.1* %{_x11mandir}/man1/xrdb.1* %{_x11mandir}/man1/xrefresh.1* %{_x11mandir}/man1/xset.1* %{_x11mandir}/man1/xsetmode.1* %{_x11mandir}/man1/xsetpointer.1* %{_x11mandir}/man1/xsetroot.1* %{_x11mandir}/man1/xsm.1* %{_x11mandir}/man1/xstdcmap.1* %{_x11mandir}/man1/xterm.1* %{_x11mandir}/man1/xtrap.1* %{_x11mandir}/man1/xtrapchar.1* %{_x11mandir}/man1/xtrapin.1* %{_x11mandir}/man1/xtrapinfo.1* %{_x11mandir}/man1/xtrapout.1* %{_x11mandir}/man1/xtrapproto.1* %{_x11mandir}/man1/xtrapreset.1* %{_x11mandir}/man1/xtrapstats.1* %{_x11mandir}/man1/xvidtune.1* %{_x11mandir}/man1/xwd.1* %{_x11mandir}/man1/xwud.1* %ifnarch s390 s390x %{_x11mandir}/man4/* %{_x11mandir}/man5/* %endif %{_x11mandir}/man7/* %if ! %{with_icons_in_datadir} %dir %{_x11icondir} %endif %dir %{_x11icondir}/default %config(noreplace) %verify(not md5 size mtime) %{_x11icondir}/default/index.theme %if %{with_handhelds} %dir %{_x11icondir}/handhelds %dir %{_x11icondir}/handhelds/cursors %{_x11icondir}/handhelds/cursors/* %endif %if %{with_redglass} %dir %{_x11icondir}/redglass %dir %{_x11icondir}/redglass/cursors %{_x11icondir}/redglass/cursors/* %endif %if %{with_whiteglass} %dir %{_x11icondir}/whiteglass %dir %{_x11icondir}/whiteglass/cursors %{_x11icondir}/whiteglass/cursors/* %endif ### XFree86-devel #################################################### %files devel %defattr(-,root,root) # Changed GL include dir, on Mar 17, 2002 for 4.2.0-6.48 release %dir %{_includedir}/GL %{_includedir}/GL/* %{_includedir}/X11 %{_includedir}/DPS %{_libdir}/libGL.so %{_libdir}/libGLU.so %dir %{_x11includedir} %dir %{_x11includedir}/DPS %dir %{_x11includedir}/X11 %dir %{_x11includedir}/X11/ICE # PEX is obsolete %dir %{_x11includedir}/X11/PEX5 %dir %{_x11includedir}/X11/PM %dir %{_x11includedir}/X11/SM %dir %{_x11includedir}/X11/Xaw %dir %{_x11includedir}/X11/Xcursor %dir %{_x11includedir}/X11/Xft %dir %{_x11includedir}/X11/Xmu %dir %{_x11includedir}/X11/bitmaps %{_x11includedir}/X11/bitmaps/* %ifnarch s390 s390x %dir %{_x11includedir}/X11/pixmaps %{_x11includedir}/X11/pixmaps/* %endif %dir %{_x11includedir}/X11/extensions %{_x11includedir}/X11/extensions/*.h %if %{with_fontconfig} %dir %{_x11includedir}/fontconfig %{_x11includedir}/fontconfig/* %endif %if %{with_freetype2} %dir %{_x11includedir}/freetype2 %{_x11includedir}/freetype2/*.h %dir %{_x11includedir}/freetype2/freetype %{_x11includedir}/freetype2/freetype/*.h %dir %{_x11includedir}/freetype2/freetype/cache %{_x11includedir}/freetype2/freetype/cache/*.h %dir %{_x11includedir}/freetype2/freetype/config %{_x11includedir}/freetype2/freetype/config/*.h %dir %{_x11includedir}/freetype2/freetype/internal %{_x11includedir}/freetype2/freetype/internal/*.h %endif %dir %{_x11includedir}/X11/fonts %{_x11includedir}/X11/fonts/*.h %dir %{_x11includedir}/X11/fonts/codeconv %{_x11includedir}/X11/fonts/codeconv/*.h %dir %{_x11datadir}/X11/config %{_x11bindir}/cxpm %if %{with_fontconfig} %{_x11bindir}/fontconfig-config %endif %if %{with_freetype2} %{_x11bindir}/freetype-config %endif %{_x11bindir}/gccmakedep %{_x11bindir}/imake %{_x11bindir}/makedepend %{_x11bindir}/makeg %{_x11bindir}/pswrap %{_x11bindir}/rman %{_x11bindir}/sxpm %{_x11bindir}/xft-config %{_x11bindir}/xmkmf %ifnarch s390 s390x %{_x11includedir}/*.h %endif %{_x11includedir}/DPS/*.h %{_x11includedir}/X11/*.h %{_x11includedir}/X11/ICE/*.h # PEX is obsolete %{_x11includedir}/X11/PEX5/*.h %{_x11includedir}/X11/PM/*.h %{_x11includedir}/X11/SM/*.h %{_x11includedir}/X11/Xaw/* %{_x11includedir}/X11/Xcursor/* ###%if ! %{with_new_fontconfig_Xft} %{_x11includedir}/X11/Xft/* ###%endif %{_x11includedir}/X11/Xmu/*.h # We used to use the following wildcard for simplicity's sake, however a few # XFree86 builds were building and installing expat and other libs explicitly # not enabled to be built, and they were getting into the X packages. We list # things explicitly now, to avoid this problem. This should likely be # generated at %%install time into a file list and included. #%{_x11libdir}/*.a %{_x11libdir}/libFS.a %{_x11libdir}/libGL.a %{_x11libdir}/libGLU.a %{_x11libdir}/libGLw.a %{_x11libdir}/libI810XvMC.a %{_x11libdir}/libICE.a %{_x11libdir}/libOSMesa.a %{_x11libdir}/libSM.a %{_x11libdir}/libX11.a %{_x11libdir}/libXRes.a %{_x11libdir}/libXTrap.a %{_x11libdir}/libXau.a %{_x11libdir}/libXaw.a %{_x11libdir}/libXcursor.a %{_x11libdir}/libXdmcp.a %{_x11libdir}/libXext.a %{_x11libdir}/libXfont.a %{_x11libdir}/libXfontcache.a %{_x11libdir}/libXft.a %{_x11libdir}/libXi.a %{_x11libdir}/libXinerama.a %{_x11libdir}/libXmu.a %{_x11libdir}/libXmuu.a %{_x11libdir}/libXp.a %{_x11libdir}/libXpm.a %{_x11libdir}/libXrandr.a %{_x11libdir}/libXrender.a %{_x11libdir}/libXss.a %{_x11libdir}/libXt.a %{_x11libdir}/libXtst.a %{_x11libdir}/libXv.a %{_x11libdir}/libXvMC.a %{_x11libdir}/libXxf86dga.a %{_x11libdir}/libXxf86misc.a %{_x11libdir}/libXxf86rush.a %{_x11libdir}/libXxf86vm.a %{_x11libdir}/libdps.a %{_x11libdir}/libdpstk.a #%{_x11libdir}/libexpat.a %{_x11libdir}/libfntstubs.a %{_x11libdir}/libfontenc.a %{_x11libdir}/liboldX.a %{_x11libdir}/libpsres.a %ifnarch s390 s390x %{_x11libdir}/libxf86config.a %endif %{_x11libdir}/libxkbfile.a %{_x11libdir}/libxkbui.a #%{_x11libdir}/*.so %{_x11libdir}/libGL.so %{_x11libdir}/libGLU.so %{_x11libdir}/libICE.so %{_x11libdir}/libOSMesa.so %{_x11libdir}/libSM.so %{_x11libdir}/libX11.so %{_x11libdir}/libXTrap.so %{_x11libdir}/libXaw.so %{_x11libdir}/libXcursor.so %{_x11libdir}/libXext.so %{_x11libdir}/libXfont.so %{_x11libdir}/libXft.so %{_x11libdir}/libXi.so %{_x11libdir}/libXmu.so %{_x11libdir}/libXmuu.so %{_x11libdir}/libXp.so %{_x11libdir}/libXpm.so %{_x11libdir}/libXrandr.so %{_x11libdir}/libXrender.so %{_x11libdir}/libXt.so %{_x11libdir}/libXtst.so %{_x11libdir}/libXv.so %{_x11libdir}/libdps.so %{_x11libdir}/libdpstk.so #%{_x11libdir}/libexpat.so %{_x11libdir}/libpsres.so %if %{with_libxrx} %{_x11libdir}/libxrx.so %endif %if %{with_fontconfig} %{_x11libdir}/libfontconfig.a %{_x11libdir}/libfontconfig.so %{_libdir}/pkgconfig/fontconfig.pc %endif # %{_x11libdir}/pkgconfig dir is unnecessary, just use the /usr/lib/pkgconfig dir #%dir %{_x11libdir}/pkgconfig %{_libdir}/pkgconfig/xcursor.pc %{_libdir}/pkgconfig/xft.pc %{_x11datadir}/X11/config/* %{_x11mandir}/man1/cxpm.1* %{_x11mandir}/man1/gccmakedep.1* %{_x11mandir}/man1/imake.1* %{_x11mandir}/man1/makeg.1* %{_x11mandir}/man1/pswrap.1* %{_x11mandir}/man1/rman.1* %{_x11mandir}/man1/sxpm.1* %{_x11mandir}/man1/xmkmf.1* %{_x11mandir}/man3/* %if %{with_fontconfig} %{_x11mandir}/man3/fontconfig.3* %endif # XFree86-font-utils package ######################################### %files font-utils %defattr(-,root,root) %if %{with_fontconfig} %{_x11bindir}/fc-cache %{_x11bindir}/fc-list %{_x11mandir}/man1/fc-cache.1* %{_x11mandir}/man1/fc-list.1* %endif %{_x11bindir}/mkfontdir %{_x11mandir}/man1/mkfontdir.1* %{_x11bindir}/mkfontscale %{_x11mandir}/man1/mkfontscale.1* # XFree86-tools package ############################################### %files tools %defattr(-,root,root) %{_x11bindir}/beforelight %{_x11bindir}/glxinfo %{_x11bindir}/glxgears %{_x11bindir}/ico %{_x11bindir}/listres %{_x11bindir}/mkhtmlindex %{_x11bindir}/oclock %{_x11bindir}/showfont # FIXME: ucs2any should be moved to XFree86-font-utils %{_x11bindir}/ucs2any %{_x11bindir}/viewres %{_x11bindir}/x11perf %{_x11bindir}/x11perfcomp %{_x11bindir}/xbiff %{_x11bindir}/xcalc %{_x11bindir}/xclipboard %{_x11bindir}/xclock %{_x11bindir}/xditview %if %{with_xedit} %{_x11bindir}/xedit %endif %{_x11bindir}/xev %{_x11bindir}/xeyes %{_x11bindir}/xfd %{_x11bindir}/xfontsel %{_x11bindir}/xgc # XIE is obsolete %{_x11bindir}/xieperf # xload has no need to be SUID root %attr(755,root,root) %{_x11bindir}/xload %{_x11bindir}/xmag %if %{with_xman} %{_x11bindir}/xman %endif %{_x11bindir}/xmessage %{_x11bindir}/xvinfo %{_x11bindir}/xwininfo %{_x11bindir}/xlogo %{_x11bindir}/xkill %if %{with_xedit} %dir %{_x11datadir}/X11/xedit %dir %{_x11datadir}/X11/xedit/lisp %{_x11datadir}/X11/xedit/lisp/*.lsp %dir %{_x11datadir}/X11/xedit/lisp/progmodes %{_x11datadir}/X11/xedit/lisp/progmodes/*.lsp %endif %if %{with_xman} %{_x11datadir}/X11/xman.help %endif %{_x11mandir}/man1/beforelight.1* %{_x11mandir}/man1/glxinfo.1* %{_x11mandir}/man1/glxgears.1* %{_x11mandir}/man1/ico.1* %{_x11mandir}/man1/listres.1* %{_x11mandir}/man1/mkhtmlindex.1* %{_x11mandir}/man1/showfont.1* # FIXME: ucs2any should be moved to XFree86-font-utils %{_x11mandir}/man1/ucs2any.1* %{_x11mandir}/man1/viewres.1* %{_x11mandir}/man1/x11perf.1* %{_x11mandir}/man1/x11perfcomp.1* %{_x11mandir}/man1/xbiff.1* %{_x11mandir}/man1/xcalc.1* %{_x11mandir}/man1/xclipboard.1* %{_x11mandir}/man1/xclock.1* %{_x11mandir}/man1/xditview.1* %if %{with_xedit} %{_x11mandir}/man1/xedit.1* %endif %{_x11mandir}/man1/xev.1* %{_x11mandir}/man1/xeyes.1* %{_x11mandir}/man1/xfd.1* %{_x11mandir}/man1/xfontsel.1* %{_x11mandir}/man1/xgc.1* # XIE is obsolete %{_x11mandir}/man1/xieperf.1* %{_x11mandir}/man1/xload.1* %{_x11mandir}/man1/xmag.1* %if %{with_xman} %{_x11mandir}/man1/xman.1* %endif %{_x11mandir}/man1/xmessage.1* %{_x11mandir}/man1/xvinfo.1* %{_x11mandir}/man1/xwininfo.1* %files twm %defattr(-,root,root) %dir %{_sysconfdir}/X11/twm %config %{_sysconfdir}/X11/twm/system.twmrc %{_x11bindir}/twm %{_x11datadir}/X11/twm %{_x11mandir}/man1/twm.1* ### XFree86-xauth #################################################### %files xauth %defattr(-,root,root) %{_x11bindir}/xauth %{_x11bindir}/mkxauth %{_x11mandir}/man1/xauth.1* %{_x11mandir}/man1/mkxauth.1* ### XFree86-xdm ###################################################### %files xdm %defattr(-,root,root) %dir %{_sysconfdir}/X11/xdm %{_sysconfdir}/X11/xdm/authdir %dir %{_sysconfdir}/X11/xdm/pixmaps %{_sysconfdir}/X11/xdm/pixmaps/* # We ship these in the xinitrc package #%config /etc/X11/xdm/GiveConsole #%config /etc/X11/xdm/TakeConsole #%config /etc/X11/xdm/Xaccess %config /etc/X11/xdm/Xservers # We ship these in the xinitrc package #/etc/X11/xdm/Xsession #/etc/X11/xdm/Xsetup_0 %config /etc/X11/xdm/Xresources %config /etc/X11/xdm/Xwilling # FIXME: chooser is an ELF executable, should not be in /etc really /etc/X11/xdm/chooser %config %attr(0644,root,root) /etc/pam.d/xdm %{_x11bindir}/xdm %{_x11datadir}/X11/xdm %{_x11mandir}/man1/xdm.1* %dir /var/lib/xdm %dir %attr(0700,root,root) /var/lib/xdm/authdir %files xfs %defattr(-,root,root) %dir /etc/X11/fs # Changed back to 'noreplace' to fix bug #53103 %config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/X11/fs/config %config %{_sysconfdir}/rc.d/init.d/xfs %{_x11bindir}/xfsinfo %{_x11bindir}/fslsfonts %{_x11bindir}/fstobdf %{_x11bindir}/xfs %{_x11datadir}/X11/fs %{_x11mandir}/man1/xfs.1* %{_x11mandir}/man1/xfsinfo.1* %{_x11mandir}/man1/fslsfonts.1* %{_x11mandir}/man1/fstobdf.1* ### XFree86-libs-data ################################################ # libs-data includes files which used to be in "libs" but which were moved # here so that both x86, and x86_64 libs packages may be installed simultaneously. %files libs-data %defattr(-,root,root) %dir %{_x11datadir} %dir %{_x11datadir}/X11 %dir %{_x11localedir} %{_x11localedir}/* %{_x11datadir}/X11/rgb.txt # Xcms.txt should be banished from the face of the earth with extreme # hostility #%{_x11datadir}/X11/Xcms.txt %{_x11datadir}/X11/XErrorDB %{_x11datadir}/X11/XKeysymDB # XftConfig is no longer present or used %{_sysconfdir}/X11/XftConfig.README-OBSOLETE # Exclude i18n DSOs as they're arch specific %exclude %dir %{_x11localedir}/%{_lib} %exclude %dir %{_x11localedir}/%{_lib}/common %exclude %{_x11localedir}/%{_lib}/common/* %dir %{_x11mandir} %dir %{_x11mandir}/man1 %dir %{_x11mandir}/man2 %dir %{_x11mandir}/man3 %dir %{_x11mandir}/man4 %dir %{_x11mandir}/man5 %dir %{_x11mandir}/man6 %dir %{_x11mandir}/man7 %dir %{_x11mandir}/man8 ### XFree86-libs ##################################################### %files libs %defattr(-,root,root) # On x86 and other architectures _x11libdir and _x11datadir are the same dir, # so listing them both generates a "file included twice" error. Since these # dirs are different on x86_64, we ifarch it here. # All manpage dirs owned by libs package to guarantee they are owned by some # installed package because everything pretty much depends on libs being there %ifarch x86_64 %dir %{_x11libdir} %endif # i18n DSOs %dir %{_x11localedir}/%{_lib} %dir %{_x11localedir}/%{_lib}/common %{_x11localedir}/%{_lib}/common/* # Shared libraries: %{_x11libdir}/lib*.so.* might be better in the long run # except for arch specific stuff, but it shouldn't be built in the first place. %if %{with_DRI} %{_x11libdir}/libOSMesa.so.* %endif %{_x11libdir}/libICE.so.* # PEX is obsolete %{_x11libdir}/libPEX5.so.* %{_x11libdir}/libSM.so.* %{_x11libdir}/libX11.so.* # XIE is obsolete %{_x11libdir}/libXIE.so.* %{_x11libdir}/libXTrap.so.* %{_x11libdir}/libXaw.so.* %{_x11libdir}/libXcursor.so.* %{_x11libdir}/libXext.so.* %{_x11libdir}/libXfont.so.* # Make sure proper libXft.so.* files get included %{_x11libdir}/libXft.so.* %{_x11libdir}/libXi.so.* %{_x11libdir}/libXmu.so.* %{_x11libdir}/libXmuu.so.* %{_x11libdir}/libXp.so.* %{_x11libdir}/libXpm.so.* %{_x11libdir}/libXrandr.so.* %{_x11libdir}/libXrender.so.* %{_x11libdir}/libXt.so.* %{_x11libdir}/libXtst.so.* %{_x11libdir}/libXv.so.* %{_x11libdir}/libdps.so.* %{_x11libdir}/libdpstk.so.* %if %{with_fontconfig} %{_x11libdir}/libfontconfig.so.* %endif %if %{with_freetype2} %{_x11libdir}/libfreetype.so.* %endif %{_x11libdir}/libpsres.so.* %if %{with_libxrx} %{_x11libdir}/libxrx.so.* %endif ### XFree86-Mesa-libGL ############################################### %files Mesa-libGL %defattr(-,root,root) %{_x11libdir}/libGL.so.* %{_libdir}/libGL.so.* ### XFree86-Mesa-libGLU ############################################## %files Mesa-libGLU %defattr(-,root,root) %{_x11libdir}/libGLU.so.* %{_libdir}/libGLU.so.* ###################################################################### # FONT SUBPACKAGES (conditional) %if %{with_fonts} ### XFree86-base-fonts ############################################### %files base-fonts %defattr(-,root,root) %dir %{_x11fontdir} # base 100dpi fonts %dir %{_x11fontdir}/100dpi %ghost %verify(not md5 size mtime) %{_x11fontdir}/100dpi/encodings.dir %config(noreplace) %verify(not md5 size mtime) %{_x11fontdir}/100dpi/fonts.alias %ghost %verify(not md5 size mtime) %{_x11fontdir}/100dpi/fonts.dir # base 75dpi fonts %dir %{_x11fontdir}/75dpi %ghost %verify(not md5 size mtime) %{_x11fontdir}/75dpi/encodings.dir %config(noreplace) %verify(not md5 size mtime) %{_x11fontdir}/75dpi/fonts.alias %ghost %verify(not md5 size mtime) %{_x11fontdir}/75dpi/fonts.dir # base CID fonts %dir %{_x11fontdir}/CID %ghost %verify(not md5 size mtime) %{_x11fontdir}/CID/encodings.dir %ghost %verify(not md5 size mtime) %{_x11fontdir}/CID/fonts.dir %ghost %verify(not md5 size mtime) %{_x11fontdir}/CID/fonts.scale # Encoding files %dir %{_x11fontdir}/encodings %{_x11fontdir}/encodings/* #%dir %{_x11fontdir}/encodings/large #%{_x11fontdir}/encodings/large/* # local, and misc do not currently contain fonts, but we want to own the dir %dir %{_x11fontdir}/local %ghost %verify(not md5 size mtime) %{_x11fontdir}/local/encodings.dir %ghost %verify(not md5 size mtime) %{_x11fontdir}/local/fonts.dir # base misc files %dir %{_x11fontdir}/misc %{_x11fontdir}/misc/*.pcf.gz %ghost %verify(not md5 size mtime) %{_x11fontdir}/misc/encodings.dir %config(noreplace) %verify(not md5 size mtime) %{_x11fontdir}/misc/fonts.alias %ghost %verify(not md5 size mtime) %{_x11fontdir}/misc/fonts.dir # Utility fonts? Font utilities? Ruh-roh.... %dir %{_x11fontdir}/util %{_x11fontdir}/util/* # base Speedo fonts %dir %{_x11fontdir}/Speedo %{_x11fontdir}/Speedo/*.spd %ghost %verify(not md5 size mtime) %{_x11fontdir}/Speedo/encodings.dir %ghost %verify(not md5 size mtime) %{_x11fontdir}/Speedo/fonts.dir %verify(not md5 size mtime) %{_x11fontdir}/Speedo/fonts.scale # base Type1 fonts %dir %{_x11fontdir}/Type1 %{_x11fontdir}/Type1/*.afm %{_x11fontdir}/Type1/*.pfa %{_x11fontdir}/Type1/*.pfb %ghost %verify(not md5 size mtime) %{_x11fontdir}/Type1/encodings.dir %ghost %verify(not md5 size mtime) %{_x11fontdir}/Type1/fonts.dir %verify(not md5 size mtime) %{_x11fontdir}/Type1/fonts.scale %ghost %verify(not md5 size mtime) %{_x11fontdir}/Type1/fonts.cache* # Make base-fonts own the other font directories and auxilliary files %dir %{_x11fontdir}/OTF %ghost %verify(not md5 size mtime) %{_x11fontdir}/OTF/encodings.dir %ghost %verify(not md5 size mtime) %config(noreplace) %{_x11fontdir}/OTF/fonts.alias %ghost %verify(not md5 size mtime) %{_x11fontdir}/OTF/fonts.dir %ghost %verify(not md5 size mtime) %{_x11fontdir}/OTF/fonts.scale %ghost %verify(not md5 size mtime) %{_x11fontdir}/OTF/fonts.cache* %dir %{_x11fontdir}/TTF %ghost %verify(not md5 size mtime) %{_x11fontdir}/TTF/encodings.dir %ghost %verify(not md5 size mtime) %config(noreplace) %{_x11fontdir}/TTF/fonts.alias %ghost %verify(not md5 size mtime) %{_x11fontdir}/TTF/fonts.dir %ghost %verify(not md5 size mtime) %{_x11fontdir}/TTF/fonts.scale %ghost %verify(not md5 size mtime) %{_x11fontdir}/TTF/fonts.cache* ### XFree86-truetype-fonts ########################################### %files truetype-fonts %defattr(-,root,root) %dir %{_x11fontdir}/TTF %{_x11fontdir}/TTF/*.ttf ### XFree86-syriac-fonts ########################################### %files syriac-fonts %defattr(-,root,root) %dir %{_x11fontdir}/OTF %{_x11fontdir}/OTF/Syr*.otf %files 75dpi-fonts %defattr(-,root,root) %dir %{_x11fontdir}/75dpi %exclude %{_x11fontdir}/75dpi/*-ISO8859-2.pcf.gz %exclude %{_x11fontdir}/75dpi/*-ISO8859-9.pcf.gz %exclude %{_x11fontdir}/75dpi/*-ISO8859-14.pcf.gz %exclude %{_x11fontdir}/75dpi/*-ISO8859-15.pcf.gz %{_x11fontdir}/75dpi/*.pcf.gz %files 100dpi-fonts %defattr(-,root,root) %dir %{_x11fontdir}/100dpi %exclude %{_x11fontdir}/100dpi/*-ISO8859-2.pcf.gz %exclude %{_x11fontdir}/100dpi/*-ISO8859-9.pcf.gz %exclude %{_x11fontdir}/100dpi/*-ISO8859-14.pcf.gz %exclude %{_x11fontdir}/100dpi/*-ISO8859-15.pcf.gz %{_x11fontdir}/100dpi/*.pcf.gz %files ISO8859-2-75dpi-fonts %defattr(-,root,root) %{_x11fontdir}/75dpi/*-ISO8859-2.pcf.gz %files ISO8859-2-100dpi-fonts %defattr(-,root,root) %{_x11fontdir}/100dpi/*-ISO8859-2.pcf.gz %files ISO8859-9-75dpi-fonts %defattr(-,root,root) %{_x11fontdir}/75dpi/*-ISO8859-9.pcf.gz %files ISO8859-9-100dpi-fonts %defattr(-,root,root) %{_x11fontdir}/100dpi/*-ISO8859-9.pcf.gz %files ISO8859-14-75dpi-fonts %defattr(-,root,root) %{_x11fontdir}/75dpi/*-ISO8859-14.pcf.gz %files ISO8859-14-100dpi-fonts %defattr(-,root,root) %{_x11fontdir}/100dpi/*-ISO8859-14.pcf.gz %files ISO8859-15-75dpi-fonts %defattr(-,root,root) %{_x11fontdir}/75dpi/*-ISO8859-15.pcf.gz %files ISO8859-15-100dpi-fonts %defattr(-,root,root) %{_x11fontdir}/100dpi/*-ISO8859-15.pcf.gz %files cyrillic-fonts %defattr(-,root,root) %dir %{_x11fontdir}/cyrillic %{_x11fontdir}/cyrillic/*.gz %ghost %verify(not md5 size mtime) %{_x11fontdir}/cyrillic/encodings.dir %config(noreplace) %verify(not md5 size mtime) %{_x11fontdir}/cyrillic/fonts.alias %ghost %verify(not md5 size mtime) %{_x11fontdir}/cyrillic/fonts.dir %endif # End of font subpackages ####################################################################### %ifnarch s390 s390x %files doc %defattr(-,root,root) %doc xc/doc/hardcopy/* %endif %files Xnest %defattr(-,root,root) %{_x11bindir}/Xnest %{_x11mandir}/man1/Xnest.1* %files Xvfb %defattr(-,root,root) %{_x11bindir}/Xvfb %{_x11mandir}/man1/Xvfb.1* %if %{with_xf86cfg} %files xf86cfg %defattr(-,root,root) %{_x11bindir}/xf86cfg %{_x11mandir}/man1/xf86cfg.1* %endif %if %{with_kdrive} %files TinyX %defattr(-,root,root) %{_x11bindir}/Xfbdev %{_x11bindir}/Xi810 %{_x11bindir}/Xigs %{_x11bindir}/Xmach64 %{_x11bindir}/Xsavage %{_x11bindir}/Xsis530 %{_x11bindir}/Xtrident %{_x11bindir}/Xtrio %{_x11bindir}/Xts300 %{_x11bindir}/Xvesa %{_x11mandir}/man1/Xfbdev.1* %{_x11mandir}/man1/Xkdrive.1* %{_x11mandir}/man1/Xvesa.1* %endif %if %{with_sdk} %files sdk -f filelist.sdk %defattr(-,root,root) %endif ###################################################################### %clean [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT ########## CHANGELOG SECTION ######################################### %changelog * Thu Feb 27 2003 Mike A. Harris 4.3.0-2 - Removed some junk comments from specfile, the commented out old cursors and xtrap-clients subpackage junk and a few other things - Corrected a mistake in OTF font directory file list that was named TTF instead of OTF, causing a ghost file to be missed - Verified all file lists to be accurate just to doublecheck the 4.3.0 release is not accidentally missing any files - Removed mharris_noclean_mode developmental cruft from specfile, as I do not use it in my developmental builds anymore and wont need it after transitioning to _unpackaged_files_terminate_build mode - Removed XFree86-4.2.99.901-012_r128_xv_btyeswap_fix.patch as current CVS fixes the problem in a different way, and this patch reverts that - Removed the changes deemed potentially unsafe from en_US.UTF-8 compose table to have minimalistic changes * Thu Feb 27 2003 Mike A. Harris 4.3.0-1 - Updated to official XFree86 4.3.0 release via CVS export of xf-4_3_0 * Wed Feb 26 2003 Mike A. Harris 4.2.99.902-20030226.0 - Updated CVS snapshot to 4.2.99.902-20030226, manually checked each diff and verifying each code change is safe. No questionable changes today. * Tue Feb 25 2003 Mike A. Harris 4.2.99.902-20030225.0 - Updated CVS snapshot to 4.2.99.902-20030225, manually checked each diff, accept all documentation updates, verified each change. - Added XFree86-4.3.0-revert-en_US.UTF-8-Compose.patch to back out changes made in CVS to en_US.UTF-8 Compose tables as they can not be easily verified to be 100% correct and regressionless at this point - Removed XFree86-4.2.99.902-xft-version-bump.patch as it is in CVS update * Mon Feb 24 2003 Mike A. Harris 4.2.99.902-20030224.2 - Added XFree86-4.2.99.902-xft-version-bump.patch to fix Xft library .so version from 2.0 to 2.1 since it had an addition of UTF-16 APIs. This fixes http://bugzilla.mozilla.org/show_bug.cgi?id=175108 * Mon Feb 24 2003 Mike A. Harris 4.2.99.902-20030224.1 - Updated my radeon XFree86-4.2.99.902-ati-radeon-dpms-on-dvi-v2.patch patch to play things a bit safer by removing MT_LCD. There is a more appropriate and robust way to do this that I will examine in the future. - Removed unused WithNewCyrixDriver crud from specfile - Removed unused with_bk crud from specfile - [SECURITY] Added XFree86-4.3.0-xterm-can-2003-0063.patch to fix xterm titlebar issue reported in CAN-2003-0063 by disabling the feature that allows the problem. * Mon Feb 24 2003 Mike A. Harris 4.2.99.902-20030224.0 - Updated CVS snapshot to 4.2.99.902-20030224, which makes another cursor glitch fix to generic code, and fixes an obvious vgaHW locking bug. The rest are minor cosmetics and documentation updates. - Add credit to GB18030 patches to Yu Shao and James Su, whom both worked on this support over time. * Sun Feb 23 2003 Mike A. Harris 4.2.99.902-20030223.0 - Updated CVS snapshot to 4.2.99.902-20030223 - CVS checkin 946 fixes GL debugging junk printed to screen (#84347) - More CVS fixes for Radeon ARGB cursor code from Keith and Michel Daenzer (#84691) - CVS checkin 939 Check pScrn->vtSema before calling xf86SetCursor() from xf86CursorCloseScreen(). This avoids a segfault at exit with some drivers, and I believe should fix the problem reported in (#79678,84689) - CVS checkin 938 fix adding FP native mode for Radeon (Hui Yu@ATI, Kevin Martin). - This should fix problems people have reported on various Radeon Mobility laptops of being unable to select video modes, etc. I can not get into bugzilla to get the bug IDs currently. - CVS checkin 937 - Initialize I2C when primary head has an invalid DDC type for the Radeon driver (Hui Yu@ATI). This should fix some of the DDC probe related problems some users experience during installation which cause the installer to go bonkers. * Fri Feb 21 2003 Mike A. Harris 4.2.99.902-20030220.3 - Bump kernel-drm requirement to 4.3.0 * Fri Feb 21 2003 Mike A. Harris 4.2.99.902-20030220.2 - Implemented XFree86-4.2.99.902-ati-radeon-dpms-on-dvi.patch for DPMS on LCD/DFP panels on Radeon driver (#80629) * Fri Feb 21 2003 Mike A. Harris 4.2.99.902-20030220.1 - Removed Xft/Xft-devel goofup from bad specfile diff application - Added XFree86-4.2.99.902-savage-revert-vbe-change-from-X-cvs.patch to back out a VBE change done in XFree86 CVS sometime in the last couple of months, which I believe causes the Savage MX probs (#72476,80278,80346,80423,82394) * Fri Feb 21 2003 Mike A. Harris 4.2.99.902-20030220.0 - Updated CVS snapshot to 4.2.99.902-20030220 - Removed integraged now: XFree86-4.2.99.901-debian-dont_vtswitch_option.patch, XFree86-4.2.99.901-017_neomagic_manpage_fixes.patch, XFree86-4.2.99.901-018_fontenc_null_ptr_deref_fix.patch, XFree86-4.2.99.901-020_proxymgr_manpage_fixes.patch, XFree86-4.2.99.901-035_xim_memleak_fix.patch, XFree86-4.2.99.902-ati-radeon-buildfix.patch * Thu Feb 20 2003 Mike A. Harris 4.2.99.902-20030218.3 - Ok, no kidding this time. I really really mean it, the new savage driver is definitely in this build for sure for sure. No kidding around this time. - Created and added XFree86-4.2.99.902-savage-Imakefile-vbe-fixup.patch, XFree86-4.2.99.902-savage-1.1.26cvs-1.1.27t-fixups.patch, XFree86-4.2.99.902-savage-1.1.26cvs-1.1.27t-accel-fixup.patch - Added XFree86-4.2.99.902-redhat-version-change-notification.patch which does not actually do anything except fail to apply cleanly when the XFree86 version changes, thus alerting me to change the spec file Version field, and update the patch * Thu Feb 20 2003 Mike A. Harris 4.2.99.902-20030218.2 - Actually ENABLE the new savage driver with rpm spec conditional, since I moronically did not enable it the first time * Tue Feb 18 2003 Mike A. Harris 4.2.99.902-20030218.1 - Implemented a new radeon driver config file option "ForceLegacyCRT" in XFree86-4.2.99.902-ati-radeon-alan-legacy-vga.patch to allow Alan to use an ancient VGA mono monitor, and documented it in the radeon manpage (#69976) * Tue Feb 18 2003 Mike A. Harris 4.2.99.902-20030218.0 - Updated CVS snapshot to 4.2.99.902-20030218 - Added Red Hat buildsystem BuildConflicts line to test for disk space - Added Red Hat buildsystem BuildProvides line to hint that up to 8 CPUs can be used effectively when compiling XFree86 - Added XFree86-4.2.99.902-ati-radeon-buildfix.patch to fix ATI Radeon driver build problem * Mon Feb 17 2003 Mike A. Harris 4.2.99.902-20030217.1 - Update savage driver to Tim Roberts tried and true faithful savage driver new release 1.1.27t (#72476,80278,80346,80423,82394) * Mon Feb 17 2003 Mike A. Harris 4.2.99.902-20030217.0 - Updated CVS snapshot to 4.2.99.902-20030217 - Release Candidate 2 - Dropped XFree86-4.2.99.901-xlib-hang.patch, XFree86-4.2.99.901-argb-cursor-render-bugfix-keithp.patch, XFree86-4.2.99.901-xft-_XftSmoothGlyphMono-endless-loop-fix.patch, XFree86-4.2.99.901-xft-crash-with-non-render-server-from-keithp.patch * Thu Feb 14 2003 Mike A. Harris 4.2.99.901-20030213.1 - Added XFree86-4.2.99.901-argb-cursor-render-bugfix-keithp.patch, yet another ARGB cursor bugfix. This one is in the render code. It should fix problems reported by msw and others of random blobs and crap following the cursors around, in particular when using the 'core' cursor theme - Added XFree86-4.2.99.901-xft-_XftSmoothGlyphMono-endless-loop-fix.patch patch to fix endless loop in libXft Nalin found while investigating (#80414) - Added XFree86-4.2.99.901-xft-crash-with-non-render-server-from-keithp.patch to fix bug http://bugzilla.mozilla.org/show_bug.cgi?id=175108 reported to me by blizzard that crashes mozilla, which is also found in (#80414) * Thu Feb 14 2003 Mike A. Harris 4.2.99.901-20030213.0 - Updated CVS snapshot to 4.2.99.901-20030213, fixing several critical bugs - Disabled keiths argb radeon cursor patch as CVS has some other fix now - New CVS also fixes the same problem on r128 and mach64 mouse cursor that the radeon had (#83284,83768) - Disabled revert-xkb-patch-865 as the problem with VTswitching is fixed now in this snapshot (#84306) * Thu Feb 13 2003 Mike A. Harris 4.2.99.901-20030212.0 - Updated CVS snapshot to 4.2.99.901-20030212 * Thu Feb 13 2003 Mike A. Harris 4.2.99.901-20030211.3 - Added XFree86-4.2.99.901-dont-install-Xcms.txt.patch to not install Xcms.txt by default, under recommendation of Keith Packard - Added Conflicts: Xft to -libs, and Conflicts: Xft-devel to -devel, and removed <= 2.0 versioning off Obsoletes: Xft and Xft-devel to try and fix problem where if you upgrade an 8.0 system to 4.2.99.x the Xft2 library becomes unusable (#77838) - Created XFree86-4.2.99.901-revert-xkb-patch-865.patch to revert the changes from Ivan Pascal that Daved Dawes checked into CVS in XFree86 CHANGELOG entry 865 to fix autorepeat on keypad /*-+ and fix mouse-keys, and other things, which had the result of totally breaking VT switching from terminal to terminal after switching out of X * Thu Feb 13 2003 Mike A. Harris 4.2.99.901-20030211.2 - Added XFree86-4.2.99.901-ati-radeon-argb-cursor-fix-from-keithp.patch from Keith, and disabled argb cursor patch for radeon (#83768) * Thu Feb 13 2003 Mike A. Harris 4.2.99.901-20030211.1 - Added XFree86-4.2.99.901-debian-dont_vtswitch_option.patch which adds a new ServerFlags option "DontVTSwitch", to allow disabling of VT switching via CTRL-ALT-Fn written by Branden Robinson for Debian - Added XFree86-4.2.99.901-ati-radeon-ia64-pagesize.patch which removes the hardcoded compile-time pagesize in the radeon and r128 drivers, replacing it with runtime detection with getpagesize() since platforms like ia64, alpha and others that can have different runtime page sizes will work - Added XFree86-4.2.99.901-xlib-hang.patch that fixes a bug in _XEventsQueued() that causes an 'event reader lock' of another thread to be released which can cause a hang and keyboard lockup in KDE. For example, using KDE CVS and xine CVS, by playing a movie clip with Noatun (hang and keyboard lockup after playback has stopped). - Update s3virge driver documentation for 4.3.0 - Added XFree86-4.2.99.901-007_fix_xfree86_man_version_string.diff to fix up XFree86 version string in manpages - Added XFree86-4.2.99.901-008_doc_extensions_fix.diff to sanitize filename extensions of XFree86 documentation for consistency - Added XFree86-4.2.99.901-012_r128_xv_btyeswap_fix.patch patch to fix Xvideo extention support for YUV2 and UYVY in r128 driver on big-endian processors - Neomagic manpage update XFree86-4.2.99.901-017_neomagic_manpage_fixes.patch - Added XFree86-4.2.99.901-018_fontenc_null_ptr_deref_fix.patch which fixes a null pointer dereference in the fontenc library - Added XFree86-4.2.99.901-024_r128_and_radeon_vgahw_independence.patch to fix problem on some architectures that do not allow legacy VGA hardware access - Added XFree86-4.2.99.901-027_ati_driver_message_cleanups.patch to fix up the formatting of a few ATI driver startup messages - Added XFree86-4.2.99.901-028_fbdev_depth24_support.patch to fix fbdev 24bit depth support - Added XFree86-4.2.99.901-035_xim_memleak_fix.patch to fix a memory leak in the XIM code * Tue Feb 11 2003 Mike A. Harris 4.2.99.901-20030211.0 - Updated CVS snapshot to 4.2.99.901-20030211 * Tue Feb 11 2003 Mike A. Harris 4.2.99.901-20030209.2 - Moved TTF and OTF subpackage fonts.* and other auxilliary ghost files into the base-fonts subpackage so the dirs are always present, even if the truetype and/or syriac-fonts packages are not installed, and to prevent multiple packages from claiming ownership of the same files (#83913) - Added Conflicts lines for the above change - Added Buildrequires: ed for fontconfig - Removed unapplied ancient XFree86-4.1-xinerama.patch workaround - Added XFree86-4.2.99.901-xauth-diskfull.patch which fixes a bug where xauth may write an incomplete .xauth file and delete the old one if there is insufficient disk space (Harald Hoyer - #84036) * Mon Feb 10 2003 Mike A. Harris 4.2.99.901-20030209.1 - Added more with_foo buildtime conditionals for standardization - Cleaned up post buildroot-install time file deletions of unpackaged files * Mon Feb 10 2003 Mike A. Harris 4.2.99.901-20030209.0 - Updated CVS snapshot to 4.2.99.901-20030209 - Added XFree86-4.2.99.901-xkb-sysreq.patch to fix GNOME printscreen issue due to bad mapping of sysreq (#80373) - Removed XFree86-4.2.99.4-ati-r128-full-chipset-support.patch as it got integrated into upstream sources - Added XFree86-4.2.99.901-ati-r128-chip-names-touchup.patch to make R128 chips that we are not sure are AGP or not show up as "(AGP?)", to heighten the chance of a user noticing it and providing us with this information. - Removed XFree86-4.2.99.4-ati-xf86PciInfo-chip-support-update.patch as it is integrated upstream now * Thu Feb 6 2003 Mike A. Harris 4.2.99.901-20030206.0 - Updated CVS snapshot to 4.2.99.901-20030206 - New Intel i865 integrated video support is in this snapshot - Made XFree86-4.2.99.901-ati-radeon-missing-symbol-drmScatterGatherAlloc.patch to fix a bug reported on devel@xfree86.org, also submitted it * Wed Feb 5 2003 Mike A. Harris 4.2.99.901-20030205.0 - Updated CVS snapshot to 4.2.99.901-20030205 - Removed integrated patches XFree86-4.2.99.3-encodings-Imakefile-fix.patch - Add XFree86-4.2.99.901-ati-radeon-fix-broken-argb-cursors.patch to hopefully fix all the Radeon Xcursor related weirdness (#78231,80445) * Wed Feb 5 2003 Mike A. Harris 4.2.99.901-20030203.2 - Cleanups of specfile, host.def - Ported parallelmake patch to current tree, and experimented with it but could not get it working properly so it is disabled again * Tue Feb 4 2003 Mike A. Harris 4.2.99.901-20030203.1 - Added XFree86-4.2.99.901-chips-default-to-swcursor-on-65550.patch to default to swcursor on C&T 65550 for bug (#82438) - Improved chips-default-to-noaccel-on-69000 patch to be more correct for (#74841) * Tue Feb 4 2003 Mike A. Harris 4.2.99.901-20030203.0 - Updated CVS snapshot to 4.2.99.901-20030203 - Added BuildBethMarduthoFonts YES as XFree86 CVS somehow weirdly stopped building Syriac fonts - Disable mga-xinerama-G450-issue fix as it is believed to be fixed in CVS now with CHANGELOG log entry 818. Needs confirmation to be sure. * Mon Feb 3 2003 Mike A. Harris 4.2.99.4-20030129.5 - Updated XFree86-4.2.99.4-ati-r128-full-chipset-support.2.patch to remove stupid ANSI trigraphs and escape them properly. * Sat Feb 1 2003 Mike A. Harris 4.2.99.4-20030129.4 - Wrote XFree86-4.2.99.4-ati-r128-full-chipset-support.patch to add 2D and 3D support for 30 previously unsupported ATI Rage 128 chips including various Rage 128 Pro, Rage 128 Pro Ultra chips * Sat Feb 1 2003 Mike A. Harris 4.2.99.4-20030129.3 - Wrote XFree86-4.2.99.4-ati-xf86PciInfo-chip-support-update.patch to update the PCI ID list for further driver update patches to follow - Wrote XFree86-4.2.99.4-ati-radeon-8500-9100-firegl-8700-8800-update.patch to add 2D and 3D support for 8 previously unsupported chips in the ATI R200 chip family including various Radeon 8500, FireGL 8700/8800, and the new Powered by ATI Radeon 9100 from Sapphire - Added XFree86-4.2.99.4-ati-radeon-TV_DAC_CNTL.patch minor code cleanup * Thu Jan 30 2003 Mike A. Harris 4.2.99.4-20030129.2 - Added XFree86-4.2.99.4-locale-alias-openi18n.patch from Leon Ho, required for openi18n compliance - Cleaned up post build/install file/dir deletions to move gradually towards being able to turn on _unpackaged_files_terminate_build * Thu Jan 30 2003 Mike A. Harris 4.2.99.4-20030129.1 - Removed handhelds cursor theme - Added XFree86-4.2.99.3-ati-chip-support-update.patch, partial support patch for ATI Rage 128, Radeon, etc. hardware previously unsupported * Thu Jan 30 2003 Mike A. Harris 4.2.99.4-20030129.0 - Update CVS snapshot to 20030129 - Removed patches present upstream now: XFree86-4.2.99.4-xkb-se-fix.patch XFree86-4.2.99.4-xkb-rules-xfree86-ca_enhanced.patch - Updated XFree86-4.2.99.4-redhat-custom-startup.patch to work with latest * Wed Jan 29 2003 Mike A. Harris 4.2.99.4-20030121.6 - Removed from host.def HasMMXSupport, Has3DNowSupport, HasKatmaiSupport, and HasSSESupport after manually verifying the current default Imake config files enable this properly on x86 and x86_64 - Removed -fPIC from global x86_64 flags again, and force StaticNeedsPicForShared to YES on all architectures in host.def, instead of just on x86 - Added XFree86-4.2.99.4-IncludeSharedObjectInNormalLib.patch to fix up remaining issues with StaticNeedsPicForShared (#78188,82954) - Added XFree86-4.2.99.4-x86_64-glx-nopic.patch to build GLX nopic on x86_64 for performance reasons - as it is on x86 * Fri Jan 24 2003 Mike A. Harris 4.2.99.4-20030121.4 - Rebuilt with -fPIC temporarily for anaconda et al. on hammer * Fri Jan 24 2003 Mike A. Harris 4.2.99.4-20030121.3 - Rebuilt without -fPIC on hammer for debugging X server * Fri Jan 24 2003 Mike A. Harris 4.2.99.4-20030121.2 - Added more complete XFree86-4.2.99.4xkb-se-fix.patch from David Dawes to replace XFree86-4.2.99.4-xkb-se-asciitilde.patch if it works properly - Obsolete XFree86-Setup (#82674) - Added XFree86-4.2.99.4-xkb-rules-xfree86-ca_enhanced.patch to fix (#80425) * Wed Jan 22 2003 Mike A. Harris 4.2.99.4-20030121.1 - Added XFree86-4.2.99.4-xkb-se-asciitilde.patch to fix (#80922,82097) * Tue Jan 21 2003 Mike A. Harris 4.2.99.4-20030121.0 - Update CVS snapshot to 20030121 - Drop patches now included upstream ati-radeon-mono-8x8-accel-fix, mga-vbe-dvi-ddc, xmag fix - Added missing Conflicts: XFree86-sdk < 4.2.99.3-20030115.0 * Mon Jan 20 2003 Mike A. Harris 4.2.99.3-20030118.3 - Flagged {_x11icondir}/defaults/index.theme file as config noreplace - Disable building on ia64 due to compiler SEGV * Sun Jan 19 2003 Mike A. Harris 4.2.99.3-20030118.2 - Bump kernel-drm req up to 4.2.99.3 to match new kernel DRM - Remove -fPIC from x86_64 default opt flags, and disable ELF loader patch - Add XFree86-4.2.99.3-Imake-make-icondir-configurable.patch to make XFree86 Xcursor ICONDIR and XCURSORPATH build time configurable and default the cursors to install into /usr/share/icons - Added new specfile directory macro _x11icondir and use it everywhere - Made default cursor theme Bluecurve * Sat Jan 18 2003 Mike A. Harris 4.2.99.3-20030118.1 - Added XFree86-4.2.99.3-ati-radeon-mono-8x8-accel-fix.patch to fix mono 8x8 color expansion issue causing mirroring on RV200+ * Sat Jan 18 2003 Mike A. Harris 4.2.99.3-20030118.0 - Update CVS snapshot to 20030118 - Add XFree86-4.2.99.3-xmag-segv-uninitialized-pointer.patch to fix (#81966) - Major radeon driver updates and fixes: Fix for Mono8x8 patterns on Radeon, Fix for Radeon mode validation, Workaround for flickering problem with switching between ARGB and mono cursors on Radeons, DDCMode fix for VidMode extension, Panel detection bug fix for Radeon, Add Xv overlay support for dual headed Radeons, Fix Radeon driver 24-bit support for flat panels, Add Radeon 9500/Pro support, Disable CGWorkaround for non-A11 rev R300s, Radeon solid/dashed line fix for RV200 and newer cards, Radeon overlay gamma fix, Radeon LG panel fix. - Add XFree86-4.2.99.3-elf-loader-x86_64-relocation-fixups.patch and disabled dllmodules to try and fix ELF relocation problem reported in bug (#81984) * Wed Jan 15 2003 Mike A. Harris 4.2.99.3-20030115.1 - Add XFree86-4.2.99.3-mga-vbe-dvi-ddc.patch to support for DDC probe of DVI panels on Matrox hardware - Use MakeDllModules on x86_64 as ELF loader is currently problematic * Wed Jan 15 2003 Mike A. Harris 4.2.99.3-20030115.0 - Update CVS snapshot to 20030115 - Move syriac fonts from TTF subdir to new OTF subdir - Move inb inl inw ioport outb outl outw commands to XFree86 pkg from sdk * Wed Jan 15 2003 Mike A. Harris 4.2.99.3-20021230.7 - Added XFree86-4.2.99.3-mga-unresolved-symbols.patch to fix unresolved DRM symbols in mga driver for bug (#80968) * Tue Jan 14 2003 Mike A. Harris 4.2.99.3-20021230.6 - Added fontconfig-slighthint patch from our fontconfig package as a hack to allow the embeddedbitmap and xft-loadtarget patches to build correctly. - Added XFree86-4.2.99.3-embeddedbitmap.patch - Added XFree86-4.2.99.3-encodings-Imakefile-fix.patch to fix (#81565) * Thu Jan 9 2003 Mike A. Harris 4.2.99.3-20021230.5 - Add Requires: xinitrc (#81424) - Remove placeholder redglass cursor theme - Disable accel on C&T 69000 XFree86-4.2.99.3-chips-noaccel.patch for (#74841) * Tue Jan 7 2003 Mike A. Harris 4.2.99.3-20021230.4 - Disable fc-cache in post/postun scripts except for TTF/Type1 directories. - Created XFree86-4.2.99.3-savage-pci-id-fixes.patch to fix up the Savage driver PCI IDs that were missing and/or incorrect. * Tue Jan 7 2003 Mike A. Harris 4.2.99.3-20021230.3 - Disabled the XFree86-4.2.99.3-xft-loadtarget.patch patch as it is broken. * Mon Jan 6 2003 Mike A. Harris 4.2.99.3-20021230.2 - Remove xman as there are other manpage viewers, and this one seems to be unmaintained upstream. Conditionalized with with_xman (#81003) - Update dependancy on freetype to version 2.1.3-4 which contains a patch that a patch we are applying to Xft requires. * Fri Jan 3 2003 Mike A. Harris 4.2.99.3-20021230.1 - Added XFree86-4.2.99.3-xft-loadtarget.patch from Owen Taylor, which is a patch needed for our freetype 2.1.3 package, ported forward from the 8.0 Xft package * Mon Dec 30 2002 Mike A. Harris 4.2.99.3-20021230.0 - Updated CVS snapshot to version 4.2.99.3 20021230 - Added XFree86-4.2.99.2-netmouse.patch to fix mouse protocol initialization problem reported on XFree86 bug report list - Removed the gtf utility, its manpage, and libxf86config.a from s390/s390x - Removed leading "0." from specfile RELEASE field as it is unnecessary * Wed Dec 17 2002 Mike A. Harris 4.2.99.2-0.20021217.1 - Disabled and removed whiteglass cursor theme as it is broken and nobody is likely to fix it it seems. We will be supplying our own theme in the end that does not suck (#75844) * Tue Dec 17 2002 Mike A. Harris 4.2.99.2-0.20021217.0 - Updated CVS snapshot to 20021217, dropped unneeded patches - Added XFree86-4.2.99.2-xinerama-G450-issue.patch to work around mga issues when RENDER is used with Xinerama due to faulty Render acceleration * Sun Dec 15 2002 Mike A. Harris 4.2.99.2-0.20021215.0 - Updated CVS snapshot to 20021215, dropped unneeded patches - Update BuildRequires freetype to >= 2.1.2-7 - Added ISO8859-14 fonts for Welsh for Alan - Disable XFree86-sdk by default for now due to nsc driver sdk issue - define debug_package %{nil} to disable -debuginfo packages for now * Fri Dec 13 2002 Mike A. Harris 4.2.99.2-0.20021210.1 - Added Buildrequires: libpng-devel for bug (#79623) * Tue Dec 10 2002 Mike A. Harris 4.2.99.2-0.20021210.0 - Updated CVS snapshot to 20021210, dropped unneeded patches - Added XFree86-4.2.99.2-mga-unresolved-symbols.patch - Added /usr/X11R6/lib/X11/Xcms.txt to libs-data - Changed XFree86-devel requires from fontconfig to fontconfig-devel (#79183) - Added alpha-domain and alpha-domain2 patches back (split original in 2, and updated) * Mon Dec 9 2002 Mike A. Harris 4.2.99.2-0.20021209.0 - Updated CVS snapshot to 20021209, dropped unneeded patches - Numerous bug fixes, stability, and correctness fixes for the Intel 830/845G 2D, 3D, and Xvideo support - Updated Korean font encoding tables XFree86-4.2.99.2-korean-encoding-table-fixes.patch - Added XFree86-4.2.99.2-20021209-cvs-update.patch to further update to latest CVS as David checked in a lot more stuff - Removed patches included upstream now: XFree86-4.2.99.2-more-lib64-fixes.patch XFree86-4.2.99.2-disable-DRI-on-s390-by-default.patch, XFree86-4.2.99.2-x86_64-has-SSE-MMX-3DNOW.patch * Mon Dec 9 2002 Mike A. Harris 4.2.99.2-0.20021208.1 - Updated XFree86-4.2.99.2-redhat-custom-startup.patch to handle bug (#77930) - Added XFree86-4.2.99.2-alpha-domain.patch to fix PCI domains on alpha, and re-enabled building on alpha. - Removed with_ttmkfdir conditional, all ttmkfdir sources/patches and building * Sun Dec 8 2002 Mike A. Harris 4.2.99.2-0.20021208.0 - Updated CVS snapshot to 20021208, dropped unneeded patches * Fri Dec 6 2002 Mike A. Harris 4.2.99.2-0.20021126.10 - Fixed XFree86-4.2.99.2-mkfontdir-perms.patch to correctly chmod 0644 (#79119) - Added XFree86-4.2.99.2-xkb-gb-backslash-and-bar.patch to fix missing backslash/vertical bar keys on gb keyboard * Thu Dec 5 2002 Mike A. Harris 4.2.99.2-0.20021126.9 - Enabled StaticNeedsPicForShared YES in host.def for x86. xfree86.cf defaults to YES for all archs except x86, which causes problems linking X .a only libs into KDE/GNOME .so libs and other problems like libxkbfile.a in (#78188) - Disabled older temporary hack XFree86-4.1-xinerama.patch to see if it is needed * Wed Dec 4 2002 Mike A. Harris 4.2.99.2-0.20021126.8 - Get rid of xtrap-clients and cursors subpackages, incorporating them into main XFree86 package and adding an Obsoletes tag for them - Added missing syriac-fonts post/postun scripts - Added XFree86-4.2.99.2-omGeneric-stop-app-crashes.patch to fix problems with apps crashing, due to some bad juju recently checked into upstream CVS * Wed Dec 4 2002 Mike A. Harris 4.2.99.2-0.20021126.7 - REALLY fix VT switch this time by making patch20007 apply as 20007 and not as 20006 doofus * Wed Dec 4 2002 Mike A. Harris 4.2.99.2-0.20021126.6 - Added XFree86-4.2.99.2-TEMPORARY-fix-for-broken-vt-switching.patch to fix broken VT switching, CTRL-ALT-BS, etc... * Tue Dec 3 2002 Mike A. Harris 4.2.99.2-0.20021126.5 - Re-enabled the old manual stripping policy and disabled rpm stripping as it has shown to not strip everything that needs to be stripped. - Added -fPIC to global compiler options for x86_64, as static libs need to be built with -fPIC to be linked into shared libs * Fri Nov 29 2002 Mike A. Harris 4.2.99.2-0.20021126.3 - Added XFree86-4.2.99.2-fix-CppCmd-path.patch to change the location X looks for cpp from /lib/cpp to /usr/bin/cpp * Thu Nov 28 2002 Mike A. Harris 4.2.99.2-0.20021126.2 - Added "-fno-strength-reduce GccAliasingArgs" to x86 and x86_64 default optimization flags, and "GccAliasingArgs" to default alpha and ppc flags, since we override XFree86 defaults, and they include these optimizations. * Wed Nov 27 2002 Mike A. Harris 4.2.99.2-0.20021126.1axp - Add XFree86-4.2.99.2-missing-carriage-return-before-endif.patch to fix Alpha build failure in axpPci.c due to one backspace too many... - XFree86-4.2.99.2-build-fixes-for-alpha.patch * Tue Nov 26 2002 Mike A. Harris 4.2.99.2-0.20021126.1 - Woohoo! We now let rpm strip the XFree86 build as it no longer fries X modules - Added "BuildRequires: rpm >= 4.0.4" for safe rpm stripping, as older versions of rpm will strip XFree86 modules and make them unloadable - Added new _x11localedir macro, did search and replace cleanup - _includedir cleanup - Got rid of the Imake defines (BuildXinerama, BuildXineramaLibrary, BuildXF86DGA, BuildXF86DRI) from host.def, as they should be set properly in stock XFree86 configs, and if not, patched and sent upstream - Remove ancient BuildTdfx option that has not been used/needed for ages * Tue Nov 26 2002 Mike A. Harris 4.2.99.2-0.20021126.0 - Update CVS snapshot to 20021126 - Removed patches that are now upstream: XFree86-4.2.99.2-redhat-xdm-pam.patch XFree86-4.2.0-xkb-french-canadian.patch, XFree86-4.2.0-xkb-is.patch, XFree86-4.2.0-manpage-document-nomtrr-option.patch, XFree86-4.2.0-im-clientmessage-crash.patch * Mon Nov 25 2002 Mike A. Harris 4.2.99.2-0.20021122.4 - Test build * Sat Nov 23 2002 Mike A. Harris 4.2.99.2-0.20021122.3 - Test brp-compress out to see if we need to override it still * Sat Nov 23 2002 Mike A. Harris 4.2.99.2-0.20021122.2 - Added XFree86-4.2.99.2-neomagic-2160-disable-broken-accel-for-bug55587.patch to try to resolve bug (#55587) - Added XFree86-4.2.99.2-disable-DRI-on-s390-by-default.patch to disable DRI on s390 and s390x by default as X was defaulting to DRI=YES and s390 has no video hardware. - Added XFree86-4.2.99.2-x86_64-has-SSE-MMX-3DNOW.patch to enable SSE/MMX/3DNOW on x86_64 by default - Added XFree86-4.2.99.2-more-lib64-fixes.patch to cleanup Imake lib64ness - Modified strip section to call strip once for strip-debug, and once for strip -R .comment, as aparently calling them together does not do what I expected it to do. Thanks to Michael Fratoni for pointing this out. * Sat Nov 23 2002 Mike A. Harris 4.2.99.2-0.20021122.1 - Reordered more patches to sections 10000/20000, and minor housekeeping - Removed BuildRequires on pam header file, and replaced with pam-devel - Removed XFree86-4.0.3-xaw-asciisink.patch, as a different solution was put into upstream sources * Sat Nov 23 2002 Mike A. Harris 4.2.99.2-0.20021122.0 - Updated CVS snapshot to 20021122 - Updated XFree86-4.2.99.2-redhat-custom-modelines.patch as extramodes changed - Removed Alan Cox's input drivers, as they're included upstream now - Removed patches that are now included upstream: XFree86-4.2.0-minor-typo.patch, XFree86-4.2.0-hostname-stderr-fix.patch, XFree86-4.2.99.2-rename-Katmai-to-SSE.patch XFree86-4.2.99.2-new-alan-cox-input-drivers.patch, XFree86-4.2.99.2-Imake-lib64-fixups.patch XFree86-4.2.99.2-ati-r128-ppc-dri-buildfix.patch, XFree86-4.2.0-bad-mmap-check.patch XFree86-4.2.99.2-FontconfigFontsConfDir.patch, XFree86-4.2.99.2-Imakefile-fontconfig-build-dir-fixup.patch - Removed XFree86-4.1.0-ppc-compiler-workaround.patch, we are building with gcc 3.2 now, so this hack for older gcc 2.96 on ppc is not needed anymore - Submitted many of the remaining patches upstream in hopes they will be applied soon, and we can drop many more of them - Re-ordered the patch section a bit, removed dead patches that were still being included but not applied. Made 2 new sections for patches - range 10000 is for Red Hat custom patches that are specific to Red Hat Linux, and which are not particularly relevant for upstream or other distros, and a second section for patches which are certified ugly hacks, but needed, and possibly refused by upstream (with commented reason hopefully). - Added new gtf utility and manpage to main package for calculating new VESA GTF (General Timing Formula) modelines for creating new video modes * Sat Nov 23 2002 Mike A. Harris 4.2.99.2-0.20021110.11 - Added BuildRequires: expat-devel (#78422) - Removed s390 FreeType patch, as Than says it is no longer needed. * Fri Nov 22 2002 Mike A. Harris 4.2.99.2-0.20021110.10 - Conditionalized with_sdk to exclude it on s390 - Do not build/include mmapr and mmapw on s390 and ppc platforms - Conditionalized inclusion of libxrx and disabled it as it is a Netscape plugin aparently, and a potentially serious security risk, and upstream recommends not to ship it. * Thu Nov 21 2002 Mike A. Harris 4.2.99.2-0.20021110.9 - Disable ati-r128-vtswitch-fix-busmaster-enable patch to see if the problem still exists or not. - Explicitly list each .a and .so library in the -devel package, so that unwanted libs that show up due to XFree86 Imake bugs do not get packaged. If RPM is configured with _unpackaged_files_terminate_build == 1, these types of errors can get picked up and fixed before becoming a problem. - Updated fontconfig-devel BuildRequires dependancy to version 2.1 * Thu Nov 21 2002 Mike A. Harris 4.2.99.2-0.20021110.8 - Disabled xf86config, as it is ancient, and unneeded. Our supported config tool is redhat-config-xfree86 now, and we want people using it, testing it, reporting bugs and feature requests to us in bugzilla. - Re-enabled input drivers from Alan Cox - Moved pkgconfig files, from _x11libdir to _libdir (#77815,77858) - Changed host.def to use HasFontconfig instead of UseFontconfig - Added XFree86-4.2.99.2-Imakefile-fontconfig-build-dir-fixup.patch to fix a bug in xc/lib/Imakefile which caused "make clean" to fail during build time when HasFontconfig is defined. The problem is due to the FontconfigLibDir being added to $SUBDIRS always, and all targets seeing it and barfing when it is /usr/lib. I changed it to FONTCONFIGBUILDDIR instead, which only gets defined when HasFontconfig is not defined. - Changed default cursor theme to whiteglass so that more people include with graphic art abilities see the graphic glitches and maybe one of them will fix the broken whiteglass theme - Added XFree86-4.2.99.2-FontconfigFontsConfDir.patch to rename conflicting namespace in Imakefile - Re-enabled the Imake-lib64-fixups patch for proper building on x86_64 * Fri Nov 15 2002 Mike A. Harris 4.2.99.2-0.20021110.7 - Enabled kernel DRM check to ensure user has a Red Hat rawhide kernel installed which supplies the version of DRM that is required for proper operation of DRI. - Added rename-Katmai-to-SSE patch to rename the HasKatmaiSupport Imake define to be more correct as to what it is really doing. * Tue Nov 12 2002 Mike A. Harris 4.2.99.2-0.20021110.6 - Added XFree86-4.1.0-ia64-vgaHW-memory-barrier2.patch which adds memory barriers to the vgaHW functions to guarantee memory ordering. This resolves MCAs on ia64 and possibly other platforms - Added memory barriers to nv driver in nv-ia64-memory-barrier.patch to solve HP Itanium 2 machine checks * Tue Nov 12 2002 Mike A. Harris 4.2.99.2-0.20021110.5 - Added patch to fix Imake related lib64 issue on Hammer where any library chosen with HasSomelib results in Imake looking in /usr/lib rather than in /usr/LibDirName - XFree86-4.2.99.2-Imake-lib64-fixups.patch * Tue Nov 12 2002 Mike A. Harris 4.2.99.2-0.20021110.4 - Removed glFrustum-fixie patch as it is unneeded in CVS X - Removed various other patches that are no longer needed, were not being applied, but were still being included in spec file - Updated redhat-custom-startup.patch to apply cleanly to 4.2.99.2 - Enabled HasFontconfig in host.def (duh duh duh) * Mon Nov 11 2002 Mike A. Harris 4.2.99.2-0.20021110.3 - Specfile cleanups. Removed stuff custom to my local environment that is now unneeded, and fixed some build issues. * Sun Nov 10 2002 Mike A. Harris 4.2.99.2-0.20021110.2 - Simplified the XFree86-75dpi-fonts and XFree86-100dpi-fonts file lists by using %%exclude globs instead of individually listing a billion oddball globs, in order to shrink specfile, and improve maintainability. - Reordered the files lists to be closer to package alphabetical order * Sun Nov 10 2002 Mike A. Harris 4.2.99.2-0.20021110.1 - Added new __fccache macro for running fc-cache if it exists when installing or uninstalling font packages. Added __fccache to all font packages post/postun scripts. (#77542) - Conditionalized the new inb, inl, etc. commands to only be included on architectures that they build and work for. * Sun Nov 10 2002 Mike A. Harris 4.2.99.2-0.20021110.0 - Updated CVS snapshot to Nov 10th - Added new inb, inl, inw, ioport, outb, outl, outw commands to SDK subpackage as they are potentially useful for driver development on architectures that they work on. - Added ownership of _x11includedir dir to XFrere86-devel package * Fri Nov 8 2002 Mike A. Harris 4.2.99.2-0.20021105.2 - Updated various Requires lines in subpackages that specified a dep on another XFree86 subpackage to require the same ver-rel instead of just ver. - Reorganized font subpackages %%description near the %%package definition - Made font subpackage inclusion conditional with the macro with_fonts with hopes to build the fonts in a separate noarch src.rpm in the future instead of being part of the XFree86 build process. (untested yet) - Fixed bad Conflicts line missing a <= in XFree86-libs-data * Thu Nov 7 2002 Mike A. Harris 4.2.99.2-0.20021105.1 - Enabled the restest Xresource client - Disabled experimental building of kdrive/TinyX - Created new XFree86-libs-data subpackage to hold architecture independent data files including locale/compose datafiles, XErrorsDb, rgb.txt and other files that should be installed with the X libraries, and not require the main XFree86 package to be installed. * Tue Nov 5 2002 Mike A. Harris 4.2.99.2-0.20021105.0 - Updated CVS snapshot to Nov 5th - Includes bug fix for i830/i845 hardware/software cursor issue (#76772,77213) * Mon Nov 4 2002 Mike A. Harris 4.2.99.2-0.20021101.6 - Changed all occurances of /usr/X11R6/lib in all pre/post/postun/trigger/etc. scripts to use either _x11libdir or _x11datadir, whichever is appropriate, so that things work properly on x86_64 and other lib64 archs - Replaced all occurances of {_x11datadir}/X11/fonts with {_x11fontdir} * Sat Nov 2 2002 Mike A. Harris 4.2.99.2-0.20021101.5 - Removed Xterm3D from specfile. There are enough terminal emulators in the distribution already. xterm3D causes build dep loops, and is something that is more suited to its own RPM package IMHO. - Added conditionalized Obsoletes: XFree86-xf86cfg - Added XFree86-4.2.0-bad-mmap-check.patch to fix (#71783) * Sat Nov 2 2002 Mike A. Harris 4.2.99.2-0.20021101.4 - Changed SDK to use a filelist instead, and added code to %%install to generate the filelist.sdk. Hopefully this will work on all arches now. - Added XFree86-4.2.99.2-ati-r128-ppc-dri-buildfix.patch to fix build problem on PPC when DRI is not being built in. * Sat Nov 2 2002 Mike A. Harris 4.2.99.2-0.20021101.2 - Updated XFree86-sdk package to use _x11libdir instead of _x11datadir as the sdk gets installed to /usr/%{_lib} which is lib64 on Hammer. * Fri Nov 1 2002 Mike A. Harris 4.2.99.2-0.20021101.1 - Updated CVS snapshot, includes DRI CVS merge with Radeon 8500 3D support, various RandR and Xcursor fixes. Note: You need to compile DRM by hand from XFree86 CVS for DRI to work, and no I wont help, I am busy. Mailing lists exist for people who need help compiling DRM kernel modules. - Cleaned up cursors subpackage and added handheld cursors * Wed Oct 23 2002 Mike A. Harris 4.2.99.2-0.20021023.2 - Added files to sdk filelist. Probably a lot of them can be commented out as they dont really suit the purpose the subpackage is being added, but I have included them anyway for now. * Wed Oct 23 2002 Mike A. Harris 4.2.99.2-0.20021023.0 - Updated CVS snapshot to 4.2.99.2 * Tue Oct 22 2002 Mike A. Harris 4.2.99.1-0.20021018.6 - Added new XFree86-sdk subpackage in order to allow X driver modules to be compiled in separate subpackages, and to facilitate driver development outside of a fully installed XFree86 source code tree. - Fixed broken geode driver Imakefile SDK installation code * Sat Oct 19 2002 Mike A. Harris 4.2.99.1-0.20021018.5 - Disabled kdrive on ia64 also, as it fails to build (dunno why because the buildsystem deleted the log). No biggie as I doubt we will see ia64 based PDAs anytime soon. * Fri Oct 18 2002 Mike A. Harris 4.2.99.1-0.20021018.4 - Completed the with_kdrive conditional build stuff. TinyX kdrive etc. X servers can now be optionally enabled to be built. WARNING: Note that this is not something which will be officially included or supported in Red Hat Linux, but rather it is intended solely for my own experimentation with kdrive. Do not use this thinking or expecting that it will be enabled in official packages. No guarantees, you have been warned. Have fun with it for now, while I have it enabled anyway. - Disabled the kdrive option on x86_64 and ppc because gcc exhibits an ICE when building XIgsServer on x86_64, and the build fails on XIgsServer due to a source bug it appears when building on ppc - Added XFree86-4.2.99.1-kdrive-posix-sigaction.patch to fix sigaction issue in kdrive - sa_restore is obsolete and should not be used, POSIX does not require it, and it causes the build to fail on alpha. - Disable kdrive build on alpha, due to build failures * Fri Oct 18 2002 Mike A. Harris 4.2.99.1-0.20021018.1 - Updated file lists to conditionally include all freetype2 related files in the appropriate subpackages when with_freetype2 is defined * Fri Oct 18 2002 Mike A. Harris 4.2.99.1-0.20021018.0 - Updated CVS snapshot to the latest bits - Removed patches that are included in CVS code now: XFree86-4.2.1-xshm-header-file-fix.patch, XFree86-4.2.99.1-drm-device-dir-perms.patch * Thu Oct 17 2002 Mike A. Harris 4.2.99.1-0.20021014.4 - Added Provides/Obsoletes for Xft/Xft-devel for obsolesense and compatibility * Tue Oct 15 2002 Mike A. Harris 4.2.99.1-0.20021014.3 - Added new manpages for bdftruncate, cleanlinks, mergelib, mkhtmlindex, ucs2any - Added mmapw binary * Tue Oct 15 2002 Mike A. Harris 4.2.99.1-0.20021014.2 - Excluded fontconfig development files in the XFree86-devel subpackage when with_fontconfig is not defined, by using the rare rpm 'exclude' directive, both so that it does not conflict with existing fontconfig libs, and also to make people wonder what the exclude directive is and cause confusion and world unrest, just because. * Tue Oct 15 2002 Mike A. Harris 4.2.99.1-0.20021014.1 - Added xc/programs/Xserver/hw/xfree86/CHANGELOG doc flagged to main XFree86 subpackage, so people can find the developmental CHANGELOG without installing the source code * Mon Oct 14 2002 Mike A. Harris 4.2.99.1-0.20021014.0 - Updated CVS snapshot to 2002-10-14, which includes xfs updates and cleanups, APM suspend fixes, Radeon crash freeze fix, RandR extension updated to support refresh rate changes. - Made XFree86-libs subpackage Obsolete: Xft (#75932) - Fixed XFree86CVSDate in spec file to be correct. Doh! - Disabled xkb-fix-deadkey-quotedbl-us_intl patch as one hunk fails, and it looks like CVS includes these changes already. I really wish people would file these type of change requests upstream FIRST so I do not have to maintain separate fork of them. - Removed XFree86-4.2.0-xfs-syslog.patch, XFree86-4.2.0-sane-deadacc.patch, XFree86-4.2.1-lbxproxy-SEGV-fix.patch, XFree86-4.2.1-vidmode-manpage-fixes.diff, as they are included in CVS now. - Updated drm-device-dir-perms.patch, xtt.patch, Wacom patch to account for changes in CVS update, and cleaned up patches a bit. - Wrapped %%clean section of specfile with auto_mharris_mode check, so that the BUILD_ROOT files get left behind for me for doing rpmfilediff to check for new files. - Removed .pl filename extensions from ucs2bdf.pl and bdftruncate.pl in file lists, to match the newly generated filenames. * Sat Oct 12 2002 Mike A. Harris 4.2.99.1-0.20021012.0 - Updated CVS snapshot to 20021012 - Added changelog entries below for CVS updates. ;o) - Added /usr/X11R6/bin/xft-config to -devel pkg - Made -libs package own the dirs _x11libdir, and _x11datadir - Fixes and improvements for the en_US.UTF8 compose rules, and for some dead accents for iso8859-1 and iso8859-15 (Alexandre Oliva). - Fix 24bpp displays with the fbdev driver when not using shadowfb - New "kbd" keyboard driver module which will eventually replace the built in "keyboard" driver. - New Natsemi geode video driver from Alan Hourihane * Thu Oct 10 2002 Mike A. Harris 4.2.99.1-0.20021008.8 - Made specfile changes for x86_64 arch (AMD Hammer) for lib64 support, which involved adding a new macro _x11datadir and making all fonts, and other non executable data, etc. use the _x11datadir macro instead of _x11libdir. On x86/alpha/ia64/ppc _x11datadir and _x11libdir are the same, however on x86_64 architecture, _x11libdir=/usr/X11R6/lib64 and _x11datadir=/usr/X11R6/lib - The package currently builds on x86/x86_64/alpha/ia64/ppc. ppc64/s390/s390x to be tested soon, as will sparc/sparc64 if Tom Callaway gives it a shot. * Thu Oct 10 2002 Mike A. Harris 4.2.99.1-0.20021008.5 - Updated file lists for new files in CVS. Normally I would add details as to what new applications were added, but I am feeling lazy. Basically, mmapr, new xcursor stuffs, and a few other things. Blah blah blah. - Created new subpackage XFree86-cursors for the new truecolor antialiased, alpha blended, animated, themeable mouse pointers in XFree86. Go Keith go! - Created new subpackage XFree86-syriac-fonts for the new Syriac fonts. - Made various updates to _x11foodir macro usage throughout the specfile * Wed Oct 9 2002 Mike A. Harris 4.2.99.1-0.20021008.0 - Forked XFree86.spec and updated XFree86 to CVS snapshot from head of CVS dated 20021008 - Removed all patches from specfile which are now present in CVS, or otherwise made irrelevant. There are still various patches disabled which are not yet known if they are needed or not, and might need porting work. * Tue Oct 8 2002 Mike A. Harris 4.2.1-8 - Updated Patch0 to current xf-4_2-branch, picking up a few security fixes and bugfixes, in particular for MIT-SHM, xdm - Removed XFree86-4.0.3-xaw-freed-mem-deref.patch now as it _finally_ is in XFree86.org sources. ;o) - Removed XFree86-4.2.0-xdm-pam-conv-and-realloc.patch - it is integrated now * Mon Oct 7 2002 Mike A. Harris 4.2.1-7 - Various architectural cleanups for all-arch build * Wed Sep 18 2002 Mike A. Harris 4.2.1-6.2 - Added new input drivers from Alan Cox for "Fujitsu stylistic", Palmax PD1000/PD1100 Input driver, Union Reality UR-98 head tracker * Wed Sep 18 2002 Mike A. Harris 4.2.1-6.1 - Added new Cyrix driver 0.2 from Alan Cox, which fixes (#72297) * Sat Sep 14 2002 Mike A. Harris 4.2.1-6 - Updated savage driver to the upstream maintainer Tim Roberts new 1.1.25t version which solves various savage driver problems, which are fully documented at http://www.probo.com/timr/savage40.html (#71973) * Wed Sep 11 2002 Mike A. Harris 4.2.1-5.1 - Disabled DRI on ppc at streeters request * Wed Sep 11 2002 Mike A. Harris 4.2.1-5 - Added XFree86-4.2.1-lbxproxy-SEGV-fix.patch from Debian to fix a SEGV in lbxproxy - Added XFree86-4.2.1-xshm-header-file-fix.patch from Debian - Added XFree86-4.2.1-vidmode-manpage-fixes.diff from Debian * Tue Sep 10 2002 Mike A. Harris 4.2.1-4 - Added ati-r128-dri-dga and ati-radeon-dri-dga patches to fix bugs in the Radeon and Rage 128 drivers which cause crashes while using VMware with DGA when DRI is enabled (#73678) - Fix up ttmkfdir to look for freetype in _libdir for AMD Hammer * Sun Sep 8 2002 Mike A. Harris 4.2.1-3.3 - Remove scanpci, pcitweak from ppc/ppc64 builds * Sun Sep 8 2002 Mike A. Harris 4.2.1-3.2 - (x86_64) Added Imake define to point Freetype2LibDir to _libdir * Sat Sep 7 2002 Mike A. Harris 4.2.1-3 - Replaced the BuildRequires on Glide3 and Glide3-devel that was conditionalized for x86/alpha/ia64 with some new shell script code in the prep section to ensure Glide3 is installed on the build system since some rpm based software freaks out with conditional BuildRequires, and I am a nice guy. * Sat Sep 7 2002 Mike A. Harris 4.2.1-2 - Did a search and replace on specfile to convert all locations of the X11 font directory to _x11fontdir, /usr/X11R6/bin -> _x11bindir, and similar for _x11mandir, etc. throughout the specfile * Sat Sep 7 2002 Mike A. Harris 4.2.1-1 - Updated XFree86 to version 4.2.1. This does not bring us anything new since 4.2.1 is merely 4.2.0 stable branch (which our 4.2.0 was already tracking all along) plus the latest X security patch, which 4.2.0-72 contains. This release is merely a cosmetic update to official 4.2.1 in order to quell all of the "Why doesnt Red Hat have 4.2.1" questions that are sure to abound. - Removed patches present in 4.2.1: XFree86-4.2.0-vesa-xf86SetDpi-fix.patch, XFree86-4.0.3-xaw-readtext.patch, XFree86-4.1.0-time-wraparound.patch, XFree86-4.2.0-mitshm.patch, XFree86-4.2.0-xkb-us_intl-missing-commas.patch, XFree86-4.2.0-overlay-crash.patch * Thu Sep 5 2002 Owen Taylor - Fix zh_TW-xcinNEW patch which lost a couple of things in the merge with the XLOCALEDIR patch * Tue Sep 3 2002 Mike A. Harris 4.2.0-71 - Added xlib-security-fix-XLOCALEDIR to fix a security vulnerability in Xlib i18n code new to 4.2.0. 4.1.0 and earlier is not susceptible. - XFree86.org has tagged a new release of XFree86 4.2.1 in CVS for this issue. Red Hat current XFree86 4.2.0 is essentially 4.2.1 except for the cosmetic version number difference - Updated the zh_TW-xcin patch to zh_TW-xcinNEW which handles a code area that overlapped with the new security patch - Updated the _LP64 kludge patch on alpha/ia64 as it also overlapped the security patch * Sun Sep 1 2002 Mike A. Harris 4.2.0-70 - Updated custom startup log patch to fix a few glitches - Added -fPIC to x86_64 compiler flags until better solution is made in future - Added XFree86-4.2.0-libXrender-bugfix.patch to fix showstopper (#73243) * Thu Aug 29 2002 Mike A. Harris 4.2.0-69.1 - Added Obsoletes: XFree86-compat-libs to list of obsolete packages * Thu Aug 29 2002 Mike A. Harris 4.2.0-69 - Rebuild with a few patches disabled that errored out on me and will be fixed in future build * Thu Aug 29 2002 Mike A. Harris 4.2.0-68 - Pruned ia64 driver list based on unknown state of working order for these drivers on ia64 to minimalize support issues. As hardware becomes available for testing, and drivers can be verified to be mostly sane/working, they can be re-enabled on a driver by driver basis. - Added XFree86-4.2.0-im-clientmessage-crash.patch to fix CJK application crashing showstopper bug (#72236) * Mon Aug 26 2002 Mike A. Harris 4.2.0-67.6 - Actually properly enable the maxxfbmem patch from 4.2.0-67.5 this time - Fix unresolved symbols in SiS driver reported by Alan Cox * Sun Aug 25 2002 Mike A. Harris 4.2.0-67.5 - Changed buildsys autodetect to use new beehive mechanism (#71055) - Added kernel version string to X server startup messages for easier debugging - Fixed SiS hardware cursor (hopefully) with XFree86-4.2.0-sis-cursor.patch - Fixed SiS maxxfbmem driver comparison inversions * Thu Aug 22 2002 Mike A. Harris 4.2.0-67.1 - Cleaned up 3.3.6 server Obsoletes lines et al. to be more compact * Thu Aug 22 2002 Mike A. Harris 4.2.0-67 - Integrated PPC specfile changes - Enable DRI on ppc, but not ppc64 - PPC using gcc 2.96 autodetection and compiler flag tweaks, etc. - Added ppc64, s390x, x86_64 to conditionalized LP64 patch - PPC - build pcitweak, scanpci on ppc, ppc64 now * Mon Aug 19 2002 Mike A. Harris 4.2.0-66 - Added XFree86-4.2.0-elf-loader-empty-symbol-table.patch to fix gcc 3.2 related issue in the X ELF loader (#70576) - Re-enabled the Radeon DDA removal patch now that Null beta is released * Thu Aug 15 2002 Mike A. Harris 4.2.0-65 - Due to a kernel bug breaking SuS compliance in the Alpha kernel, a change has been made to the install section so that fonts.dir, encodings.dir files are mode 644 before "touch" touches them. - Modified stripping policy at end of install section to strip all ELF executable files in the buildroot instead of just the ones found in /usr/bin and /usr/X11R6/bin. - Modified shared library stripping policy for all libs found in /usr/X11R6/lib, /usr/lib, and now also /usr/X11R6/lib/X11/locale/common. All .so.* libs are now stripped with "strip --strip-unneeded -R .comment" following the current RPM default for stripping shared libraries, and under the advice of Uli. - Note: XFree86 server modules are not stripped at all currently for safety. Once I determine what can be safely stripped, I will add stripping of the modules also. * Wed Aug 14 2002 Mike A. Harris 4.2.0-64 - Removed XIE and PEX5 documentation from XFree86-doc subpackage because both of these extensions are obsolete and not included anymore. - Temporarily disabled XFree86-4.2.0-ati-radeon-dda-removal.patch as it is untested, and I dont want to destabilize. Will re-enable for testing soon. * Tue Aug 13 2002 Mike A. Harris 4.2.0-63.1 - Added XFree86-4.2.0-ati-radeon-dda-removal.patch which removes the DDA code from the radeon driver which was leftovers from the r128 driver and aparently causes 1400x1050 and other modes to cause an FPE on some radeon boards in some refresh rates (#63593) - Explicitly delete unshipped files from RPM_BUILD_ROOT at end of install section in order to pass RPMs new unpackaged_files_terminate_build option - Moved around some file removals to the new DELETE section of specfile * Mon Aug 12 2002 Mike A. Harris 4.2.0-63 - Added XFree86-4.2.0-ati-mach64-dsp-rounding-error.patch to fix a rounding error in Mach64 DSP calculation - Added XFree86-4.2.0-ati-radeon-missing-commas.patch which fixes a missing comma issue in a struct in radeon_driver.c - Bumped spec file release from 60.4 to 63 due to someone elses package release number conflicting. * Thu Aug 8 2002 Mike A. Harris 4.2.0-60.4 - Fixed an xdm SEGV bug in verify.c which could be occasionally triggered, due to malloc() allocated memory not being zeroed out. Also fixed a bad realloc() call that assumed the reallocated block of memory would be in the same location every time - fixes bug (#40729) * Wed Aug 7 2002 Mike A. Harris 4.2.0-60.3 - Added XFree86-4.2.0-sane-deadacc.patch to fix dead diareisis problem reported by aoliva in bug (#71014) * Tue Aug 6 2002 Mike A. Harris 4.2.0-60.2 - Disabled the ugly 1980 style ancient UNIX ugly ugly X server startup stipple pattern. * Mon Aug 5 2002 Mike A. Harris 4.2.0-60.1 - Added XFree86-4.2.0-locale-alias-utf8-euro.patch to workaround bug in fi_FI.UTF-8@euro and pt_PT.UTF-8@euro locales (#67914) - Added XFree86-4.2.0-i810-vtswitch-sync-fix.patch to fix i810 VTswitch lockup problem - BLOCKER bug (#66187,#53231) * Mon Aug 5 2002 Mike A. Harris 4.2.0-60 - Removed /usr/share/fonts/default/TrueType from default xfs config file in order to fix BLOCKER bug (#68126,#70178) - Made X resource extension off by default for official builds, due to irrational ABI compatibility concerns. People wanting to use it can easily rebuild X from rpm after setting the define with_Xresource_extension to 1. * Sat Aug 3 2002 Mike A. Harris 4.2.0-59.2 - Added restest dumb sample client to use the new Xres extension - Conditionalized spec file inclusion of Xres and the sample client * Sat Aug 3 2002 Mike A. Harris 4.2.0-59.1 - Bugfix to dixsym.c for the Xres extension from yesterday. * Fri Aug 2 2002 Mike A. Harris 4.2.0-59 - Backported the new X-resource extension from XFree86 head CVS, which allows internal X server resource statistics, etc. to be queried by client applications. This can aide in debugging client related pixmap leakage, and a variety of other various resource related problems/bugs in both client applications, as well as the X server itself. * Wed Jul 31 2002 Mike A. Harris 4.2.0-58.1 - Disabled ParallelBuild on s390 upon request of pknirsch * Tue Jul 30 2002 Mike A. Harris 4.2.0-58 - Added support to the Radeon driver CP engine to perform accelerated color expansion and image writes. The CP engine is used when DRI is enabled. XFree86-4.2.0-ati-radeon-cp-colorexpansion-imagewrite-enhancement.patch * Fri Jul 26 2002 Mike A. Harris 4.2.0-57.1 - Removed the following paths from the default xfs config file as we do not ship fonts in these directories by default or they dont belong in the default config: /usr/X11R6/lib/X11/fonts/CID, /usr/X11R6/lib/X11/fonts/local, /usr/X11R6/lib/X11/fonts/latin2/Type1, /usr/share/AbiSuite/fonts (#68126) * Fri Jul 26 2002 Mike A. Harris 4.2.0-57 - Added XFree86-4.2.0-ati-r128-vtswitch-fix-busmaster-enable.patch to fix the exact same bug in the r128 driver as was just fixed in the radeon driver in 4.2.0-56. (#62442,#65136) * Fri Jul 26 2002 Mike A. Harris 4.2.0-56 - Added XFree86-4.2.0-libICE-remove-stupid-delay.patch to remove stupid 5 second delays from libICE (#66751) - Added XFree86-4.2.0-ati-radeon-vtswitch-fix-busmaster-enable.patch to fix lockups reported in XFree86 4.2.0 for a long time now by users of ATI Radeon cards with certain hardware combinations. (#62171,#65330) * Wed Jul 24 2002 Mike A. Harris 4.2.0-55.2 - Added -f flag to hostname command to attempt to fix Custom build - Added fix for SysRq / Print Screen: XFree86-4.2.0-sysreq.patch (#69743) * Tue Jul 23 2002 Mike A. Harris 4.2.0-55.1 - Made all instances of "rm" in spec file "rm -f" in order to force removal of the file without prompting. Reported by a few people that rebuilding X caused it to hang while compiling on an "rm" command. (#69713) - Added XFree86-4.2.0-manpage-document-nomtrr-option.patch to document Option "NoMTRR" in the XF86Config manpage. * Mon Jul 22 2002 Mike A. Harris 4.2.0-55 - Added ati-rage-xl-pci-spec-cleanup patch to fix ATI Rage XL PCI spec violations (#69291) Replaces previous patch for IBM/Dell/others from Feb 28, 2002 (#58188) * Mon Jul 22 2002 Tim Powers 4.2.0-54 - rebuild using gcc-3.2-0.1 * Sat Jul 20 2002 Mike A. Harris 4.2.0-53.1 - Redirect stderr+stdout of hostname command in xon script to prevent stderr from being displayed ot user (#67323) - Corrected incorrect filepath in XftConfig-README-OBSOLETE file (#68632,#69104) * Thu Jul 18 2002 Mike A. Harris 4.2.0-53 - Previous ia64/alpha fix from Jul 08 removed the Xft1 patch, and made the ia64/alpha patch apply on all architectures. Fixed. - Added XFree86-4.2.0-overlay-crash.patch to fix bug (#68516) - Added patch for module loader from Bill Nottingham for gcc 3.1 on ia64 - Add patch to enable/disable DMA for Xv on r128 (#64503,#68058,#68668) * Mon Jul 08 2002 Elliot Lee 4.2.0-52.01 - Fix duplicate application of patch4201 on ia64/alpha - Remove ExcludeArch: alpha ia64 * Tue Jun 25 2002 Mike A. Harris 4.2.0-52 - Reordered the spec install section so that Xft1 .so gets deleted after it the code which generates the .so devel symlinks - Fixed libXft.so.1 to point to libXft.so.1.2 instead of 1.1, and made sure the files are explicitly listed in the files section. * Sun Jun 23 2002 Mike A. Harris 4.2.0-51 - Added Obsoletes lines for remaining 3.3.6 servers that were not previously obsoleted from the olden days. - Really made Xft headers excluded this time * Sun Jun 23 2002 Mike A. Harris 4.2.0-50.24 - Assimilated mkxauth into the XFree86-xauth package, and added Obsoletes and Provides entries for it. - Removed Xft headers when new Xft1 is used, as Xft2 now provides the Xft headers instead. * Fri Jun 21 2002 Mike A. Harris 4.2.0-50.23 - Replaced libXft with the new Xft1 from XFree86 CVS which is completely compatible, however uses fontconfig instead of XftConfig. This has been conditionalized so that it can be disabled for builds for RHL 7.3 et al. The new libXft is Xft 1.2 whereas the stock Xft is 1.1. The new lib should be binary compatible and source compatible. - xftcache conditionalized as well - replaced with fc-cache in fontconfig * Thu Jun 20 2002 Mike A. Harris 4.2.0-50.22 - Backported the Trident driver from CVS, picking up many Trident fixes from Alan Hourihane * Tue Jun 18 2002 Mike A. Harris 4.2.0-50.21 - Backported i810/i830 driver from CVS, adding 2D only i845 support - Removed i830m workaround for Dell c400 laptop as it did not work - Backported siliconmotion driver from CVS, picking up a few bugfixes - Conditionalized spec file using backup prefixes on patches * Mon Jun 17 2002 Mike A. Harris 4.2.0-50.20 - Backported i740 driver from CVS - i740-driver-update-cvs-20020617 - Renamed the radeon-mobility-LX patch to radeon-mobility-FireGL-7800 after determining the two are one and the same card. - Added mkfontscale from XFree86 CVS so we can begin moving away from ttmkfdir and towards mkfontscale which is going to be better in the long run. - Conditionalized inclusion of XftConfig file and Xft/Xrender libraries, so they can be disabled for builds using fontconfig (which replaces them). - Added new /etc/X11/XftConfig-README-OBSOLETE file to explain wht it is no longer there. * Mon Jun 17 2002 Mike A. Harris 4.2.0-50.19 - Reorganized patch section, moved all video driver patches into an alphabetically sorted driver patch section, and renumbered all patches to meet the new patch numbering scheme. - Backported cirrus driver from XFree86 CVS (4.2.99.1) * Fri Jun 14 2002 Mike A. Harris 4.2.0-50.18 - Created XFree86-4.2.0-xman-manconf.patch to fix the xman man config file path for once and for all. Sent upstream so hopefully this will get merged into XFree86 4.3.0. - Conditionalized building xf86cfg, and disabled it by default, as we are moving to our new redhat-config-xfree86 tool for X configuration. - Backported apm driver from XFree86 CVS (4.2.99.1), DPMS support enhancements, and a few accel fixes. apm-driver-update-cvs-20020617 - Backported ark driver from XFree86 CVS (4.2.99.1) ark-driver-update-cvs-20020617 - Backported chips driver from XFree86 CVS (4.2.99.1), with hardware mouse cursor and 2D accleration fixes. * Wed Jun 12 2002 Mike A. Harris 4.2.0-50.17 - Added workaround for buggy laptop BIOSs (in particular the Dell Latitude C400) which use the Intel i830/i830m chipset, and limit the video memory to 1Mb of stolen system memory without making it configureable. This workaround addresses bugzilla bug (#65661) (Update: subsequently removed as it did not solve the problem.) - Removed currently unused Glide3Libver macro. * Tue Jun 11 2002 Mike A. Harris 4.2.0-50.16 - Fixed a bug in the VESA driver, where the X server would crash with an FPE due to a division by zero in miscreeninit() when the DisplaySize option was used in the config file. Inside xf86SetDpi(), pScrn->virtualX and pScrn->virtualY are used only when DisplaySize is given in the config file, however these struct members were not initialized properly in the vesa driver prior to xf86SetDpi() being called. Fixes bug (#66009) - Removed specfile BuildXwrapper conditional as XFree86 4.x does not need or use Xwrapper - it only existed for XFree86 3.3.6 in the past. - Removed specfile Build7x conditional as it was both poorly named, and the functionality it provided is no longer needed. * Mon Jun 10 2002 Mike A. Harris 4.2.0-50.15 - Added alpha-ia64-_LP64-fix to workaround issue in xc/lib/X11/XlcDL.c preventing X from building on alpha/ia64 with gcc 3.1. - Added 4 patches from Hewlett Packard for ia64 (XFree86-4.2.0-int10-hplso.diff, XFree86-4.2.0-pci-hplso.diff, XFree86-4.2.0-primpci-hplso.diff, XFree86-4.2.0-ps2-hplso.diff * Wed Jun 5 2002 Mike A. Harris 4.2.0-50.14 - Added explicit Requires: _x11bindir/xauth to XFree86 main package now that xauth is split out. * Mon Jun 3 2002 Mike A. Harris 4.2.0-50.13 - Update BuildPreReq: freetype-devel >= 2.0.6-3 * Thu May 30 2002 Mike A. Harris 4.2.0-50.12 - Disable debug mode in cirrus alpine driver - filling logfile (#65704) * Wed May 29 2002 Mike A. Harris 4.2.0-50.11 - Split out xauth into a separate subpackage so things like ssh do not require the entire dependancy chain of XFree86 be installed merely to use ssh or similar (#38409,62426) - Added neomagic-Xv-support (#63609) - Added fix for deadkey-quotedbl in ISO8859-15 (#50282) * Wed May 29 2002 Mike A. Harris 4.2.0-50.10 - Updated parallelmake-libfont Imake patch for more parallelism - Fixed nasty problem in post script for libGLU, and added postun scripts that call ldconfig for the 2 Mesa subpackages - Added remove-bitmap-scaler patch disabled by default pending testing, compatibility, etc. * Tue May 28 2002 Mike A. Harris 4.2.0-50.9 - Added rpm post scripts for XFree86-Mesa-libGL, XFree86-Mesa-libGLU that call ldconfig properly * Tue May 28 2002 Mike A. Harris 4.2.0-50.8 - Fixed defattr for new XFree86-Mesa-libGL* packages - Removed Requires: XFree86 dep from Mesa-libGL subpackage * Mon May 27 2002 Mike A. Harris 4.2.0-50.6 - Updated parallel make patch from H.J. Lu!!! - Split out libGL.so.* and libGLU.so.* into new subpackages XFree86-Mesa-libGL and XFree86-Mesa-libGLU as suggested by H.J. Lu (#65152) and other vendors - Moved _x11dir et al defines to top of spec file to ensure their definition precedes their usage. - Completely removed XFree86.spec support for building using an external Mesa instead of the one included with XFree86. * Fri May 24 2002 Mike A. Harris 4.2.0-50.1 - Changed stripping policy and fixed a redundancy in the spec stripping * Fri May 24 2002 Mike A. Harris 4.2.0-50 - Bumped release number to -50 and rebuilt in new build environment * Fri May 17 2002 Mike A. Harris 4.2.0-9.13 - Changed Xnest, Xvfb to be in group "User Interface/X" (#62820) - Added fix for glint driver for bug (#60895) * Fri May 17 2002 Mike A. Harris 4.2.0-9.12 - Fix for i810 Xv maximum video size (#53329) - Changed += to =+ on various entries in our default XftConfig as per (#64970) * Wed May 15 2002 Mike A. Harris 4.2.0-9.11 - Changed all chkfontpath calls in specfile post scripts to use :unscaled for all bitmap fonts, otherwise scaled bitmap fonts get used, and that really really sucks. Makes Windows users run fast back to Billy. - Disabled Radeon PCI DRI code, as it has been reported as not working by a user despite claims before by others that it works. - Fixed euro support for pl keymaps as per bug (#64559) - Added Requires: /lib/cpp to XFree86 package as xrdb requires /lib/cpp at runtime and will fail with an error if it is not present. - Added fix for Rage 128 DRI related bug ati-r128-indirectBuffer from Michal Daenzer. * Tue May 7 2002 Mike A. Harris 4.2.0-9.10 - Removed s390 patch 3000, and fixed up file lists for s390/s390x * Sat May 4 2002 Mike A. Harris 4.2.0-9.8 - Replaced /usr/lib throughout specfile with _libdir for compat with architectures which have /usr/lib and /usr/lib64. - Replaced /usr/X11R6 throughout specfile with _x11dir - part of a gradual move to implement RPMified variable ProjectRoot support for developmental parallel installation. - Added the following patches backported from XFree86 CVS for AMD x86_64 AMD-x86_64-elfloader, AMD-x86_64-imake, AMD-x86_64-compiler_h, AMD-x86_64-int10, AMD-x86_64-misc-small-fixes, AMD-x86_64-os-support * Sun Apr 27 2002 Mike A. Harris 4.2.0-9.0 - Added AMD x86-64 architecture (Hammer/Opteron) support to the Imake config files. * Wed Apr 24 2002 Mike A. Harris 4.2.0-8.1.beta - Changed BuildRequires to pam-devel instead of pam header file. - Reworked BuildXF86DRI portion of host.def to exclude DRI on PPC for now - Reworked Glide3 BuildRequires so that the CURRENT Glide3 packages are required instead of the mess of conditional code that was there. People who rebuild now require the rawhide Glide3. Hopefully they read my changelog messages. - Changed xfs postinstall script to conditionalize the login shell at runtime instead of at build time to help ensure that packages _built_ on a newer release will work on an older release. Also, /bin/nologin which was added in January - does not exist, it is /sbin/nologin. Fixed, and tested. - Added utempter to BuildRequires and Requires - BuildXterm3d macro causes a buildrequires loop, and needs to be set to "0" if bootstrapping XFree86 on a new architecture. Comment added. * Thu Apr 18 2002 Mike A. Harris 4.2.0-8 - Fixed bug in XFree86 post install script, renaming XF86Config-4 config file to .rpmsave, and preserving permissions of the file. (#63822) - Corrected perms on /dev/dri * Sat Apr 13 2002 Mike A. Harris 4.2.0-7 - Updated mitshm patch * Thu Apr 11 2002 Mike A. Harris 4.2.0-6.666 - Added code to XFree86 post install script to remove xie and pex5 module load lines from XF86Config-4 upon upgrade/install since XIE and PEX are no longer provided nor supported, and X will not start if those lines exist in the config file. (#63119) - Added fix for sessreg being broken with high UIDs due to open() being used to open a file larger than 32bit offsets can handle. (#42850,#63116) - Fixed startx ugliness issue with hostname command (#61278,63117) - Removed double ghost flag in truetype-fonts package - Removed config(noreplace) from Speedo fonts.dir (#63357,63735) - I went outside today, and the snow is almost completely gone! * Wed Apr 10 2002 Mike A. Harris 4.2.0-6.62 - Made specfile remove fonts.dir files generated by XFree86 build, and "touch" them instead so they satisfy the ghost flag. Also for the fonts.alias for the TTF directory. - Removed CID directory from list of dirs to run mkfontdir in and add to fontpath, because our XFree86 build is not including fonts in there anymore, so it should not add the dir to the fontpath, nor run mkfontdir in it. - Fixed bug in truetype-fonts subpackage which was adding cyrillic to fontpath instead of the TTF directory due to cut and paste error. - Audited all font subpackage file lists for accuracy, correcting various ghost/config/verify flags, adding missing ghosted fonts.alias, etc. files to the lists also, so the files are owned by the package if a user creates them. - Added ISO8859-15 locale aliases to locale.alias for en_US and en_GB (#62844) * Tue Apr 9 2002 Mike A. Harris 4.2.0-6.61 - Added patch to fix various ATI Radeon issues. Will fill in the details of what specifically is fixed after testing the fixes. VTswitch is one... * Mon Apr 8 2002 Mike A. Harris - Changed xf86cfg dep on Xconfigurator to /usr/X11R6/lib/X11/Cards * Fri Apr 5 2002 Mike A. Harris 4.2.0-6.60 - Added fix for Trident 9397 bug (#62119) * Mon Apr 1 2002 Mike A. Harris - Updated ttmkfdir-freetype2-port-plus-cjk-chocolaty-goodness.patch to build properly with gcc 3.x (Bero,Yu Shao) * Thu Mar 28 2002 Mike A. Harris 4.2.0-6.52 - Fixed Matrox G550 cursor on second head mga-g550-cursor patch - Created new support for Euro currency symbol for gb, hu, hu_US, pl, pl2, tr, us_intl keymaps based on http://www.microsoft.com/typography/faq/faq12.htm, also closing bugs (#56818, and a few others I need to track down in bugzilla) - Put fonts.alias back in misc fonts directory, it slipped out somehow. * Thu Mar 28 2002 Mike A. Harris 4.2.0-6.51 - Flagged encodings.dir, fonts.dir, fonts.scale files properly for the misc, Type1, and Speedo directories in base-fonts, and changed the file globs to match just the font files in order to fix bug (#59619) - Fixed similar issues to above in bug (#61940) - Added XFree86-4.2.0-sparc_pci_domains.patch for sparc support (#62037) - Fixed duplicate Slovak entries - MF bug (#61709) - Confirmed ulT1mo fonts work and closed - MF bug (#61694) and (#62036) * Wed Mar 27 2002 Mike A. Harris 4.2.0-6.50 - Added ko, zh_CN, zh_TW entries to XftConfig for bug (#61282) - Changed antialiasing on small fonts from "any size < 14" to "any size < 11" - Added gb18030-enc patch from Yu Shao - ttmkfdir ported to freetype2, plus misc enhancements for CJK * Sun Mar 17 2002 Mike A. Harris 4.2.0-6.48 - Moved GL include files into /usr/include/GL for compliance with defacto and possibly official standards due to user complaints. - Changed host.def to not symlink GL include dir into /usr/include * Thu Mar 14 2002 Mike A. Harris 4.2.0-6.47 - Updated package descriptions to not suck quite so bad, and not be so meaninglessly verbose as they have been for a while. We do not want to scare away Harry Homeowner. * Tue Mar 12 2002 Mike A. Harris 4.2.0-6.46 - Cleaned up xfs initscript to use simpler syntax, and fix a few issues * Sun Mar 10 2002 Mike A. Harris 4.2.0-6.45 - Added the /usr/X11R6/lib/X11/fonts/TTF dir to XftConfig (#60901) - Updated bugfix for (#60906) from Keith Packard - Built on all arches * Sun Mar 10 2002 Mike A. Harris 4.2.0-6.44 - Fixed up tdfx DRI disable patch for hires on voodoo3/banshee - Updated Glide3 dependancy, to pick up new Glide3 package with libs directly in /usr/lib, instead of in /usr/lib/glide3 * Thu Mar 7 2002 Mike A. Harris 4.2.0-6.42 - Added XFree86-4.2.0-mitshm.patch to fix security issue - Added fix for time wraparound bug (#60906) * Wed Mar 6 2002 Mike A. Harris 4.2.0-6.41 - Resolved some Brazillian and Icelandic keyboard issues (hopefully). * Mon Mar 4 2002 Mike A. Harris 4.2.0-6.40 - Added XFree86-4.2.0-xkb-is.patch to fix bug (#60594) - Moved all xkb symbol patches to section 800 - 819 - disabled tdfx font corruption patch * Thu Feb 28 2002 Mike A. Harris 4.2.0-6.39 - Added XFree86-4.2.0-ati-mach64-rage-XL.patch to fix problems reported on many Dell, IBM servers (#58188) - Fixed memleak in Xlib with XFree86-4.2.0-xlib-memleak.patch * Wed Feb 27 2002 Mike A. Harris 4.2.0-6.38 - Reorganized various fonts.dir, fonts.alias, encodings.dir files to try and fix some of the reported problems that have come up after various installations. All files are believed to be properly flaged with ghost, verify and config attributes now. * Tue Feb 26 2002 Mike A. Harris 4.2.0-6.37 - Fixed xfs initscript to use "reload" instead of "restart" for the condrestart option. * Sun Feb 24 2002 Mike A. Harris 4.2.0-6.36 - Fixed ghost/config flags on various fonts.dir, fonts.alias, encodings.dir files in file list section. - Fixed bug in truetype-fonts scripts which contained %%_ttmkfdir instead of just plain old ttmkfdir * Sat Feb 23 2002 Mike A. Harris 4.2.0-6.35 - Added specfile URL to http://www.xfree86.org - Rebuilt with new built toolchain in new environment * Mon Feb 11 2002 Mike A. Harris 4.2.0-6.34 - Enabled Radeon PCI pcigart support in radeon_dri.c and radeon_cp.c - Disabled the ugly black and white pattern that X starts up with by default with XFree86-4.2.0-die-ugly-pattern-die-die-die.patch - blue or something else will replace it in the future likely. * Mon Feb 11 2002 Mike A. Harris 4.2.0-6.33 - Ghosted encodings.dir files in 100dpi and 75dpi font subpackages - Modified XftConfig with some suggested changes from Keith Packard for better AA font support, by moving stuff around (#59192) - Added Luxi font aliases, etc. to XftConfig for bug (#59708) * Sat Feb 9 2002 Mike A. Harris 4.2.0-6.32 - Created support for ATI Radeon Mobility M7 (LX) and also updated the pcitable, and Cards databases, in the hwdata package also. - Removed the conditional BuildPrereq for pam-devel et al. and replaced it with /usr/include/security/pam_modules.h which will automatically do the right thing regardless of what distro release is being built for. * Fri Feb 8 2002 Mike A. Harris 4.2.0-6.31 - Drop XFree86-4.0.2-neomagic_swcursor.patch previously included for sony laptops using Neomagic 256XL+ (NM2380), and set the option to default to on in the Cards database instead. - Created sis-swcursor option patch - Created xkb-us_intl-missing-commas to fix bug (#59529) * Thu Feb 7 2002 Mike A. Harris 4.2.0-6.30 - Experimental patch to disable DRI on tdfx when an incompatible hires video mode is selected that is known to cause unstable behaviour. - Removed -e arguments from calls to mkfontdir in spec file as they appear to be unnecessary now. - Added XFree86-4.2.0-zh_TW-xcin.patch to fix xcin (Owen Taylor, Leon Ho) * Wed Feb 6 2002 Mike A. Harris 4.2.0-6.24 - First merge with upstream stable branch xf-4_2-branch-patch-2002-02-06 - Misc fixes: Fix startx script for ksh, temporary workaround for IA-64, fix SIGSEGV when printing modes that have no flags, fix an unresolved symbol in libGLU.so with gcc 3, revert the composite sync default to off in the ati driver. * Tue Feb 5 2002 Mike A. Harris 4.2.0-6.23 - Updated XFree86-4.2.0-gb18030-20020207.patch from Yu Shao - Added i810-dont-force-XvMC-on-DRI-users patch to fix bug in where i810 users must enable XvMC in addition to DRI in order for DRI to work. (#59318) - Added patch XFree86-4.2.0-FIRSTINDEX-breaks-ttmkfdir to remove FIRSTINDEX entries from large font encoding files as it makes ttmkfdir deep six. * Tue Feb 5 2002 Mike A. Harris 4.2.0-6.21 - Added XFree86-4.2.0-i810-dont-use-empty-for-loops-for-delays.patch which removes null for loops from the i810 driver and i810 and i830 kernel DRM drivers for Linux and BSD. The for loops were used as a timing delay, and are now replaced with "usleep(1);" instead. - Added ttmkfdir-CJK-bug-54087-fix and bugzilla-54087-fix-gbk-encoding patches to fix bug (#54087) - Fixed libGLU symlink screwup by changing from absolute to relative symlinks * Sun Feb 3 2002 Mike A. Harris 4.2.0-6.20 - NEW XFree86-truetype-fonts subpackage which includes the new Luxi fonts (formerly Lucidux) by Bigelow and Holmes. - Added /usr/lib/libGLU.so.* and /usr/lib/libGLU.so symlinks to the libGLU libraries included in XFree86 in the /usr/X11R6 directories for OpenGL standards compliance, and disabled the non-working Imake patch I made earlier to do the same. This is fairly CRITICAL as any OpenGL software which uses GLU, will fail to compile without the proper links. - Removed a bunch of leftover Glide3 specfile mess. - Removed ancient no longer necessary hardlink between xterm and nxterm * Sun Feb 3 2002 Mike A. Harris 4.2.0-6.15 - Created support for interlaced video modes on 3dfx Voodoo 3/4/5, with the enable-interlaced-modes patch. - Created tdfx-fix-vtswitch-font-corruption patch to try to fix the VGA font corruption that occurs on VT switch on Voodoo 3 and other 3dfx cards. * Sun Feb 3 2002 Mike A. Harris 4.2.0-6.14 - Added XFree86-4.2.0-tdfx-should-be-2048-not-2046.patch to fix a typo I found in the tdfx driver. - Fixed bug in ttmkfdir Makefile. In RHL 7.1 & 7.2 freetype 1 headers were in /usr/include/freetype however in RHL 7.2 for some god known reason they moved to /usr/include/freetype1/freetype. No problem in RHL 7.2 as ttmkfdir used the freetype headers as part of the freetype build process rather than the system headers. * Sun Feb 3 2002 Mike A. Harris 4.2.0-6 - Fixed base-fonts and font-utils conflicts lines - Bumped release to 4.2.0-6, and rebuilt - RHL 7.2 build release tag 4.2.0-0.6.13 * Sat Feb 2 2002 Mike A. Harris 4.2.0-5.2 - NEW XFree86-font-utils subpackage created for mkfontdir and ttmkfdir to reside in. This will allow these utils to be available without requiring other XFree86 libs or packages being installed. - Added patch to fix Matrox driver when VT switching to non-standard text modes (#59119) - Created new Red Hat custom modelines patch, merged previous patches into it, and added new modelines from bug (#53364) - RHL 7.2 build release tag 4.2.0-0.6.11 * Fri Feb 1 2002 Mike A. Harris 4.2.0-5.1 - Created XFree86-4.2.0-xfs-syslog.patch to make syslog log to LOG_DAEMON instead of LOG_LOCAL0 - which is supposed to be reserved for local system usage only. Fixes bug (#24873) - RHL 7.2 build release tag 4.2.0-0.6.10 * Thu Jan 31 2002 Mike A. Harris 4.2.0-5 - Enabled the now compiling gb18030 support patch - RHL 7.2 build release tag 4.2.0-0.6.9 * Thu Jan 31 2002 Mike A. Harris 4.2.0-4.1 - Added gb18030 support patch to 4.2.0 , but disabled it as it does not properly compile yet. - enabled patch to force xfs to chdir to / before fork() - RHL 7.2 build release tag 4.2.0-0.6.8 * Wed Jan 30 2002 Mike A. Harris 4.2.0-4.0 - Added XFree86-4.2.0-xkb-ar.patch for Arabic support (#56897) - Also built 4.2.0-0.6.7 for RHL 7.2 * Tue Jan 29 2002 Mike A. Harris 4.2.0-3.6 - Added missing defattr to files list for XFree86-base-fonts (#59014,59020) - Moved all /usr/X11R6/lib/modules files/dirs into same section of specfile and added dir flags for dirs that were not owned by the package. - Enhanced the xfs initscript so "restart" shuts down xfs and starts it back up again, using the stop/start functions. "reload" is now what reload and restart used to be - "kill -USR1" of xfs. - Added zh_CN-i18n patch to fix an i18n problem with Chinese locales * Mon Jan 28 2002 Mike A. Harris 4.2.0-3.4 - Added chmod kludge to bottom of install section to force locale/common *.so.* libraries to have execute perms. - Also built 4.2.0-0.6.5 for RHL 7.2 - Removed the version from the Glide/Glide-devel build dependancies, so X will build if any version of Glide3 is present. * Sun Jan 27 2002 Mike A. Harris 4.2.0-3.2 - Added link-glu-to-usrinclude patch for LSB conformance. - Made xfs post script use /bin/false in 7.x builds and /bin/nologin in rawhide builds. (#53088) * Sat Jan 26 2002 Mike A. Harris 4.2.0-3.1 - NEW XFree86-base-fonts subpackage created to hold all of the base fonts that were previously contained in the main XFree86 package. The new package contains Conflicts lines to minimize upgrading difficulties. - Added Prereq: /sbin/chkconfig for XFree86-xfs - Removed XFree86-4.1.0-ati-r128-PR-fix.patch as it was no longer needed, although not harmful in either case. - Removed various other spurious patches that were no longer being applied, but were left in the specfile. - Removed conditional support for building XIE and PEX as they have been deprecated by XFree86.org for quite some time now and are now obsolete * Fri Jan 25 2002 Mike A. Harris 4.2.0-3.0 - Toggled BuildGlide3 flag so that Glide3 does not get built inside XFree86 specfile by default. Glide3 has been separated back out to a separate RPM package to simplify the XFree86 spec file, and ease maintenance. * Thu Jan 24 2002 Mike A. Harris 4.2.0-2.5 - Fixed bug in xfs initscript fixing a problem with xfs having a CWD under /usr, which when located on an NFS mount, causes problems. (#57110) - Enabled libGLw in build (#41791,#41974) - Built also 4.2.0-0.6.1 for RHL 7.2 * Wed Jan 23 2002 Mike A. Harris 4.2.0-2.4 - Updated Wacom USB tablet driver Wacom-USB-driver-a25-update (#52947) - Added xkb-french-canadian keyboard to xkb list (#52309) - Fixed Xterm resource bugs (#48783,#49315,#58031,#58713) * Sun Jan 20 2002 Mike A. Harris 4.2.0-2.2 - Disabled the old DisableModuleStringMerging hack in specfile as 4.2.0 detects wether or not this option is required or not now via Imake tests. - Conditionalized pam and automake buildprereqs * Sun Jan 20 2002 Bernhard Rosenkraenzer 4.2.0-2.1 - Fix build in current tree (Glide is a mess) * Sat Jan 19 2002 Mike A. Harris 4.2.0-2.0 - Bumped release number to -2.0 with no changes from -0.3 package, for building into rawhide. All packages built for RHL 7.x should use release numbers less than -2, and preferably less than -1, ie: -0.x.y, so that upgrades stand a better chance of working in the future. * Sat Jan 19 2002 Mike A. Harris 4.2.0-0.3 - Updated the "Requires: kernel-drm = 4.2.0" to ensure the user has the proper DRM version installed. Newer rawhide kernels will now provide both kernel-drm = 4.2.0, as well as kernel-drm = 4.1.0 since the new DRM is supposed to be backward compatible. * Sat Jan 19 2002 Mike A. Harris 4.2.0-0.2 - Added missing defattr(-,root,root) to xtrap-clients subpackage * Sat Jan 19 2002 Mike A. Harris 4.2.0-0.1 - XFree86 4.2.0 released - first build * Fri Jan 18 2002 Mike A. Harris 4.1.99.7-0.1 - CVS trunk update to 4.1.99.7 - dropped patches that have been merged upstream * Sun Jan 06 2002 Mike A. Harris 4.1.99.4-0.1 - CVS trunk update * Wed Dec 26 2001 Mike A. Harris 4.1.99.3-0.1 - CVS trunk update * Thu Dec 6 2001 Mike A. Harris 4.1.99.2-0.2.4 - Integrated PPC arch changes from streeter@redhat.com - Integrated the Chinese gb18030 support patches received from yshao@redhat.com - Added SiS DRM patch (doesnt affect build as our DRM is in kernel rpm) * Tue Dec 4 2001 Mike A. Harris 4.1.99.2-0.2.3 - Removed eurofonts-X11.tar.bz2, and ulT1mo-beta-1.0.tar.gz from XFree86 package, moving them to their own separate packages that do not conflict with XFree86 namespaces. (Removed the ISO8859-2-Type1-fonts package) - Added new shared libs libXTrap, libXrandr.so to file lists - Added new applications to filelist: xrandr, xedit, luit, and various others, and their documentation. - Added new subpackage XFree86-xtrap-clients to hold the new xtrap client utilities * Sun Dec 2 2001 Mike A. Harris 4.1.99.2-0.1.7 - Made XFree86 server binary SUID root when not supporting Xwrapper (#56986) * Wed Nov 28 2001 Mike A. Harris 4.1.99.2-0.1.5 - Conditionalized out Xwrapper as its functionality is built directly into the X server now. To build it set BuildXwrapper to 1 in specfile. * Mon Nov 19 2001 Mike A. Harris 4.1.99.2-0.1.3 - Fixed that annoying Radeon hardware mouse cursor bug, where any mouse pointer that has a hotspot *NOT* on the left side of the pointer, caused the mouse to freeze up and jump around on left side of screen. XFree86-4.1.0-radeon-hardware-cursor-fix.patch * Mon Nov 12 2001 Mike A. Harris 4.1.99.2-0.1.2 - Updated xman patch, to use FreeBSD style man.config (why? I dunno.) * Tue Nov 6 2001 Mike A. Harris 4.1.99.2-0.1.1 - Added new entries to XftConfig for "console" and "fixed" to not antialias, which solves problems reported in konsole and other Qt applications. - Updated CVS source to current. - Removed patches that are now integrated into new upstream source base: XFree86-4.1.0-ati-radeon-dri-buildfix.patch * Fri Nov 2 2001 Mike A. Harris 4.1.99.2-0.0.4 - Fixed problems with WithExternalMesa disabled, in the file lists, etc. - Made new section for internationalizaton patches (30-39), and moved all locale.alias patches to that section. - Created some new aliases for en_AU, and en_CA and sent patches upstream. * Thu Nov 1 2001 Mike A. Harris 4.1.99.2-0.0.2 - Initial fork from 4.1.0 codebase to separate branch for 4.1.99.2 CVS - Set Build_7x to 0, which now means XIE, PEX and external Mesa are gone, and the doctor says I can stop taking my medication now. - Added preliminary support for building CVS snapshots, which will eventually result in nightly builds from CVS or somesuch. - Removed patches that are integrated into new upstream source base: ati-r128-SM, cirrus-foobaroo-fix, allow-module-flags, Xrender-required-libs, libXfont-put-eof, twm-coredumpfix, compose-iso8859-2, crash-message-fixup, xinerama-extmod-fix - Updated locale-nn_NO locale-en_BG patch, and sent upstream _again_. - Updated mkfontdir-perms - Added patch to remove SuperProbe leftovers. * Tue Oct 30 2001 Than Ngo - Added XFree86-4.1.0-cpp-s390x.patch which fixes a man-pages of size 0 bug on s390 (#54927,#54932) * Sat Oct 27 2001 Mike A. Harris 4.1.0-5 - Disabled VT switch patch from -4 release after feedback of regression - Updated the Savage driver with Tim Roberts 1.1.20t driver, this should fix the reported bugs with Staroffice locking up X, and also video memory detection problems: (#31879) - Added XFree86-4.1.0-keycodes-abnt2.patch to fix abnt2 support bug(#55128) * Mon Oct 7 2001 Mike A. Harris 4.1.0-4 - Added patch to fix VT switch hangs that are hardware independent. This should fix numerous reported VT switch bug reports. - Fixed up host.def parallel make stuff.. HasParallelMake define is broken, and unneeded for now. * Sat Oct 6 2001 Mike A. Harris - Removed __rmfontpath macro, and its usage, as well as the rpm 4.0.3 dep, because a lot of people were getting snagged on it, and it is questionable of the benefit of removing the fontpaths anyways, since it does not harm anything by leaving the font paths in config files really. - Changed /lib/libpam reqs to pam-devel instead - Commented the DisableModuleStringMerging specfile define, and moved to top of specfile where it is much more visible, as a lot of people have been getting snagged on this. * Wed Oct 3 2001 Mike A. Harris 4.1.0-3.9 - Modified and unified the "make World" buildlines by removing all the buildflags, etc. from them, and moving them into proper Imake configuration variables. - Added "-pipe" to default C compiler flags, as it should work on all architectures now. - Various other specfile cleanups. - Created support for ATI Rage 128 PP (1002:5050) XFree86-4.1.0-ati-r128-PP.patch * Mon Sep 24 2001 Mike A. Harris 4.1.0-3.8 - Silenced some Glide3 compiler warnings with Glide3-redhat-cleanup-1.patch. * Sun Sep 23 2001 Mike A. Harris 4.1.0-3.5 - Primary integration of changes in specfile to allow simple conditional build of fully debuggable modularized XFree86 packages. This is done by enabling DebuggableBuild RPM macro at top of specfile, adding "dbg" to Release tag, and rebuilding. The resulting RPM packages total in at 127Mb of data, as opposed to 55Mb or so regularly. In order to debug this debuggable XFree86, a special patched version of gdb 5.0 is required, which is currently a work in progress based on a much older patch for gdb 4.18. * Mon Sep 17 2001 Mike A. Harris - Changed xfs initscript to use find -cnewer instead of -newer to fix bug (#53737) * Wed Sep 5 2001 Mike A. Harris 4.1.0-3 - Reordered font paths in xfs catalogue to put 75dpi first, etc.. - fixed couple critical specfile bugs that have slipped through til now * Tue Sep 4 2001 Mike A. Harris - Fixed fs/config bug (MF#53103) as well as doing the same for XftConfig * Fri Aug 31 2001 Mike A. Harris 4.1.0-2 - Fixed a couple SHOULD-FIX bugs - fontpath order (SF#52413), metaSendsEscape bug (SF#49315) * Wed Aug 29 2001 Mike A. Harris 4.1.0-1.1 - Added "Requires: kernel-drm = 4.1.0" so that a matching kernel RPM package is installed and DRI works properly. (Brought up by mkj/arjan, and agreed upon by me) * Tue Aug 28 2001 Mike A. Harris 4.1.0-1 - Added dont-build-pex-docs patch from Branden Robinson to disable building PEX documentation (deprecated and obsolete) - Fix permissions on XftConfig, and other source files. (MF#52735) - Bravely bumping version to 4.1.0-1 - Added xinerama-extmod patch for bug (#52842) * Mon Aug 27 2001 Mike A. Harris 4.1.0-0.99.2 - Added Obsoletes: XFree86-ISO8859-2-Type1-fonts < 4.1.0, and provides ISO8859-2-Type1-fonts, to fix upgrade from 7.1, and prepare for future packaging. - Removed (noreplace) from fs/config, I *want* it to replace. * Sun Aug 26 2001 Mike A. Harris 4.1.0-0.99.1 - Completed font related fixups (hopefully) - Added specfile buildroot install time removal of fonts.dir files as they should never ever be included in the RPM packaging, but generated at runtime instead. * Fri Aug 24 2001 Mike A. Harris 4.1.0-0.20.5 - Added XFree86-4.1.0-ati-pciids-cleanup.patch, which includes misc cleanups to the PCI tables for ATI hardware. - Added ati-radeon-dri-buildfix from notting@redhat.com which hopefully fixes bug (#51884) * Tue Aug 21 2001 Mike A. Harris - Completed font screwup overhaul take1. * Mon Aug 20 2001 Mike A. Harris 4.1.0-0.20.1 - Added XFree86-4.1.0-s3virge-mx.patch to fix some corruption issues on S3 Virge MX hardware. - BuildPreReq: rpm >= 4.0.3 (parameterized macro fix) * Sat Aug 18 2001 Mike A. Harris - Exclude XFree86 doc dir from, and add xdm pixmaps to s390 arch. * Wed Aug 15 2001 Mike A. Harris 4.1.0-0.20.0 - Added xman-soelim-fix to fix bug (#51037). - Modified cirrus-foobaroo patch to disable debug messages (#51179) - Backed out an xfs change that breaks serving 3.3.6 servers. Attempted workaround for (#) - Disable ATI update patch to see if it fixes Radeon DRI bugs. * Mon Aug 13 2001 Mike A. Harris 4.1.0-0.9.13 - Added XFree86-4.1.0-radeon-slowdownthere.patch to fix bug where ATI Radeon hangs on faster computers when VT switching. - Created fix for mkfontdir to force permissions on newly created fonts.dir and encodings.dir files to be mode 644, fixes bug (#51636) - Added fix for iso8859-2 compose file (affects Mozilla) - Added patch to prevent X error messages from referencing log file if it has not yet been opened. - Created support for ATI Rage 128 SM (Xpert2000), and added rage128-SM patch to fix (#34732,#51230,#50231) - Created XFree86-4.1.0-locale-alias-en_GB.patch to fix (#47247,51169) - Moved video hardware documentation in /usr/X11R6/lib/X11/doc to main XFree86 package as that is where the drivers are (#50828) - Updated XFree86 dependancy on Mesa to -> 3:3.4.2-5 * Thu Aug 9 2001 Mike A. Harris 4.1.0-0.9.12 - Synced with XFree86 stable branch to pick up upstream bugfixes - Added support for Japanese 109 key USB keyboard * Wed Aug 8 2001 Mike A. Harris - merged new changes into specfile - added nn_NO, en_GB locale.alias support - Added support to xfs.init for .ttc font files, and to use case insensitive regex when grepping for truetype fonts. (#41169) * Sun Aug 4 2001 Bill Nottingham 4.1.0-0.9.11 - port & apply necessary DRI fixes that fell out * Thu Aug 2 2001 Mike A. Harris 4.1.0-0.9.10 - Added custom Red Hat XftConfig to fix AA font problems (#49937) - Added RPM_BUILD_ROOT to ia64 libxrx removal.. ;o( * Tue Jul 31 2001 Mike A. Harris 4.1.0-0.9.9 - Enabled "HasLinuxInput YES" to force wacom driver to get built with USB support with 2.4 kernel. Fixes bug (#50453). * Mon Jul 30 2001 Mike A. Harris - Attempted fix for (#50043) -frame option ignored when -id option used on xwd (XFree86-4.1.0-xwd-frame-option.patch) - Made XF86Config-4 outside ifnarch s390 as Bero claims s390 uses it. * Thu Jul 26 2001 Mike A. Harris 4.1.0-0.9.8 - Added improved X startup messages for debugging purposes - Updated patch148 from ATI plus 2 minor buildfixes * Wed Jul 25 2001 Mike A. Harris 4.1.0-0.9.7 - Added XFree86-4.1.0-libXfont-put-eof.patch to fix bug (#48830) where the 100dpi/75dpi helvBO12.pcf.gz fonts were getting munged. - Added XFree86-4.1.0-twm-coredumpfix.patch to fix (#49674) - Added XFree86-4.1.0-cirrus-foobaroo-fix.patch from Egbert Eich to attempt to fix the Cirrus Logic problems. - Fix libxrx problem on ia64 (#49990) by removing libxrx from non-x86/alpha * Tue Jul 24 2001 Mike A. Harris 4.1.0-0.9.4 - Added XF86Config and XF86Config-4 as owned config files (latter ghosted) - Fixed s390 Buildprereq on gcc by unnegating macro test - Apply patch 3003 (64bit.patch) to all 64bit arch's. * Tue Jul 24 2001 Mike A. Harris 4.1.0-0.9.3 - Worked around rpm parameterized macro processing bug that caused a problem with postun scripts - discovered by rpmlint. - Reformatted all pre/post/postun/etc. scripts to be more readable and maintainable. - Added patch8 to xterm resources to provide RFE (#48783) * Mon Jul 23 2001 Mike A. Harris 4.1.0-0.9.2 - Added bison, zlib-devel as Buildprereqs - discovered on s390 by - Added ati-radeon-ve patch from ATI (patch148) - Made Prereq's on /usr/sbin/chkfontpath instead of on chkfontpath * Sun Jul 22 2001 Mike A. Harris - ifnarchd patch1013 for s390 * Wed Jul 18 2001 Mike A. Harris 4.1.0-0.9.1 - Created new macro __rmfontpath to be called from font package postun scripts to fix bug (#49243) * Mon Jul 16 2001 Mike A. Harris - Added /usr/X11R6/man/man6, and other non existing manX dirs to XFree86-libs package so anything using them ends up having the dir owned by something. - Removed unneeded shared lib stuff (Xv/Xxf86dga) * Sun Jul 15 2001 Mike A. Harris 4.1.0-0.9.0 - Added BuildPrereq: gcc >= 2.96-93 to guarantee compiler used supports the -fno-merge-constants option - Made External Mesa usage conditionalized via WithExternalMesa so that it is easy to rebuild XFree86 with/without using external Mesa, which will be the default at some point in the future. * Wed Jul 11 2001 Mike A. Harris - Explicitly state mkfontdir path in __mkfontdir macro (#48829) * Tue Jul 10 2001 Mike A. Harris - Removed SharedLibXdmGreet from host.def, it is the same as default anyway - Removed tcl and tk as buildprereq's, Bero says they're not needed anymore * Tue Jul 10 2001 Tim Powers 4.1.0-0.8.6 - don't require XFree86-compat-libs in XFree86-libs * Tue Jul 10 2001 Mike A. Harris 4.1.0-0.8.5 - Fixed missing requiredlibs on shared libXrender so that prelinking works. - Built 4.1.0-0.8.4 - Woops, I left shared libXv and libXxf86dga on again by accident. - Built 4.1.0-0.8.5 * Mon Jul 9 2001 Mike A. Harris 4.1.0-0.8.1 - Fixed up xdm pre script - Fixed up missing Latin2 Type1 fonts, they are now in the fonts/Type1 dir - Removed shared libXv.so and libXxf86dga.so at request of XFree86 team, and in conjunction with discussion with Debian X maintainer. * Mon Jul 9 2001 Mike A. Harris 4.1.0-0.7.51 - Fixed ia64 Glide3 build failure. * Sun Jul 8 2001 Mike A. Harris 4.1.0-0.7.50 - Merged with xf-4_1-branch to pick up stable bugfixes, and removed XFree86-4.1.0-redhat-glint-missing-symbols.patch, also Banshee ramtiming fix picked up from the update. * Fri Jul 6 2001 Mike A. Harris 4.1.0-0.7.12 - Really disabled string merging this time - Added verify flag to /etc/X11/fs/config - Disabled shared libraries Xv/xf86dga for standards compliance. These libraries do not have a stable API and should not be shared. It was a Bad Idea(tm) to ship these. * Wed Jul 4 2001 Mike A. Harris 4.1.0-0.7.8 - Disabled string merging in modules using ModuleLdFlags in host.def - Added WORLDOPTS= to make World to get rid of the "-k" passed to make so that failed X builds will fail immediately instead of continuing on. * Mon Jul 2 2001 Mike A. Harris 4.1.0-0.7.6 - Phase 1 - Amalgamated all my local font related changes to get fonts working better in the new 4.1.0 release. Straightened out 75dpi/100dpi brokenness and split up packages. - mkfontdir is now called in post(un)install scripts, and fonts.dir files are not installed as part of packages anymore because it was a bad broken idea to do so because these files should be generated, not provided. - Added missing \ in main package post script * Thu Jun 21 2001 Mike A. Harris 4.1.0-0.7.5 - Added customer requested custom 1152x864x85Hz modeline * Sun Jun 17 2001 Mike A. Harris - Reworked all ISO8859-* font subpackages for 4.1.0. fonts.dir is not included in the packages, rather it is generated at post install time. - Refixed (#31618) * Sat Jun 16 2001 Mike A. Harris 4.1.0-0.6.1 - More s390 cleanups * Fri Jun 15 2001 Mike A. Harris 4.1.0-0.6.0 - Integrated s390 patches sent by Than from Oliver Paukstadt * Sat Jun 9 2001 Mike A. Harris 4.1.0-0.5.6 - Cleaned up unneeded Freetype2 stuff in host.def * Fri Jun 8 2001 Mike A. Harris 4.1.0-0.5.6 - Take-1 at cleaning up some of the font related 'issues' due to the different way fonts are generated in 4.1.0. Still many issues remaining. * Wed Jun 6 2001 Mike A. Harris - Folding the external Mesa into XFree86 created as many problems as it solved. The DRI CVS trunk has a more permanent solution worth checking out. - Since the V4L drivers have aparently been included in the main XFree86 package all this time, I've removed the separate package. * Mon Jun 4 2001 Mike A. Harris 4.1.0-0.1.5 - First stab at assimilating Mesa 3.4.2 package into XFree86 package - Added missing symbols to glint driver (#42751) * Mon Jun 4 2001 Mike A. Harris 4.1.0-0.0.2 - Rebuilt against Mesa 3.4.2 in new environment * Sat Jun 2 2001 Mike A. Harris 4.1.0-0.0.1 - XFree86 4.1.0 released - built 4.1.0-0.0.1 * Thu May 31 2001 Mike A. Harris 4.0.99.901-0.0.6 - Remove GLw manpages since we don't ship libGLw (#41791) - I finally got XIE and PEX disabled completely for sure this time absolutely no question. No really... It's gone. * Wed May 30 2001 Mike A. Harris 4.0.99.901-0.0.4 - Updated to 4.0.99.901, removed unneeded patches - Removed Glide3 Provides/Obsoletes from devel package, and removed the Glide3 devel stuff from that package also - only X needs it during build - Removed BuildGlide3 conditional - Glide3 will always be built from now on - Added conditionals BuildPEX & BuildXIE. These have officially been obsoleted by XFree86, and are no longer actively supported or used by anything. * Mon May 28 2001 Mike A. Harris 4.0.99.900-0.2.5 - Added "Options" database file, and also the following apps and their manpages: dpsexec, dpsinfo, texteroids, xftcache - Removed hardcopy doc creation code (groff) from specfile. The XFree86 makefiles have been fixed now to do this themselves properly. - Removed Glide3 headers from XFree86-devel. Only needed during build, no apps should be linking to Glide3. - Simplified filelist for libs subpackage by using globs instead of hard coded library version numbers. - Removed use-cpp patch, done with imake now. * Sun May 27 2001 Mike A. Harris 4.0.99.900-0.2.2 - Merged bero's changes to my local sources, and changed libXmuu inclusion from libXmuu.* to libXmuu.1.0, so that the *.so doesn't get picked up also, as it should be in the devel package. * Mon May 21 2001 Bernhard Rosenkraenzer 4.0.99.900-0.2.1 - Add missing libXmuu.* files * Sun May 20 2001 Mike A. Harris - Many fixes from H. J. Lu including enhanced parallel make, xterm-xaw3d, pex patches, specfile updates, build enhancements and a partridge in a pear tree. ;o) - Fixed insane off-the-screen indenting levels in xfs.init * Sat May 19 2001 Mike A. Harris - Updated to 4.0.99.900 - Updated with the latest parallelmake patch from H. J. Lu - Added new specfile option ParallelBuild, so that any parallel build stuff can be conditionally defined in the specfile in case the parallel make patch breaks in the future. * Fri May 11 2001 Bernhard Rosenkraenzer - Fix build * Wed May 9 2001 Mike A. Harris 4.0.99.3-0 - Updated 4.0.99.x package to 4.0.99.3 release, forward ported all relevant changes that have occured in 4.0.3 packaging since March 27th until now, and brought the 4.0.3 specfile changelogs into the 4.0.99.3 spec changelog. The two releases should be syncronized now. * Mon May 7 2001 Mike A. Harris 4.0.3-14 - Syncronize XFree86 with Mesa 3.4.1-1 - Disable alpha-hack from May 3rd and add new patch from Compaq to replace it * Fri May 4 2001 Mike A. Harris 4.0.3-13 - Updated patch0 to latest XFree86 stable branch for 4.0.3. Fixes many 3dfx bugs in tdfx driver. - Moved locale data from /usr/X11R6/lib/X11/locale in main package to XFree86-libs package where it belongs. (#38408) - Corrected dumb reversal in XFree86CustomVersion Imake define in specfile * Thu May 3 2001 Mike A. Harris 4.0.3-12 - Reverted ia64-int10 patch from Alpha. - Added XFree86-4.0.3-alpha-hack-bypass-int10bug.patch from Jay Estabrook for Alpha. * Wed May 2 2001 Mike A. Harris 4.0.3-11 - Removed RPM_BUILD_ROOT from glide section (#38031) - Enabled XFree86-4.0.2-ia64-int10.patch on alpha as well for testing. * Wed Apr 25 2001 Mike A. Harris - Added XFree86-4.0.3-compose-kill-ctrl-shift-t.patch to fix (#23473) * Mon Apr 23 2001 Mike A. Harris - Added rhl-startupmessages patch to aide debugging and troubleshooting bug reports. This should increase the usefulness of user submitted XFree86 log files and decrease the turnaround time on requesting info and waiting for someone to provide that info. Patch doesn't do much yet, but will be enhanced later. - Added xset manpage enhancement * Sat Apr 21 2001 Mike A. Harris 4.0.3-10 - ifarch'd XFree86-4.0.2-agpgart-load.patch to only apply on non-alpha * Sat Apr 14 2001 Mike A. Harris 4.0.3-9 - Removed dependancy of main XFree86 package on xfs by moving the XFree86 server modules "/usr/X11R6/lib/modules/{codeconv,fonts}/*" from the xfs subpackage to the main XFree86 package as they never belonged in the xfs package in the first place. This is an ancient packaging error. - Added patch from Tim Waugh to fix Xaw password entry in vnc. (#19231) * Thu Apr 12 2001 Mike A. Harris - Killed ancient non-FHS compliant symlink to /usr/man/X11 - Disabled XFree86-4.0.3-savage-glitch.patch to fix (#34376) * Mon Apr 9 2001 Mike A. Harris - Made glidelink get called before ldconfig in %%post libs * Mon Apr 9 2001 Mike A. Harris 4.0.3-8 - Simplified the main package %%pre script symlink munge code - Fixed bug in %%post xfs section - inadvertently added in 4.0.3-6 release - Disable patch #220 as it is unnecessary - taken care of via Imake ages ago. * Sun Apr 8 2001 Mike A. Harris 4.0.3-7 - Fixed (#32574) by adding a preinstall script on xdm which moves the dir /etc/X11/xdm/authdir to /var/lib/xdm/authdir if it exists, and symlinking /etc/X11/xdm/authdir to it. Corrected the filelist for xdm to include these changes. - Fixed alpha build failure with tga driver patch, ifdef with no macro. * Fri Apr 6 2001 Mike A. Harris 4.0.3-6 - Force enabled BuildXinerama and BuildXineramaLibrary in hosts.def - FHS compliant manpage sections (4x/7x) * Thu Apr 5 2001 Mike A. Harris - Added new patches submitted by Compaq for various drivers, etc. XFree86-4.0.3-compaq-alpha.patch, XFree86-4.0.3-compaq-glint.patch XFree86-4.0.3-compaq-radeon.patch, XFree86-4.0.3-compaq-r128.patch XFree86-4.0.3-compaq-mga.patch, XFree86-4.0.3-compaq-tga.patch (courtesy of Jay Estabrook) * Thu Mar 29 2001 Mike A. Harris 4.0.3-5 - XFree86 4.0.3 defaults to building libfreetype if Xft is being built, so freetype is now disabled with Imake defines. - Removed shared libsXxf86dga and libXv hack I added on Mar 9 and did it properly with Imake defines. Also fixes (#31232) * Wed Mar 28 2001 Mike A. Harris 4.0.3-4 - Added patch XFree86-4.0.3-glide3-libdir.patch so tdfx driver can find the Glide3 libs included with X package. - Minor xfs.init fix - Added XFree86-4.0.3-mga-hwcursor-fix.patch * Tue Mar 27 2001 Mike A. Harris - Updated g450 port from 4.0.3 to XFree86-4.0.99.1-mga-g450-dualhead.patch - Updated Savage driver dropin to version 1.15 - Added patches 405 - 408 from 4.0.3-4 build * Sun Mar 25 2001 Mike A. Harris - Initial specfile fork of 4.0.99.1 from 4.0.3-3 - Removed unneeded patches: XFree86-4.0.1-dri-sym.patch, XFree86-4.0.2-mga-busmstr.patch, XFree86-4.0.2-r128-busmstr2.patch, XFree86-4.0.2-r128-mobility.patch, XFree86-4.0.2-agpgart-load.patch, XFree86-4.0.2-r128-drm-do-wait-for-fifo.patch - Updated patches: XFree86-4.0.99.1-parallelmake.patch, XFree86-4.0.99.1-locale-euro.patch, XFree86-4.0.99.1-winkey-alt-meta.patch * Fri Mar 23 2001 Mike A. Harris 4.0.3-3 - Drumroll...... Final (or is it?) working G450 dualhead update. ;o) * Thu Mar 22 2001 Mike A. Harris - Added pam patch for xdm from Nalin Patch404 * Wed Mar 21 2001 Mike A. Harris - Fixed uninitialized memory reference in xlib (Patch401) (#32222) - Make libs subpackage depend on kudzu-devel, pciutils-devel for Glide3 (#32534) - Matrox G450 updates * Mon Mar 19 2001 Mike A. Harris 4.0.3-2 - Fixed glitch in %%post xfs section of spec (#32281) - Set "umask 133" in xfs initscript so that fonts.dir/fonts.alias files created during script execution work also for non-root users that may have changed root's umask. - Updated Mesa dependancy in specfile to 3.4-13 * Sun Mar 18 2001 Mike A. Harris - Removed XFree86-4.0.1-xterm-appdefaults.patch as it was redundant * Sat Mar 17 2001 Mike A. Harris 4.0.3-1 - New XFree86 4.0.3 released and integrated. - Updated patches for 4.0.3, removed unneeded patches. - Built 4.0.3-1 * Fri Mar 16 2001 Mike A. Harris - Reverted G450 driver back to dwmw2's driver. - Built 4.0.2a-2 * Thu Mar 15 2001 Mike A. Harris 4.0.2a-1 - Added XFree86-4.0.2-locale.patch from Phil Knirsch which should fix all problems with euro locales, and other locale issues including bug id's (26300,21882,28447, others) - xfs crash errors should all be fixed now by the XFree86 stable branch patch. Bugzilla (#22538) * Wed Mar 14 2001 Mike A. Harris 4.0.2a-1 - New patch XFree86-4.0.2a-mga-g450-dual_6.patch - G450 driver update from Luugi Marsan - Added new euro locale stuff from Phil Knirsch - Added XFree86-4.0.2-r128-drm-do-wait-for-fifo.patch from Gareth Hughes which should fix the r128 errors in (#26999) * Tue Mar 13 2001 Mike A. Harris - Added provides entries for Glide3 in libs and devel subpackages - Take 2 of XFree86-4.0.2a-im-being-included-and-i-cant-get-up2.patch - Moved XftConfig file to /etc/X11 and made compatibility symlink. * Fri Mar 9 2001 Mike A. Harris - Updated main tarball to 4.0.2a (even though it's the same code we had before with 4.0.2 + stable branch patch). - Updated stable branch patch to bring 4.0.2a up to date with xf-4_0_2a-branch - Nvidia nv driver updated with MANY fixes from XFree86 stable branch - Added shared libraries: libXv.so, libXxf86dga.so - Re-enabled Sparc build. That machine is slow, someone needs to put a spark under it to get it going. ;o) - Fixed (#13882) with XFree86-4.0.2-winkey-alt-meta.patch - Fixed (#19308) added X11R6-contrib obsolesence * Fri Mar 9 2001 Bill Nottingham 4.0.2-12.1 - fix glide dependencies * Thu Mar 8 2001 Mike A. Harris 4.0.2-12 - Fixed alpha/ia64 build problems - Built 4.0.2-12 * Tue Mar 6 2001 Mike A. Harris - Created XFree86-4.0.2-r128-mobility.patch to enable external display on Rage Mobility laptops, etc. - Added XFree86-4.0.2-xft-match.patch (from Bero) (#30836) * Mon Mar 5 2001 Mike A. Harris - Added XFree86-4.0.2-alpha-pci-resource.patch (#30417) * Sat Mar 3 2001 Mike A. Harris - Glide3 is back (was previously removed on Feb 22) - Removed loaderProcs.h hack, and replaced with a patch. - Tidied up a tonne of XFree build warnings - Added XFree86-4.0.2-im-being-included-and-i-cant-get-up.patch stop loaderProcs.h from being wrongly included in building Xnest due to a compiler bug. * Fri Mar 2 2001 Mike A. Harris - Added mga and r128 busmaster patches that Todd Nix sent me from Kevin E Martin . * Wed Feb 28 2001 Mike A. Harris - Updated xf-4_0_2-branch patch to todays latest stable code - Removed unneeded patches after update: XFree86-4.0.2-time.patch, XFree86-4.0.2-sis-unresolved-memcpy.patch - Added XFree86-4.0.2-agpgart-load.patch from Bill Nottingham to force load AGPgart kernel module when a DRI module is loaded. - Fixed "chmod" in xfs.init (#18573) - Added BuildPreReq ncurses-devel - Repaired ia64 int10 patch - Tidied up specfile, particularly the host.def generation section, and incorporated xfree86.def mess into host.def section where it belongs. * Tue Feb 27 2001 Mike A. Harris 4.0.2-11 - Added updated driver for Savage chipset. Should fix all known issues with Savage cards that I'm aware of. - Removed Prereq of chkfontpath on xfs subpackage and modified xfs initscript to only call chkfontpath if it is installed. * Mon Feb 26 2001 Mike A. Harris 4.0.2-10 - Added specfile %%pre fix for (#26857) - problem upgrading to Wolverine from Red Hat 5.2 due to directory/symlink fu glitch. - Enabled Utempter for xterm with "UseUtempter" in specfile - Added neomagic softcursor patch for (Helge Deller ) - Built 4.0.2-10 - Created patch XFree86-4.0.2-sis-unresolved-memcpy.patch to fix bugs (#19530,24670) * Fri Feb 23 2001 Mike A. Harris - Added spec hack to fix bad include of loaderProcs.h in miinitext.c I believe this fixes some of the r128 DRI problems. I can't get r128 DRI to crash anymore now anyways. It isn't mind blowingly fast though. May have fixed other problems as well. X seems much smoother now, and VT switching is much faster also. * Thu Feb 22 2001 Mike A. Harris - Added ExcludeArch tag to quell failed sparc builds (unsupported) - Re-enabled DRI for mga/r128, but they still do not work * Sat Feb 17 2001 Mike A. Harris - Updated fix for xfs death bug with truetype fonts. - Added chkfontpath require to xfs subpackage (#19603) - Added XFree86-4.0.2-banshee-ramtiming.patch to fix (#26351,#18810) - Added ia64-int10 patch. (Bill Nottingham) * Thu Feb 15 2001 Mike A. Harris - Fixed xfs.config * Tue Feb 13 2001 Mike A. Harris - Disabled DRI drivers r128 and mga because they are broken. - Built XFree-4.0.2-8 - Fixed bad noarch thing - Built XFree-4.0.2-9 * Mon Feb 12 2001 Mike A. Harris - Merged in separate XFree86-ISO8859-2 font package * Sun Feb 11 2001 Mike A. Harris - Added 1400x1050 modeline patch for newer laptops - Misc fixups - Disabled DRM kernel module building as we don't use these modules anyway. - Updated 4.0.2-branch patch - Updated XFree86-4.0.2-xfree86.lst.patch * Thu Feb 08 2001 Mike A. Harris - Internationalized xfs and xdm initscripts * Wed Feb 07 2001 Mike A. Harris - New fix for Cirrus 5480 (H.J. Lu) - Matrox g450 patch that _hopefully_ works this time (from dwmw2) * Tue Feb 06 2001 Mike A. Harris - (#25890,#26131) tdfx dri driver not included.. specfile mixup, fixed. - (#23896) Added option for building with Glide2 (default=off). Dunno if it works or not as I'm not testing it. If someone wants to further the enhancement at all, I'll accept specfile patches to add any missing bits. ;o) - (#25131) Fixed xfs.config file glitch (Truetypex typos), and a similar bug in specfile hack. - Updated to recent XFree86 stable bug fixes (Patch #1) - Fix temp files vulnerabilites in xman on systems with mkstemp() - Fix temp vulnerabilities in Xaw/MultiSrc.c - Fix temp file vulnerability in gccmakedep based on report from Alan Cox. - Fix temp file vulnerability in Imake.rules - Fix temp file vulnerability in InstallManPageAliases - Fix Neomagic 2200 screen corruption - Add an imake control for determining when xload should be installed set-gid * Thu Jan 25 2001 Mike A. Harris - Added g450 patch from Matrox. Lets see some dualhead action baby! - Filtered out M$ Windows CR's from the Matrox patch, hope I got them all. Windows bad, Linux good. ;o) - Removed all prior g450 patches as the new one repaces them all - Many spec file simplifications, and general tidy up job. * Wed Jan 24 2001 Bill Nottingham - fix perms on xload * Wed Jan 24 2001 Matt Wilson - chmod 644 XftConfig before piping to it * Wed Jan 24 2001 Mike A. Harris - Disable Cirrus 5480 patch as it wont apply cleanly to 4.0.2. - Removed v4l patch - its in 4.0.2 already - (#23701) devel dependant on libs instead of main package. - Added TrueType font dirs to config files for the ttfonts package - Numerous other tweaks - XFree86-4.0.2-4 built * Tue Jan 23 2001 Mike A. Harris - Fixed xfs initscript to only start at boot time if X is installed. - Put eurofonts package back and fixed it up with suggestions from H. J. Lu - as 2 font files are still needed. - Changed xload %%install time chmod to %%attr instead - Tidied up %%install section, removing redundancies. - Added Cirrus Logic 5480 patch from from Egbert Eich (#24177) * Mon Jan 22 2001 Mike A. Harris - Removed manpage "hack" section from specfile - Removed eurofont tarball entirely. It's included in X already under different names now. - Removed mga, ATI, mesa patches from yesterday as they fail the build requiring many other missing items. * Sun Jan 21 2001 Mike A. Harris - Added ATI driver patch from XFree CVS - lots of new fixes - Added mga driver patch from XFree CVS (mainly for G450) - Added mesa patch from XFree CVS - Added BuildPrereq: pam-devel (Bill Crawford ) - Commented out BuildPrereq: pam-devel as it failed me - Remove eurofont .bdf files after pcf's are created to quell duplicate font errors. * Sat Jan 20 2001 Mike A. Harris - Added Xft update from XFree CVS - Updated %%clean section - Changed specfile bunzip references to bzcat - Fixed all specfile references of "tar x" to "tar xf -" - Added romanian-keyboard-fix from Cristian Gafton * Thu Jan 18 2001 Mike A. Harris - ATI r128 update from ATI. * Wed Jan 17 2001 Mike A. Harris - Disabled tdfx builds as they die with missing glide3 libs (at least in RHL 7.0 it does) * Tue Jan 16 2001 Mike A. Harris - Added BuildPrereq: flex >= 2.5.4a - Added BuildPrereq: freetype-devel >= 2.0.1 - Added BuildPrereq: Glide3-devel >= 20001220 for tdfx * Mon Jan 15 2001 Mike A. Harris - Updated fhs patch for 4.0.2 - Updated portuguese patch for 4.0.2 * Thu Jan 11 2001 Mike A. Harris - Integrated Matrox G450 driver for testing from Matrox * Mon Jan 8 2001 Mike A. Harris - Added xfree86.lst patches from Brent Fox and also (#5977) * Sat Jan 6 2001 Mike A. Harris - Misc spec file fixups * Fri Jan 5 2001 Mike A. Harris - Integrated ATI driver from Michael Smith * Wed Jan 3 2001 Mike A. Harris - Built 4.0.2 release 1 * Thu Dec 28 2000 Bernhard Rosenkraenzer - Add a couple of missing man pages, noted by Thayne Harbaugh - Use system freetype, now that we've updated - Add missing XftConfig file * Thu Dec 28 2000 Bill Nottingham - don't list the driver modules explicitly; ship them all * Thu Dec 21 2000 Bill Nottingham - integrate tdfx_dri into main XFree86 package * Tue Dec 19 2000 Bill Nottingham - fix typos in xkb symlink/dir munging * Tue Dec 19 2000 Bernhard Rosenkraenzer - Add missing Xft (Xrender) includes in -devel - Move xkb files back to their old locations, we can't replace directories with symlinks - Add /etc/X11/xkb -> /usr/X11R6/lib/X11/xkb symlink for compatibility - 4.0.2 - Get rid of twfix patch (it's in 4.0.2) - Patch 302 must be applied with -p0, not -p1 - Add a %%clean section - Get rid of /etc/X11/xdm/xdm-config in XFree86-xdm. Since kdm uses it, as well, it should be in xinitrc * Thu Dec 14 2000 Mike A. Harris - Added XFree86-4.0.1-twfix.patch from bhuang@redhat.com to fix zh_TW locale. - Added locale.alias patch from Jakub Jelinek. - Removed unneeded patches, and tidied spec file a bit (yeah right). ;o) * Wed Dec 13 2000 Bill Nottingham - tweak the -pic patch so it works with the ELF loader (in theory) - don't try and build the kernel modules * Sun Dec 10 2000 Bill Nottingham - reapply the parallelmake patch - hm, libX11 and libXmu are now .6.2 * Sat Dec 9 2000 Mike A. Harris - Updated to CVS version xf-4.0.1Z * Sat Dec 9 2000 Bill Nottingham - add back in some patches (FHS, Xwrapper) - make it build on ia64 (hopefully) * Fri Dec 8 2000 Mike A. Harris - Added patch XFree86-4.0.1h-xf86Wacom.c-kernelheaderclash.patch to fix 4.0.1h build failure. * Wed Dec 6 2000 Mike A. Harris - Fixed bug (#21303) changed 2 uses of arch "i386" to "%{ix86}" - Remove dependancy on tar 1.13.18 by calling bunzip2 and piping to tar - Removed I810Drm.tar.gz entirely as it smashes other dri code (mga,etc) and is ancient * Wed Dec 6 2000 Mike A. Harris - Updated to CVS version xf-4.0.1h which includes many updates and integrates many Red Hat patches directly into XFree86 CVS. * Sat Nov 10 2000 Bernhard Rosenkraenzer - Update to current. This should fix, among other things, DRI/DRM stuff on Matrox cards and i18n. - Fix build with tar 1.13.18 - Add XKB patch for Romanian keyboards from Christian Gafton - Fix up Euro sign support * Wed Oct 25 2000 Bernhard Rosenkraenzer - Don't apply the PIC patch on non-ia64 platforms, it breaks X startup on x86. * Mon Sep 25 2000 Bill Nottingham - minor tweaks for ia64/glibc-2.2 build * Thu Aug 24 2000 Bill Nottingham - never mind, it doesn't. Wheee. * Wed Aug 23 2000 Bill Nottingham - oops, the r128 mobility patch breaks regular r128 cards * Tue Aug 22 2000 Bill Nottingham - fix DGA for real - add support for the r128 Mobility chips * Tue Aug 15 2000 Bill Nottingham - fix xterm app-defaults file (#13584) - don't build a shared xdm greeter lib * Mon Aug 14 2000 Bill Nottingham - fixes for MGA dri (text corruption) - spell Portuguese correctly in keymap list (#12343) - fix some absolute symlinks (#16133) - fix xman's man config path (#15974) - fix broken xdm pam code (#15952) - fix bug in ATI driver (#14344) * Fri Aug 11 2000 Bill Nottingham - revert some of the i810 code; it breaks VC switching * Sun Aug 6 2000 Bill Nottingham - fix DGA so that 4.x-compiled DGA1 apps can run against 3.3.x servers - fix tempfile handling in makedepend - use cpp, not gcc -E * Fri Aug 4 2000 Bill Nottingham - more CVS updates (Neomagic fixes, some i810) - fix sparc build * Thu Aug 3 2000 Bill Nottingham - do *not* do xfs stop/start in condrestat * Wed Aug 2 2000 Bill Nottingham - update CVS (i810 fixes, others) - move some more files out of -xdm, into xinitrc package - remove /usr/share/fonts/default/TrueType from default xfs config (#14683) - fix weirdness in the i810 driver update * Wed Aug 2 2000 Matt Wilson - hack to work around gcc bug triggered by xwd (patch207) - modified xfs post script to add in no-listen = tcp per Bill's request * Tue Jul 25 2000 Elliot Lee - Some i810/i815 stuff (new I810Drm.tar.gz, updated to xf4.0.1-I810copy.patch only to find out that it is already included in this source tree). * Mon Jul 24 2000 Bill Nottingham - add patch for xf86 vidmode extension - add icelandic keymap to list of keymaps * Sat Jul 22 2000 Bill Nottingham - hey, we recognize the geforce2 now. Wonder if it works. :) * Thu Jul 19 2000 Bill Nottingham - oops, I broke the sparc Mach64 patch on sparc * Wed Jul 18 2000 Bill Nottingham - move initscript back - update CVS - remove Mesa (use its own separate package for easier updating) - kill the GL wrapper - fix linking of dri modules so that symbol resolution with Mesa works right - add sparc Mach64 patch from DaveM - fix sparc Mach64 patch so it builds - add ffb patch from Jakub - fix xfs user creation * Fri Jul 14 2000 Elliot Lee - Fix Mesa library version info - Set Mesa package version to reflect Mesa version (not the XFree86 version), and set release to something that will facilitate upgrades from older Mesa pkgs while still being informative. - Only pass -j to toplevel make, which takes care of passing it on down. * Thu Jul 13 2000 Preston Brown - fixed xfs condrestart to do a real stop/start. - fonts.* files in font directories are config(noreplace) * Thu Jul 13 2000 Elliot Lee - Update Mesa to 3.2 release. - Use mmx/sse/x86 stuff for Mesa on 386 and up, not just if building for 686 (since MMX is available on 586 many times, and since the functionality is runtime-configured). - Try to integrate newer i810/i815 driver (unfinished) * Mon Jul 10 2000 Bill Nottingham - update CVS while I'm here - don't use ix86 PCI code on ia64 - fix some int/long bogosity in some of the drivers * Sat Jul 8 2000 Bill Nottingham - update CVS - build with new compiler to fix Xserver problems on i386 - add parallel make patch from H. J. Lu * Tue Jul 4 2000 Bill Nottingham - oops, open the right software Mesa lib - build DRI everywhere * Mon Jul 3 2000 Bill Nottingham - fix Mesa install - add Romanian keymap so keymaps get installed * Sun Jul 2 2000 Bill Nottingham - add console.apps file for xserver (#13325) - prereq chkfontpath for font packages - update CVS - bump version to 4.0.1 - add lemming patch * Fri Jun 30 2000 Bill Nottingham - update CVS, sparc patches now included - ship pam files - point X symlink to Xwrapper, not XFree86 * Thu Jun 29 2000 Bill Nottingham - fix pamsession, xfsredhat patches - turn off joystick, it relies on magic symbols defined *nowhere* * Wed Jun 28 2000 Preston Brown - merged in a bunch of patches from 3.3.6 that somehow got dropped including: - xkb changes - some xfs changes - xterm app-defaults - pam session fix for xdm - define some paths in host.def instead of a wild mess of patches - kill compat links from /etc/X11/ to /usr/X11R6/lib/X11/ * Wed Jun 28 2000 Bill Nottingham - add Mesa wrapper - put Mesa libs in /usr/lib - return of Xwrapper - take setuid off XFree86 * Wed Jun 28 2000 Jakub Jelinek - remove 3 obsolete SPARC patches - add 2 new ones * Tue Jun 27 2000 Bill Nottingham - put setuid on XFree86 (temporary) - yank setuid off xload - put the xfs %%pre back in - xfs initscript munging - fix ia64 patches * Tue Jun 27 2000 Bernhard Rosenkraenzer - Update to current CVS * Thu Jun 22 2000 Bill Nottingham - return of the font %%post/%%postuns - move some of the xdm stuff to xinitrc - put libglut in with Mesa * Sun Jun 18 2000 Matt Wilson - build glint module on alpha * Thu Jun 15 2000 Bernhard Rosenkraenzer - Fix up Xaw (Bugs #11404 and #11426) - more FHS fixes (fix bug #11358 and some related unreported bugs) * Wed Jun 14 2000 Bernhard Rosenkraenzer - split off Mesa and Mesa-devel - FHSify - fix build on alpha and ia64 * Wed Jun 7 2000 Bill Nottingham - merge in ia64 fixes * Fri Jun 2 2000 Nalin Dahyabhai - change PAM configuration to use system-auth - build fix for Sparc * Tue May 23 2000 Jakub Jelinek - don't define GlxStubLib if DllModules is not defined - otherwise things don't compile on i386 * Mon May 22 2000 Jakub Jelinek - support ffb, leo and cg6 on sparc - only switch to dlopen() loader on selected architectures * Thu May 11 2000 Bill Nottingham - switch to dlopen() loader * Wed May 10 2000 Bill Nottingham - add man pages to -devel * Sun May 7 2000 Bill Nottingham - more directory shuffles * Fri May 5 2000 Bill Nottingham - more random fixes * Wed May 3 2000 Bill Nottingham - various fixes - fix specfile for ia64 - merge drivers back into XFree86 package * Sun Apr 23 2000 Bernhard Rosenkraenzer - update xf86cfg - fix up the xf86cfg patch - various fixes * Thu Apr 20 2000 Bernhard Rosenkraenzer - Fix up x11perfcomp and move it to -tools - Fix up xfs (missing init script...) - chkconfig'ize xfs - move pswrap to -devel * Sat Apr 8 2000 Bernhard Rosenkraenzer - Add xf86cfg (successor to XF86Setup, taken from the XFree86 4.0a tree with permission from the patch author) - Move the directory fixup stuff from %pre to %triggerpostun -- XFree86 < 3.9 We don't want to fix things twice... * Wed Apr 5 2000 Bernhard Rosenkraenzer - Fix post script breakage - Disable build root strip policy (drivers can't be stripped) - strip the stuff we can safely strip manually - add /usr/include stuff - add some stuff from Mesa - we don't really want to obsolete Mesa without providing GLU and glut. - move some man pages from XFree86 to XFree86-tools, where they belong. - move some files to subpackages: beforelight, xclipboard, xclock, xfd, xieperf, xmag, xwininfo are now in XFree86-tools (rather than XFree86) makeg is now in XFree86-devel (rather than XFree86) - obsolete Mesa, glxMesa* and xpm in -libs - hope it still compiles * Tue Apr 4 2000 Jakub Jelinek - Even move sparc tweaks * Sat Apr 1 2000 Bernhard Rosenkraenzer - Make it compile on sparc (Patch from Jakub Jelinek , some additional fixes from me) - Autodetect the right version of Tcl/Tk - remove xinitrc, we get it from the xinitrc package * Sat Mar 18 2000 Bernhard Rosenkraenzer - More fixes - Fix compilation on alpha - TODO: Port our 3.3.6 patches * Wed Mar 15 2000 Bernhard Rosenkraenzer - Add the man pages ;) - Merge some patches from the RPMs at seawood.org - Various fixes * Mon Mar 13 2000 Bernhard Rosenkraenzer - Initial RPM