summaryrefslogtreecommitdiff
path: root/x11/xorg-server
AgeCommit message (Collapse)AuthorFilesLines
2007-08-17To quote Johnny Lam: "In modular-xorg we trust"joerg5-1540/+0
Remove xorg 6.9 packages from pkgsrc.
2007-01-17Add vendor patch for CVE-2006-6101, CVE-2006-6102 and CVE-2006-6103;joerg1-2/+2
this fixes possible overflows in the extensions dbe and render.
2006-12-15Mechanically replace all includes of buildlink3.mk of the followingjoerg1-2/+2
packages with the modular Xorg equivalent. Those are falling back to the old location by default, so this commmit doesn't change dependencies. graphics/xpm ==> x11/libXpm fonts/Xft2 ==> x11/libXft x11/Xfixes ==> x11/libXfixes x11/xcursor ==> x11/libXcursor x11/Xrender ==> x11/libXrender x11/Xrandr ==> libXrandr
2006-11-06Add a SETUID_ROOT_PERMS entry for Xorg, because it is.dsainty1-1/+3
2006-10-09Flag a number of packages I use as supporting (user-)destdir.joerg1-3/+5
apg is a bit special as it has some hardcoded ownership, so mark that as "destdir".
2006-09-14Actually bump the revisions as promised.joerg1-2/+2
2006-08-22Fix SA21450 using patch from Xorg CVS. Bump revisions of xorg-libs andjoerg1-2/+2
xorg-server.
2006-06-17Add support for the i945GM to the i810 driver.markd1-2/+2
From patches by Dimitry Andric. Bump PKGREVISION of xorg-server.
2006-05-03Apply patch to fix vulnerability reported in CVE-2006-1526.tron1-2/+2
Bump package revision because of this fix.
2006-04-28Fix NetBSD.cf for AMD64's server build as suggested by Matthieu Herrbjoerg1-2/+2
via Blair Sadewitz. Fixes PR 33362. Bump revisions of -imake and -server.
2006-04-22Fix Perl reference in getconfig and getconfig.pl and also requirejoerg1-6/+5
Perl at runtime. Bump revision.
2006-03-20Fix CVE-2006-0745: Comparing the address of geteuid and 0 to detectjoerg1-2/+2
whether the server was started by non-root is not likely to ever work. This could allow a local user to override system files or run arbitrary code. Patch from the original advisory. Bump revision of xorg-server.
2006-03-02Fix AGP GART support on DragonFly. Fix PLIST on DragonFly.joerg2-3/+6
Bump xorg-server revision.
2006-02-12Joerg Sonnenberger will be the maintainer.xtraeme1-2/+2
2006-02-11Fixed some pkglint warnings.rillig3-8/+7
2006-02-10Remove conditional include of "x11/Xrender/buildlink3.mk" under Linuxtron1-5/+1
because the file is included unconditional later anyway.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-02-01Fix sysmouse handling on DragonFly, mostly garbage arrived. Thanks forjoerg2-6/+6
Simon Schubert to point out the right file. Fix ATI driver option to not include the theatre module, if disabled. Shown by Robert Sebastian Gerus during testing of the first fix. Bump revision of xorg-server.
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz1-2/+2
of the shlib major bump. PKGREVISION++ for the dependencies.
2006-01-23Bump revision for now working wheel mouse support in DragonFly.joerg1-2/+2
2006-01-21Add missing entries to PLIST. Bump PKGREVISION.hira2-2/+6
2006-01-18Update meta-pkgs/xorg to 6.9.0.xtraeme3-172/+223
The full list of changes: http://ftp.x.org/pub/X11R7.0/doc/html/RELNOTES2.html Thanks to joerg@ and reed@ for testing on DragonFlyBSD. Tested on NetBSD/i386 3.0/-current and DragonFlyBSD-1.4/i386.
2006-01-01Remove stuff that was marked for removal after 2005Q4.wiz1-6/+1
2005-12-08Bumped the PKGREVISION of the packages that have been broken by the recentrillig1-2/+2
"pkglint --autofix" change.
2005-12-02Prefix all options with "xorg-server-", since they are all packagewiz2-80/+97
specific. Add legacy handling for old names.
2005-10-05Define FileManSuffix and FileManDir (just like already donereed1-1/+3
for MiscMan, DriverMan). This is to fix ongoing problem where I find manpages installed to 5x instead of 5 and PLIST is wrong so won't package. (I saw this on Linux and I tested this on Linux and NetBSD.)
2005-10-05Do not define XF86Server YES, so bin/XFree86 is not installed.reed3-6/+4
Bump PKGREVISION. (If you want XFree86 executable then install the real thing.)
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam1-2/+2
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+2
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-31Packages have no business modifying PKG_DEFAULT_OPTIONS -- it's adillo1-2/+3
user settable variable. Set PKG_SUGGESTED_OPTIONS instead. Also, make use of PKG_OPTIONS_LEGACY_VARS. Reviewed by wiz.
2005-04-15Add PLIST_SUBST for the ioport.hira2-9/+16
2005-04-15 - Add PLIST_SUBST for the scanpci.hira2-4/+12
- Build the scanpci on the NetBSD/macppc.
2005-04-14Require at least xorg-libs>=6.8.2nb1 (radeon driver fix)xtraeme1-1/+4
2005-04-14Now the radeon driver works correctly, bump PKGREVISION to knowxtraeme1-2/+2
which version is the fixed one.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-30Unify PLIST. OK'd by xtraeme@.hira10-390/+393
2005-03-22Add support for Darwin/MacOSXadam7-279/+332
2005-03-02Add missing entry to PLIST. Bump PKGREVISION to 1.hira2-2/+4
2005-03-01Update xorg to 6.8.2.xtraeme3-6/+9
Changes: * Render implementation fixes * Updated x86emu and resynced with upstream at Scitech * Updated SiS driver * Updated Nvidia driver (opensource version) * Render acceleration for ATI's R100 and R200-series cards * Substantial speedups in the software implementation of the render extensions when compiled with gcc 3.4 on the i386 architecture. * Infrastructure for rotation support in drivers * New Trapezoid specification for the Render extension o Respecify Render to include only 'normal' traps o Allow backward compatibility but internally covert to new format * Software mouse cursor is now based on the Damage extension * A new keyboard driver is enabled by default. The old driver is disabled unless explicitly compiled in by defining the macro |USE_DEPRECATED_KEYBOARD_DRIVER|. * All extensions (except Xserver-specific extensions "DMX" and "XpExtension")can now be enabled/disabled from the configuration file and from the command line. * Mac OS X updates: o Support dynamic screen configuration changes in rootless mode o Added option to always use Mac command key equivalents o Interpret scroll wheel mouse events correctly when shift is held down o Added trivial Xinput support o Fixed launch of X clients from Finder with a space in their path o Fixed some GLX rendering problems on Mac OS X 10.2 and earlier * Updated xterm version
2005-02-21Bump PKGREVISION for -current/amd64 fixes.hira1-2/+2
2005-02-09Apply patch from Jeremy C. Reed to define common values for thextraeme2-3/+8
manual pages on Linux. Also use unexec ${RMDIR} in a directory.
2005-02-09Add missing files, reported by Lasse Kliemann in PR pkg/29212.xtraeme1-1/+14
2005-01-25PLIST file for OpenBSD... I copied it from the NetBSD one and I have notxtraeme1-0/+5
tested it, because I don't use it, anyway it should do the trick.
2005-01-25Apply patches from Todd Willey for DragonFlyBSD, this closes PR pkg/29042.xtraeme1-0/+8
Thank you!
2005-01-25Remove unused file.hira1-3/+0
2005-01-24Don't use imake to get the supported drivers. It does not workhira2-13/+24
before installing imake.
2005-01-24Fix previous commit (DRIVER -> CARDDRIVER).hira2-72/+72
2005-01-24Make drivers selectable with options.mk. By default, all of the drivershira6-79/+107
which are supported by the platform are built. OK'd by xtraeme@.
2005-01-07Added patch for Xorg Bug #1488: Fix crash on i830 during startup.reed1-2/+2
Bump PKGREVISION for xorg-server package. This was reported by dheeraj of ece gatech edu via PR #28877.
2004-12-27Finish my previous commit and unbreak xorg-*:xtraeme1-2/+2
* Move the subst macros for threadlib.h from xorg-libs to xorg/Makefile.common. * SUBST_CLASSES should be appended. Thanks to Manuel Stuehn <manuel.stuehn@student.uni-siegen.de> for the email showing me the problems.