#! /usr/bin/perl -w # # $FreeBSD$ # # This hack is to sanitise the results of what the user may have # "done" while editing the commit log message.. :-) Peter Wemm. # # Note: this uses an enhancement to cvs's verifymsg functionality. # Normally, the check is advisory only, the FreeBSD version reads # back the file after the verifymsg file so that this script can # make changes. # use strict; use lib $ENV{CVSROOT}; use CVSROOT::cfg; ############################################################# # # Main Body # ############################################################ my $filename = shift; die "Usage: logcheck filename\n" unless $filename; # Read the log file in, stripping 'CVS:' lines and removing trailing # white spaces. open IN, "< $filename" or die "logcheck: Cannot open for reading: $filename: $!\n"; my @log_in = map { s/^(.*?)\s*$/$1/; $1 } grep { !/^CVS:/ } ; close IN; # Remove duplicate blank lines. my $i = 0; while ($i < scalar(@log_in) - 1) { if ($log_in[$i] eq "" && $log_in[$i + 1] eq "") { splice(@log_in, $i, 1); next; } ++$i; } # Remove leading and trailing blank lines. (There will be at most # one because of the duplicate removal above). shift @log_in if $log_in[0] eq ""; pop @log_in if $log_in[-1] eq ""; # Scan through the commit message looking for templated headers # as defined in the configuration file, and rcstemplate. # Assume that these only exist in the last paragraph. # Filter out blank entries, and type check if necessary. my $j = $#log_in; # The index of the last entry in the commit msg. my $error = 0; while ($j >= 0) { my $logline = $log_in[$j]; --$j; # Hitting a blank line means that we've seen all of the last paragraph. last if $logline eq ""; unless ($logline =~ /^(.*?):\s*(.*)$/) { ### XXX # We're here because we saw a line that didn't match # a template header (no ':'). This could be a continuation # line from the previous header, or the log message proper. # We don't know, so run the risk of checking the last paragraph # of the log message for headers. next; } my $header = $1; my $value = $2; my $pattern = $cfg::TEMPLATE_HEADERS{$header}; # Ignore unrecognised headers. unless (defined($pattern)) { ### print "Warning: unknown template header: $header\n"; next; } # Filter out the template header if it's blank. if ($value eq "") { splice(@log_in, $j + 1, 1); next; } # Type check the header unless ($value =~ /^$pattern$/) { print "Error: $header: should match '$pattern'.\n"; ++$error; next; } } # Make sure that there is some content in the log message. # XXX Note that logcheck isn't evoked if the log message is # completely empty. This is a bug in cvs. my $log = "@log_in"; die "Log message contains no content!\n" if $log =~ /^\s*$/; # Write the modified log file back out. my $tmpfile = $filename . "tmp"; open OUT, "> $tmpfile" or die "logcheck: Cannot open for writing: $tmpfile: $!\n"; print OUT map { "$_\n" } @log_in; close OUT; # Stop the commit if there was a problem with the template headers. if ($error) { print "There were $error errors in the template headers.\n"; print "Please fix the log message and commit again.\n"; print "A copy of your log message was saved in $tmpfile.\n"; exit 1; } # Nuke likely editor backups. unlink "$filename.~"; unlink "$filename.bak"; # Overwrite the log message with our sanitised one. (See the comment # block at the top of this script for an explaination of why.) rename($tmpfile, $filename) or die "logcheck: Could not rename $tmpfile to $filename: $!"; exit 0; ron6/files/lodash-4.17.19'>dependabot/npm_and_yarn/devel/electron6/files/lodash-4.17.19 FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/x11-servers
Commit message (Collapse)AuthorAgeFilesLines
* Update Xorg server to 1.6.0rnoland2009-04-0419-625/+111
| | | | | | | | o Update randrproto, libXrandr and xrandr to 1.3.0 o Update xf86-video-intel to 2.6.3 o Update other less common drivers as needed o Mark a bunch of un-maintained input drivers ignored o Update the various slave X server ports as well
* Given that the x86-centric approach of mmap(2)'ing PCI memory viamarius2009-04-012-1/+14
| | | | | | | | mem(4) doesn't work on sparc64, revert to the pre-libpciaccess approach of using the tty(4) device opened by the X server there. Hopefully we have proper MI means of doing so one day. Approved by: flz
* Add the patch that I missed in the last commit.rnoland2009-03-091-0/+90
|
* Add a patch from git to fix issues with gnome-2.25.rnoland2009-03-092-2/+1
| | | | Requested by: marcus
* Add a patch to handle memory barriers on amd64 the same as linux.rnoland2009-03-032-1/+12
| | | | | | This is reported to prevent some lockups with the nv driver on amd64. http://bugs.freedesktop.org/show_bug.cgi?id=3168
* Add a patch to deal with the hald/xorg startup race. With this patchrnoland2009-02-082-1/+144
| | | | | | it should be safe for hald to start even after the Xserver. Obtained from: xorg-devel
* - Replace open(2)/close(2) pairs with stat(2). Closing mouse device hasjkim2009-02-052-28/+62
| | | | | | | a side effect of changing current operation level and sysmouse(4) lets you open /dev/sysmouse multiple times unlike other mouse drivers. - Check if /dev/mouse is linked to /dev/psm0 or /dev/ums0. - Simplify the patches a little while I am here.
* - Partially back out the previous attempt to fix PS/2 protocol support.jkim2009-02-032-14/+23
| | | | | | | | | | | | Extended PS/2 protocol without moused(8) is only supported from FreeBSD 7.1 and above. - Try default PS/2 and USB mouse ports if /dev/sysmouse does not exist. Previously, it was only available when HAL support was compiled in. They should be able to handle SysMouse protocol at operation level 1. - Check protocol for ums(4) as it only supports SysMouse protocol. - Sync X server with mouse driver. Reviewed by: rnoland
* Add dependency on dri2proto to more server components.rnoland2009-01-283-3/+6
| | | | Reported by: pointyhat (pav)
* Build record and xtrap extensions.flz2009-01-272-2/+7
| | | | | PR: ports/131033 Submitted by: "Sergey N. Voronkov" <serg@tmn.ru>
* add dri2proto depend here as wellrnoland2009-01-261-1/+2
| | | | | Reported by: pointyhat (pav) Approved by: garga (mentor, implicit)
* Add dependency on dri2protornoland2009-01-261-1/+2
| | | | Approved by: garga (mentor, implicit)
* - Update X.org ports to 7.4+ (few ports are more recent than the katamari).flz2009-01-2419-566/+60
| | | | | | | | - Bump PORTREVISION for all ports depending on libglut since the shlib version number went from 4 to 3. - Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't installed anymore. - Couple of ports fixes (mostly missing xorg components added to USE_XORG).
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.rafan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav)
* Conversion from (now defunct) autoconf-2.61 to autoconf-2.62ade2008-08-201-1/+1
| | | | Tested by: exp build run (erwin)
* Reset grog@FreeBSD.org: last commit was more than 6 months ago, andlinimon2008-08-071-1/+1
| | | | PRs are outstanding.
* - fix typo -> plist for -DNOPORTDOCSitetcu2008-07-042-7/+10
| | | | | | | | - SUB_FILES= pkg-plist and s/X11/Xorg/ - use MASTER_SITE_BERLIOS - bump PORTREVISION Prompted by: QA Tindy run
* Remove x11-servers/xorg-server-snap as it has been unmaintained for a while.flz2008-06-1916-698/+0
|
* Update x11-servers/xorg-server to 1.4.2 (security update).flz2008-06-155-681/+4
|
* Explicitely disable dtrace support for now.flz2008-06-094-4/+4
| | | | Reported by: kris
* Bump portrevision due to upgrade of devel/gettext.edwin2008-06-064-3/+4
| | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
* Add upstream patch (don't free not-allocated dbus socket).flz2008-05-292-1/+15
| | | | | | PR: ports/124081 Submitted by: deischen Obtained from: fd.o git repository
* Disable dtrace support for now as userland tracing isn't supported yet.flz2008-05-271-1/+1
| | | | Suggested by: jb
* Add xephyr, a kdrive-based X server. Xephyr will ultimately replace Xnest.flz2008-05-204-0/+55
| | | | | PR: ports/123795 Submitted by: Max Brazhnikov <makc@issp.ac.ru>
* Mark xorg-server-snap as DEPRECATED and set EXPIRATION_DATE to next month.flz2008-05-201-0/+2
|
* Retire xorg-printserver.flz2008-05-165-972/+0
|
* - Remove unneeded dependency from gtk12/gtk20 [1]miwi2008-04-207-11/+12
| | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
* - Auto-detect and use native extended PS/2 protocols with the latest psm(4).jkim2008-04-163-33/+102
| | | | | | | | Since psm has gained write(2) support, it can be directly driven by X.org input drivers without help of moused(8) or SysMouse protocol. - Fix regressions without moused running. PR: ports/122363, ports/122405
* Fix mouse probing issues with HAL support:jkim2008-04-023-1/+154
| | | | | | | | | | | | | | | | | | - Do not probe /dev/psm0 as SysMouse if HAL support is enabled. - Add /dev/ums0 as SysMouse if HAL support is disabled. - Do not force sysmouse(4) mode unless device is /dev/sysmouse. When moused(8) is not running, current mode level is untouched. - Correcly check if moused is actually running. Checking pid file is not enough because it may be /var/run/moused.<device>.pid when it is invoked by devd(8) for USB mice. - Do not attach device if it is opened by moused. - Correctly add device path for HAL. This patch is tested with many possible combinations of moused(8), HAL, PS/2 mouse, USB mouse, and xorg.conf. Tested by: cokane, jkim, marcus, Matthew Seaman (m dot seaman at infracaninophile dot co dot uk)
* - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGmiwi2008-03-261-1/+1
| | | | | | - Bump PORTREVISION Approved by: portmgr (xorg cleanup)
* Add inputproto and xtrans to USE_XORG.flz2008-03-151-2/+3
| | | | Reported by: marcus, erwin
* Add inputproto and xtrans to USE_XORG.flz2008-03-151-2/+3
| | | | Reported by: erwin
* Add patch that fixes xmodmap use in .xinitrc.flz2008-03-132-1/+148
| | | | | | Submitted by: Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp> Obtained from: fd.o xorg/xserver repository Commit id: 27ad5d74c20f01516a1bff73be283f8982fcf0fe
* Remove support for XFree8-4.flz2008-03-0850-2241/+0
| | | | | | | | From now on, X_WINDOW_SYSTEM != "xorg" is not supported anymore. PR: ports/119418 Submitted by: flz Approved by: portmgr (pav)
* - Check correct POSIX spec. date for clock_gettime(2) whetherjkim2008-03-063-1/+26
| | | | | | | | CLOCK_MONOTONIC is available. - If FreeBSD-specific CLOCK_MONOTONIC_FAST is available, use it instead of precise but slow gettimeofday(2) or CLOCK_MONOTONIC. Reviewed by: stable, x11
* Fix xserver multiple vulnerabilities.flz2008-01-232-1/+516
| | | | Security: http://www.vuxml.org/freebsd/fe2b6597-c9a4-11dc-8da8-0008a18a9961.html
* - Add local patch to fix alpha build. [1]flz2008-01-023-2/+40
| | | | | | | | | | - Add local patch to fix powerpc build. [2][3] - Fix OPTIONS handling for SUID option. [4] PR: ports/113601 [1], ports/118850 [2], ports/118851 [3], ports/119012 [4] Submitted by: naddy [1], grehan [2][3], Dmitry Marakasov [4]
* - OPTIONS'ify.flz2007-12-133-1/+40
| | | | - Fix build and register dependency when compiled with HAL support.
* - OPTIONS'ify (HAL, AIGLX, SUID).flz2007-12-131-20/+24
| | | | | | - Fix CONFIGURE_ARGS. [1] Submitted by: alvest@earthlink.net [1]
* Fix plist for sparc64. Should be a no-op on other archs, but bumplinimon2007-11-202-13/+14
| | | | | | | | portrevision for sparc64. While here, pet portlint. Tested on: pointyhat Submitted by: flz Approved by: portmgr (self)
* Add temporary fix for LEDs. Proper fix will be available in nextflz2007-10-292-1/+21
| | | | | | xorg-server release but this one has been deemed good enough for now. Obtained from: fd.o bugzilla
* Restore default optimization on RELENG_7.flz2007-10-241-4/+0
| | | | | PR: ports/117445 Submitted by: Ildar <dar.quonb@gmai.com>
* - Explicit some configure arguments.flz2007-10-101-11/+7
| | | | - Mark as IGNORE on alpha since it does work correctly.
* Change to new x11-drivers category.nork2007-10-069-382/+0
| | | | Repo copied by: marcus (portmgr)
* Teach xorg-server that FreeBSD >= 700053 supports PCI domains andmarius2007-09-303-0/+395
| | | | | | | how to deal with it. This affects !386 only and is based on the respective Linux support code. Approved by: flz
* Switch autoconf dependencies from 2.53 or 2.59 to 2.61.linimon2007-09-301-2/+2
| | | | | PR: ports/116639 Submitted by: aDe
* - Update X.org ports to 7.3.flz2007-09-1427-406/+147
| | | | | | | | - Mark XFree86-4 as DEPRECATED with EXPIRATION_DATE set to 2007-12-25. I hope that nobody will be bored enough on Christmas to remove them on that day. Tested by: vehemens, Rene Ladan, Beech Rintoul, sarek on x11@
* - Consistencify descriptionsdanfe2007-07-031-4/+2
| | | | | - Kill unnecessary attribution - Trim EOL whitespace
* Fix missing Xlibs dependency.danfe2007-07-031-0/+1
| | | | Reported by: pav
* - Fix the build with recent GCC [1]danfe2007-07-013-10/+135
| | | | | | | - Pet portlint(1) - Clean up Makefile Reported by: pointyhat (logs) [1]
* Band-aid over memory hungry gcc 4.2 when compiling xf86ScanPci.c.lesi2007-06-222-0/+15
| | | | Submitted by: Michiel Boland ( michiel at boland dot org )
* Clenup share/X11 directory upon deinstall.lesi2007-05-312-0/+2
| | | | Pointed out by: kris
* xorg-fontserver moved from x11-servers to x11-fonts (xfs).flz2007-05-209-160/+0
| | | | Approved by: portmgr (erwin)
* - Welcome X.org 7.2 \o/.flz2007-05-20105-3671/+1156
| | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
* Fix loading modules on current by adding patch from devel/imake-6 sincelesi2007-02-232-1/+40
| | | | | | | | | local copy of imake is used at configuring. Since FreeBSD versions older than 300004 are not supported, simplify patch to just return elf for default. PR: ports/109091 Submitted by: Szilveszter Adam (sziszi at bsd dot hu)
* Add vendor patch preventing overwiting of data on the stack or otherlesi2007-01-282-1/+9
| | | | | | | parts of server by dbe and render extensions. PR: ports/107733 Security: CVE-2006-6101 CVE-2006-6102 CVE-2006-6103
* Respect X11BASE.laszlof2006-12-011-0/+5
| | | | | Approved by: flz (mentor) Reported By: pointyhat
* - Fix install with Xorg 6.9.0, unbreakpav2006-11-193-14/+31
| | | | | | | | | - Support amd64 PR: ports/104532 Submitted by: Xavier Beaudouin <kiwi@oav.net>, Anish Mistry <amistry@am-productions.biz> Approved by: maintainer timeout (x11, 1 month)
* Add some old internal FreeType definitions to fix the server runtime. Thesemarcus2006-10-221-1/+4
| | | | | | | definitions come from the old ftinternal.h. Submitted by: Scott Allendorf <scott-allendorf@uiowa.edu> Approved by: portmgr (implicit)
* Remove the FreeType EXTRA_PATCHES now that they are in XFree86-4-libraries.marcus2006-10-183-12/+3
| | | | | Submitted by: Scott Allendorf <scott-allendorf@uiowa.edu> Approved by: portmgr (implicit)
* Chase the GNOME X11BASE to LOCALBASE move, and fix the build with themarcus2006-10-1414-4/+789
| | | | | | | new freetype2 where needed. Submitted by: mezz, ahze, pav, and many others Approved by: portmgr (implicit, kris)
* BROKEN: Does not installkris2006-09-171-0/+2
|
* NO_PACKAGE is not appropriatekris2006-09-031-1/+0
|
* Fix crash by bad pcf font.lesi2006-08-265-1/+100
| | | | | Obtained from: XFree86 CVS Security: CVE-2006-3467
* Fix crash by bad pcf font.lesi2006-08-267-4/+107
| | | | | Obtained from: X.org bugzilla #7535 Security: CVE-2006-3467
* - Add support to Intel 945GMmnag2006-08-212-1/+336
| | | | | | | - portlint(1) PR: 100673 Approved by: x11 (No objection and maintainer timeout, 30 days)
* - s,INSTALLS_SHLIB,USE_LDCONFIG,gclsung2006-08-151-1/+1
| | | | | | | | - these include www/ x11/ x11-clocks/ x11-servers/ x11-themes/ maintained by ports@ PR: ports/101916 Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org>
* Update to 0.14.6.nork2006-08-133-41/+50
|
* Update to 1.7.2erwin2006-06-242-5/+5
| | | | | PR: 99379 Submitted by: Ports fury
* Add a better workaround for LP64 bug in ProcRenderCompositeGlyphs() inlesi2006-06-052-1/+12
| | | | | | | | | | Xrender from XFree86 that takes endianess into account. This should fix the following errors on FreeBSD/sparc64: 'RenderBadGlyphSet (invalid GlyphSet parameter)'. (Details: serial 8980 error_code 178 request_code 153 minor_code 24) Submitted by: marius
* Update to 1.71arved2006-05-292-6/+9
| | | | | PR: 98026 Submitted by: Kato Tsuguru
* Remove USE_REINPLACE from categories starting with Xedwin2006-05-131-1/+0
|
* Add my patch for buffer overflow in the Render extension's TriFan/TriStripanholt2006-05-036-1/+30
| | | | | | | requests. Security: CVE-2006-1526 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=6642
* Complete removal of cfb from sunffb driver as was done post release inlesi2006-04-202-1/+102
| | | | | | | | | X.org CVS to avoid failure to load this driver because of unresolved symbols. Digged up and tested by: Matthias Muthmann PR: sparc64/94886 Obtained from: X.org CVS
* Add patch from X.Org, fixing privilege escalation.lesi2006-03-222-0/+21
| | | | | Security: http://www.vuxml.org/61534682-b8f4-11da-8e62-000e0c33c2dc Security: CVE-2006-0745
* Add a description of CorePointer, and Cosmetic change.nork2006-03-191-2/+7
| | | | Discussed with: ume
* Oops, fix typo.nork2006-03-191-1/+1
|
* Fix up some parameters and messages.nork2006-03-191-10/+23
|
* o Refrect my environment values.nork2006-03-193-7/+13
| | | | | | | | | | o Add some messages[1]. o Back-out 'rename .o to .so'. I forgot to chase pkg-plist. [2] synaptics_drv.o is relocatable object, not shared object. Reviewed by: ume [1] Pointed out by: ume [2]
* o Rename .o to .so. [1]nork2006-03-193-10/+16
| | | | | | | | | o Bump PORTREVISION, accordingly. o Update setup note. [1] I forgot hw.psm.synaptics_support=1. o I confirmed SHMConfig "on" support on 6-stable. Pointed out by: ume [1]
* Add synaptics-0.14.4, is a driver for the Synaptics TouchPadnork2006-03-198-0/+264
| | | | | | for XOrg/XFree86 4.x. WWW: http://web.telia.com/~u89404340/touchpad/
* BROKEN on sparc64: Does not compilekris2006-03-071-0/+1
| | | | Approved by: portmgr (implicit)
* Conversion to a single libtool environment.ade2006-02-232-7/+10
| | | | Approved by: portmgr (kris)
* Remove the FreeBSD KEYWORD from all rc.d scripts where it appears.dougb2006-02-212-3/+1
| | | | | | | We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts.
* Fix build on FreeBSD 4.Xlesi2006-02-025-0/+59
| | | | | PR: ports/92137 Submitted by: ume
* SHA256ifyedwin2006-01-242-0/+2
| | | | Approved by: krion@
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryedwin2006-01-226-17/+17
| | | | | Approved by: krion@ PR: ports/88711 (related)
* Fixups after removal of separate mtree file for X_WINDOW_SYSTEM=XOrg case.lesi2006-01-221-4/+4
|
* Upgrade to X.Org 6.9.0 release.lesi2006-01-2247-1443/+271
| | | | | Remove separate mtree file for X_WINDOW_SYSTEM=XOrg case. Both X11 distributions now use the one from /etc/mtree again.
* Make rc script require ldconfig so font server starts properly on systemslesi2006-01-064-3/+5
| | | | | | | that already include local/X11R6 scripts in rcorder. PR: ports/91279 Submitted by: Victor Snezhko (snezhko at indorsoft dot ru)
* Update to RC3.anholt2005-12-062-4/+4
|
* Fix one of the hangs on new GeForce cards using a patch from X.Org CVS.anholt2005-11-302-1/+23
| | | | | PR: ports/87160 Submitted by: Ying-Chieh Chen <yinjieh@csie.nctu.edu.tw>
* Update xorg-server-snap to 6.9RC2 (6.9.99.902).anholt2005-11-307-575/+9
|
* - Add SHA256pav2005-11-263-0/+3
|
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentade2005-11-151-3/+1
| | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
* Do not put Apple Cinema Display to sleep right after DDC probe.lesi2005-11-121-4/+14
| | | | | | | | No revision bump as this probably affects relatively small amount of users. PR: ports/88623 Reported, fix found by: John O'Brien Obtained from: X.Org CVS
* If port belongs to X11 distribution different than ${X_WINDOW_SYSTEM} one,lesi2005-11-1224-12/+64
| | | | | | point to The X Window System and Virtual Consoles chapter of FAQ. Add SHA256.
* Update to the 6.8.99.16 snapshot, and add in a fix for a memory leak in cursoranholt2005-10-168-69/+318
| | | | | change handling as well as a merge of some important nv changes to avoid hangs and reduce corruption in some cases.
* Install rc sript with ".sample" postfix so it does not get executed bylesi2005-09-213-3/+3
| | | | | | | default. Noticed by: Rostislav Krasny (rosti.bsd at gmail.com) Pointy hat to: lesi
* Fix the fix for CAN-2005-2495.lesi2005-09-212-128/+271
| | | | Obtained from: XFree86 CVS
* Fix the fix for CAN-2005-2495.lesi2005-09-192-30/+44
| | | | Obtained from: Xorg CVS
* Fix the fix for CAN-2005-2495.lesi2005-09-19