notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: graphics/dri/Makefile

Number of commits found: 77

Monday, 10 Apr 2017
19:14 rezny search for other commits by this committer
Update Mesa to 17.0.3

* OpenGL 4.5 support for RadeonSI and recent Intel
* Use LLVM 4.0 by default, building with 3.9 is possible via MESA_LLVM_VER
* DRI3 remains enabled at compile time, but is now disabled at runtime for
  stock FreeBSD.  Set LIBGL_DRI3_ENABLE in the environment to enable DRI3.
  This extra check is added when compiling on stock FreeBSD, not DRM-next.
  This change was made to work around a problem in libEGL, which fails to
  fall back to using DRI2 when run on a system without DRI3 support.

Reviewed by:	jmd, mat
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D10250
Original commitRevision:438198 
Saturday, 11 Feb 2017
13:31 rezny search for other commits by this committer
Update Mesa to 13.0.4

* Use LLVM 3.9
* OpenGL 4.4 support for recent Intel and ReadeonSI

PR:	214581
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D9438
Original commitRevision:433862 
Friday, 21 Oct 2016
12:51 mat search for other commits by this committer
${RM} already has -f.

PR:		213570
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Original commitRevision:424411 
Thursday, 15 Sep 2016
16:16 marino search for other commits by this committer
Add USES+=ssl to 3 of 8 graphics/libGL/Makefile.common consumers

Despite having a configure argument of --with-sha1=libcrypto, only three
of the eight users of graphics/libGL/Makefile.common actually link to
SSL libraries.  Individually add USES=ssl to these three ports rather
than have all 8 having this requirement.

Approved by:	SSL blanket
Original commitRevision:422214 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Friday, 25 Dec 2015
11:30 kwm search for other commits by this committer
Update mesa to 11.0.8.

 * Depend on libelf on DragonFly
 * Rework the vdpau support code and enable vdpau for DragonFly, FreeBSD
   doesn't support it just yet.
 * Revert commit that removed support for non-render nodes. Neither
   FreeBSD nor DragonFly supports render nodes at this time.
 * Fix LDFLAGS to work with GCC5, which DragonFly uses by default.
 * Update Makefile.targets: ffast-math isn't used since 8.0.3, don't
   replace x86_64 with amd64 on Dragonfly. Drop obsolete python disable
   replace.
Original commitRevision:404412 
Saturday, 5 Dec 2015
10:46 kwm search for other commits by this committer
Add patch to use drm.h instead of redefining the types.

This unbreaks the build of xorg-server on 9.3.
Original commitRevision:403056 
Saturday, 10 Oct 2015
21:04 kwm search for other commits by this committer
Update Mesa to 10.6.9.

* Unbreak build on powerpc and other !x86 archs by moving the
  --with-dri-drivers logic from dri/Makefile to the
  libGL/Makefile.common file. So the settings are applied to all mesa ports,
  this was missed in the 10.6.6 update. [1]
* Don't try to enable OpenCL support on anything other then i386 and amd64. [1]
* Move the texture-float and vdpau logic to Makefile.common even if the latter
  isn't supported yet. Keep OPTIONS_DEFINE/DEFAULT in dri/Makefile since they
  need to defined before bsd.port.options.mk is included, and they only affect
  the dri modules.
* Sed on 11 and 10 supports \< and \> however sed on 9.x and dragonfly do not,
  replace the sed keywords with some magic to get the intended results. [2]

Submitted by:		marino@ [2]
Reported and tested by:	arved@ (on ppc32)[1]
Original commitRevision:399021 
Thursday, 17 Sep 2015
18:07 kwm search for other commits by this committer
Update Mesa port to 10.6.6 and add Clover.
Add beignet 1.1.0.
Add clinfo, clblas, clfft and clrng.

The major change is that all Mesa ports are now configured the same way.
This fixes several problems and enables new features.  The details
are described in this blog post:
http://blogs.freebsdish.org/graphics/2015/03/18/unifying-mesa-ports-configure/

The second important change is the OpenCL support.  Mesa's
implementation, Clover, is enabled as well as Beignet.  Clover
targets all Gallium drivers, only Radeon GPUs in our case.  Beignet
is for Intel GPUs starting with Ivy Bridge.  Thanks to Johannes
Dieterich, O. Hartman, and Koop Mast for their work on OpenCL!  As a
bonus, there are several OpenCL-based math ports added (clblas,
clfft and clrng). For more information and known issues, please see
https://wiki.freebsd.org/Graphics/OpenCL

The third change is the removal of Mesa 9.1.7 which was installed on
FreeBSD 9.3-RELEASE.  There is now only one version of Mesa in the Ports
tree (10.6.6) for all supported versions of FreeBSD.

Other, smaller changes:

* Include libosmesa into the Mesa framework; this changes libOSMesa
  shlib version.

* bsd.mesalib.mk was renamed and split up in two files namely
  Makefile.common and Makefile.targets.  So ports can overwrite variables
  set by Makefile.common and are used by Makefile.targets.

* Some text in the pkg-descr files was wrong, clean it up.  While here,
  update the WWW to the main mesa3d.org upstream page.

* devel/clinfo was added, a glxinfo like program but for OpenCL.

Non-x86 hardware reports are very welcome since we changed the framework
quite a bit.

Obtained from:	Graphics team development repo.
Original commitRevision:397198 
Friday, 30 Jan 2015
01:03 kwm search for other commits by this committer
Update Mesa to 10.4.3.

Move LLVM version selection to bsd.mesalib.mk so the clover port can use it.
Clover isn't included yet because it is a work in progress and doesn't work
yet.
Original commitRevision:378134 
Thursday, 27 Nov 2014
14:48 kwm search for other commits by this committer
Update to 10.3.4.

Enable TEXTURE option in dri by default [1]. This allows for OpenGL higher
  then 2.1 to be supported.
Make sure we depend on llvm at run time when gallium is enabled.
  The gallium based modules link to the llvm shared libraries. [2]

PR:		followup on 194655 [2]
Approved by:	core@ [1]
Obtained from:	xorg-dev repo
Original commitRevision:373491 
Friday, 21 Nov 2014
12:39 kwm search for other commits by this committer
Correct categorie of the llvm port
Original commitRevision:372991 
11:34 kwm search for other commits by this committer
Update mesa to 10.3.3.

graphics/dri:
Move gettext:build to bsd.mesalib.mk so it present for all mesa ports. [1]
VDPAU needs GALLIUM so check for that, since it a Gallium state tracker. [1][2]
Rework llvm33/llvm34 selection so we can use the llvm version later on.
VDPAU links against the llvm libraries so we need to depend on the llvm port
as a run dependency .[1]
After discussion remove the VDPAU option for now. Radeon kernel drivers
currently
don't support hardware-assisted video decoding. And Gallium/VDPAU doesn't
support
the intel driver.

PR:		194655 [1]
PR:		194580 [2]
Original commitRevision:372988 
Friday, 17 Oct 2014
11:45 kwm search for other commits by this committer
Fix the build when NLS is unset.

Submitted by:	mat@
Original commitRevision:371048 
09:53 kwm search for other commits by this committer
Update Mesa ports to new default of 9.1.7 and more recent version to 10.3.0.

The port will switch to the newer version if hw context is available in the
i915kms driver.

- Get ride of WITH_NEW_XORG.
- Use @comment in plist to ignore unwanted files in the stagedir, instead of
  trying to remove them in post-install.
- Bump portrevision of 9.1.7 due to dependency changes.
- Drop :keepla from USES=libtool.
- Drop @dirrm[try] from plists
- Give dri propper options, with pkg-help for additional information.
- Make separate plist for dri for the different versions, the combined plist
  was headache inducing.
- Add "workaround" patches to allow clang to build the dri port on i386 [1].
  USE_GCC is now only needed for 8.x.
- Add gbm port and USE_GL switch for it.

PR:		192286 [1]
Submitted by:	Carlos Jacobo Puga Medina [1]
Approved by:	portmgr (bapt@)
In collaberation with:	dumbbell@
Obtained from:	xorg-dev
Original commitRevision:371035 
Wednesday, 10 Sep 2014
20:50 gerald search for other commits by this committer
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
Original commitRevision:367888 
Tuesday, 2 Sep 2014
22:54 sbruno search for other commits by this committer
Enable SWRAST for armv6 architectures to allow building of dricore libs

PR:		191767
Reviewed by:	kwm
Original commitRevision:367121 
Saturday, 31 May 2014
14:15 kwm search for other commits by this committer
Move the ARCH = i386 check to bsd.mesalib.mk so it applies to all
Mesa ports. This will unbreak libglapi/libGL/libglesv2 on i386.

This was probably exposed by when the libglapi port was added.
Original commitRevision:355979 
Thursday, 22 May 2014
11:31 kwm search for other commits by this committer
Fix Malformed conditional

Submitted by:	portsnap index builder
Original commitRevision:354825 
10:25 kwm search for other commits by this committer
Tweak OSVERSION check to also include newer 9.x versions, since gcc from
base is not good enough.
For i386 depend on gcc form ports. This is due to a clang assertion [1],
which has been reported in the clang bugtracker.

Reported by:	many [1]
Original commitRevision:354823 
Saturday, 17 May 2014
09:56 kwm search for other commits by this committer
Enable shared libglapi library and make a port for it. It is used by libGL
 and libglesv2. This fixes undefined symbol issues in libglesv2.
Clean up stagedir of unwanted files/directories, so check-plist passes.
Switch logic and always build gallium support in graphics/dri on i386 and
 amd64. Gallium is used for Radeon HD 5000+ support.

Use USES=tar:bzip2
Under WITH_NEW_XORG:
Add patch to remove some dependencies for aclocal.m4 which are absent.
 This allows the removal of USE_AUTOTOOLS, REAPPLY_PATCHES and pre-configure
 target.
Add INSTALL_TARGET=install-strip to strip libraries.
USES=libtool:keepla
Fix a /use typo with /usr in post-patch.

Bump PORTREVISION for the libtool and libglapi changes.

Submitted by:	tijl@ (libtool and autotools changes)
Obtained from:	xorg-dev repo (libglapi and gallium changes)
Original commitRevision:354307 
Monday, 5 May 2014
09:45 bapt search for other commits by this committer
Convert all :U to :tu and :L to :tl

Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)

bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore

Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier

With hat:	portmgr
Original commitRevision:352986 
Wednesday, 16 Apr 2014
18:28 zeising search for other commits by this committer
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
Original commitRevision:351411 
Friday, 31 Jan 2014
22:21 kwm search for other commits by this committer
Fix typo

Submitted by:	John Hein <jhein@symmetricom.com>
Original commitRevision:342087 
21:05 kwm search for other commits by this committer
Add powerpc64 to the checks for powerpc.

PR:		ports/184957
Submitted by:	Andreas Tobler <andreast@FreeBSD.org>
Original commitRevision:342073 
20:49 kwm search for other commits by this committer
Make sure DIR_DRIVERS is always defined. This is needed because arm/mips
don't have any drivers defined which results in make errors.

PR:		ports/182875 [1]
Submitted by:	Anton Shterenlikht <mexas@bris.ac.uk> [1], mat@
Original commitRevision:342067 
Friday, 13 Dec 2013
12:21 kwm search for other commits by this committer
Fix graphics/dri on ia64.

Please note that WITH_NEW_XORG isn't tested due to other issues.

Submitted by:	marcel@
Original commitRevision:336340 
Tuesday, 26 Nov 2013
21:42 kwm search for other commits by this committer
Unbreak build with global unset NLS.
Original commitRevision:334977 
20:58 kwm search for other commits by this committer
Update to 9.1.7.

Stagify, abuse stage dir and plist to only install files we want to install.
So we don't have to do complex do-install anymore, yay.

For the WITH_GALLIUM option we don't need llvm at run-time.

Obtained from:	xorg-dev repo
Original commitRevision:334972 
Sunday, 24 Nov 2013
17:40 mat search for other commits by this committer
- Wrap up cd && foo in parenthesis, it'd break with bmake -j
- Replace some FIND ... CPIO with COPYTREE_SHARE.
Original commitRevision:334748 
Sunday, 29 Sep 2013
17:01 zeising search for other commits by this committer
The FreeBSD graphics/x11 team proudly presents
a kwm, zeising production:

MESA 9.1.6

Starring:
Mesa 9.1.6, including libGL, libGLU and dri (new xorg only)
Addition of libEGL and libglesv2
KMS support for ATI graphics cards in 10-current (new xorg only)
Improved sparc64 support for new xorg. [1]
pixman 0.30.2, including shlib bump and portrevision bumps
libX11 1.6.2
Make absolute pointing devices work with x11-drivers/xf86-input-mouse
x11-drivers/xf86-video-ati 7.2.0 for 10-current (KMS aware ati driver)

Also starring:
Updates to drivers and other libraries and utilities

Additional notes:
When updating MESA related ports (libGL, dri) you need to remove old versions
first.  See UPDATING for details.

PR:		ports/181962 [2]
Submitted by:	marius [1]
		zeising [2]
Exp-run by:	bdrewery
Approved by:	portmgr (bdrewery)

Thanks to all who helped testing!
Original commitRevision:328711 
Friday, 20 Sep 2013
18:35 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
graphics)
Original commitRevision:327733 
Saturday, 25 May 2013
14:37 zeising search for other commits by this committer
The FreeBSD x11 team proudly presents
an zeising, kwm, miwi, bapt, eadler production:

Xorg 7.7

Starring:
xserver 1.12.4 (new xorg only)
Mesa 8.0.4, including libGL, libGLU and dri (new xorg only)
libX11 1.5.0
libxcb 1.9
libdrm 2.4.42 (new xorg only)
freeglut 2.8.1
Also starring:
Updates to drivers and other libraries and utilities

Additional notes:
Change pkgconf to be a build dependency.
Add a new USE_XORG, xcb, to depend on libxcb and update all ports to use
this.
Trim makefile headers.
Take maintanership of x11/xcb-proto, ok'd by ashish.
If you are running WITH_NEW_XORG=, you need to rebuild all installed
drivers, see UPDATING for more information.
Various fixes to make ports compile.

PR:		ports/177942
Exp-run by:	miwi
Approved by:	portmgr (miwi)

Thanks to all who helped testing!
Original commitRevision:319055 
Tuesday, 23 Apr 2013
10:47 bapt search for other commits by this committer
Convert g* to USES=pkgconfig
Original commitRevision:316343 
Friday, 8 Mar 2013
01:01 jkim search for other commits by this committer
Fix packaging and simplify.
Original commitRevision:313610 
Sunday, 3 Mar 2013
15:02 swills search for other commits by this committer
- Fix plist on amd64
Original commitRevision:313356 
Saturday, 2 Mar 2013
21:32 swills search for other commits by this committer
- Fix logic error which caused the gallium-intel driver to be always disabled
[1]
- Make it possible to choose which DRI drivers will be built [2]

PR:		ports/174725 [1]
PR:		ports/154651 [2]
Submitted by:	John Marino <draco@marino.st> [1]
Submitted by:	bf [2]
Reviewed by:	kwm [2]
Original commitRevision:313300 
Thursday, 13 Sep 2012
18:07 swills search for other commits by this committer
- Use PTHREAD_LIBS instead of -lpthread

PR:		ports/170506
Submitted by:	Jason E. Hale <bsdkaffee@gmail.com>
Original commitRevision:304226 
Monday, 30 Jul 2012
17:47 dougb search for other commits by this committer
Add USE_PKGCONFIG= build, otherwise configure fails
Original commit
04:36 linimon search for other commits by this committer
Attempt to fix build of dri, libGL, and libdrm on tier-2 archs.

PR:		ports/169874
Submitted by:	marius, linimon
Tested on:	amd64, arm, i386, powerpc, sparc
Thanks to:	bz, andyt
Original commit
Saturday, 21 Apr 2012
17:03 miwi search for other commits by this committer
- Please welcome Xorg 7.5.2

       The Xorg Team is pleased to announce the next round of Xorg updates.
       The team created a new flag called WITH_NEW_XORG that users can include
       in /etc/make.conf. This was created for the intel KMS work being done
       althouthough It probably works for other chips. Unfortunately, the intel
       KMS driver will only work on FreeBSD 9(RELENG|STABLE) or 10/HEAD users.
       Older version of FreeBSD will not be supported. Intel users will need
       to patch their source manually with Konstantin?s KMS kernel patch to get
       the newer chips to work. Please carefully read UPDATING entry.

Changes:

        - libdrm 2.4.31 (including KMS support)
        - mesa 7.11.2
        - xorg-server 1.10.6
        - a lot of new Graphic Drivers.

    I would like to thank:

         Koop Mast
         Eitan Adler
         Niclas Zeising
         and all helpers and testers from x11@.
Original commit
Friday, 25 Feb 2011
16:52 miwi search for other commits by this committer
- Please welcome Xorg 7.5.1

The X-Server has been patched to the latest 1.7.X series, drivers
and fonts have been updated to the latest versions. This update includes
some components from Xorg 7.6 with a lot of improvements, and it seems
that the performance is much better than the old version. Also this
Update fix build issues with clang and binutils 2.17.50 in current,
remove 6.X gruft and de-author pkg-descr.

I would like to thank:

        Beat Gaetzi
        Dima Panov
        Koop Mast
        Eitan Adler
        and all Testers.

PR:             ports/147646
                ports/148035
                ports/148744
                ports/150223
                ports/152889
                ports/154457
Original commit
Thursday, 25 Mar 2010
23:11 marius search for other commits by this committer
Unbreak the Mesa3D 7.4.4 build for powerpc and sparc64 after the 7.6.1
integration.

Approved by:    rnoland
Original commit
Monday, 22 Mar 2010
05:05 linimon search for other commits by this committer
Mark as broken on ia64 and sparc64: fails to install.

Hat:            portmgr
Original commit
Sunday, 7 Feb 2010
11:51 nork search for other commits by this committer
Limited Update to Mesa3D 7.6.1 and libdrm 2.4.17.

[MEMO]
In this commit, no version changed.  But if you put
'WITHOUT_NOUVEAU' on /etc/make.conf, you can use
new version of Mesa3D and libdrm.

Discussed with: rnoland on freebsd-ports/freebsd-x11.
Original commit
Saturday, 20 Jun 2009
16:05 rnoland search for other commits by this committer
Update to 7.4.3

This is a bug fix release.
Original commit
Wednesday, 15 Apr 2009
14:14 pav search for other commits by this committer
- Mark MAKE_JOBS_UNSAFE

Approved by:    portmgr (implicit)
Original commit
Friday, 10 Apr 2009
18:00 marius search for other commits by this committer
Re-enable DRI on powerpc and sparc64, mainly in order to fix
packaging.

Approved by:    rnoland
Original commit
Saturday, 24 Jan 2009
21:07 rnoland search for other commits by this committer
Add dependency on dri2proto

Reported by: Herbert J. Skuhra

Approved by:    garga (mentor, implicit)
Original commit
Friday, 23 Jan 2009
16:28 flz search for other commits by this committer
- Update X.org ports to 7.4+ (few ports are more recent than the katamari).
- 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).
Original commit
Thursday, 1 May 2008
14:08 miwi search for other commits by this committer
- Add amd64 support for intel 965 chips
- Remove unneeded USE_GCC line
- Remove Xfree from the CONFLICT linie
- Bump PORTREVISION

PR:             123292
Submitted by:   Dominic Fandrey <kamikaze@bsdforen.de>
Reviewed by:    flz
Approved by:    flz (x11 maintainer)
Original commit
Friday, 7 Mar 2008
21:47 flz search for other commits by this committer
Remove support for XFree8-4.

From now on, X_WINDOW_SYSTEM != "xorg" is not supported anymore.

PR:             ports/119418
Submitted by:   flz
Approved by:    portmgr (pav)
Original commit
Thursday, 4 Oct 2007
01:10 edwin search for other commits by this committer
Remove always-false/true conditions based on OSVERSION 500000
Original commit
Wednesday, 29 Aug 2007
10:33 flz search for other commits by this committer
- Refactor MesaLib ports.
- Update graphics/libGLw to 7.0.1.
Original commit
Wednesday, 15 Aug 2007
16:55 jkim search for other commits by this committer
Update to 7.0.1.

Approved by:    anholt (maintainer)
Original commit
Monday, 2 Jul 2007
19:31 jkim search for other commits by this committer
Fix accidental removal of PORTEPOCH in the previous commit.

Pointed out by: kib
Original commit
17:10 jkim search for other commits by this committer
- Update to 7.0 (to sync with other Mesa libraries).
- Do not remove HAVE_POSIX_MEMALIGN from configuration files
where posix_memalign(3) is actually available.
- Use amd64-specific configuration file for amd64 build.  It gives
slightly better performance because it uses amd64 assembly code
in some places.

Approved by:    anholt (maintainer time out)
Original commit
Monday, 21 May 2007
14:59 flz search for other commits by this committer
Depend explicitely on textproc/expat2.

Reported by:    des
Approved by:    portmgr (blanket)
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Monday, 30 Apr 2007
11:44 mnag search for other commits by this committer
- Add Intel 945 GM support
- portlint(1)

PR:             111333
Submitted by:   mnag
Approved by:    anholt (maintainer timeout, 23 days)
Original commit
Friday, 1 Sep 2006
04:17 anholt search for other commits by this committer
Fix build on 4.x.  This is slightly different from the submitted patch, but
I think it should still work.

PR:             Mark Andrews <Mark_Andrews@isc.org>
Submitted by:   ports/92704
Original commit
Sunday, 25 Jun 2006
14:43 anholt search for other commits by this committer
Mark new CONFLICTS for dri-devel.
Original commit
Saturday, 21 Jan 2006
18:55 lesi search for other commits by this committer
Upgrade to X.Org 6.9.0 release.
Remove separate mtree file for X_WINDOW_SYSTEM=XOrg case. Both X11
distributions now use the one from /etc/mtree again.
Original commit
Wednesday, 15 Jun 2005
02:16 anholt search for other commits by this committer
Mark these ports IGNORE on XFree86, due to libGL incompatibility and the
presence of xfree86-dri.  Also, fix up the wording and the website in pkg-descr.
Original commit
Thursday, 5 May 2005
01:20 anholt search for other commits by this committer
[1] Fix the build on alpha by removing -ffast-math from the build cflags.
[2] Remove an unnecessary configure script from when this was built from
    monolithic sources.
[3] Register conflicts for dri-devel in dri.

Submitted by:   [1] krismail
Original commit
Monday, 14 Feb 2005
07:08 anholt search for other commits by this committer
Update to a newer snapshot of stable Mesa.  Includes a fix for hangs with
RV200 Radeons (thanks Dave Airlie!) [1], fixes for software fallbacks, the usual
pile of little conformance and other bugfixes, and fixing the hang on first lock
grab on AMD64 (that was a really lame bug).  Host the distfile on freefall as
well until public_distfiles propagates.

PR:             [1] ports/75731
Submitted by:   [1] pb
Original commit
Wednesday, 12 Jan 2005
23:29 anholt search for other commits by this committer
Update dri port to use a more recent Mesa (and drm) snapshot.  Includes
many conformance/bug fixes in the core, fixes for two hangs in the radeon
driver, bugfixes in the r200 driver, adds more chip IDs, and adds fixes to
drivers whose DRM will hopefully be ported soon.  Also install i915 driver on
AMD64, as EM64T machines may have that chipset.
Original commit
Wednesday, 29 Dec 2004
22:41 anholt search for other commits by this committer
[1] Try to respect PTHREAD_LIBS, to unbreak the build on 4.x.
[2] Respect CXXFLAGS a little more thoroughly.

PR:             [1] ports/75473
Submitted by:   [1] KIMURA Yasuhiro, yasu at utahime dot org, among many others
Based on:       [1] patch by thierry
Original commit
Friday, 24 Dec 2004
09:08 anholt search for other commits by this committer
Bump PORTREVISION for previous commit.
Original commit
09:05 anholt search for other commits by this committer
[1] Link against libexpat so that the drivers actually work.
[2] Respect CC/CFLAGS/etc.

Submitted by:   [1] Vladimir Novoseltsev, blacknova at tut dot by
Original commit
Thursday, 23 Dec 2004
01:35 anholt search for other commits by this committer
Update X.Org ports to 6.8.1, and the DRI port to use Mesa 6.2.  Because Mesa 6.2
DRI drivers are incompatible with the old libGL in XFree86, they have been
repocopied to graphics/xfree86-dri.  Also note that with this commit the html
manpages are going away, and with it the runtime dependency on perl for the
imake port.

Release notes at: http://www.x.org/X11R6.8.1/RELNOTES.txt

Props to:       kris (multiple cluster runs and sorting through logs)
                lesi (fixing all the issues in those logs, and more)
Original commit
Sunday, 26 Sep 2004
03:20 anholt search for other commits by this committer
[1] Don't try to package the missing tdfx_dri.so on amd64.
[2] Package sis_dri.so on i386.

PR:             [2] ports/71312
Submitted by:   [2] oliver
Approved by:    portmgr (linimon)
Original commit
Wednesday, 11 Aug 2004
19:45 anholt search for other commits by this committer
Add missing dependency on libX11, to fix package build.
Original commit
Sunday, 25 Jul 2004
20:31 anholt search for other commits by this committer
This works on AMD64 as well.  Fixes build of xorg metaport on AMD64.
Original commit
Friday, 23 Jul 2004
07:07 anholt search for other commits by this committer
Update the stable DRI port to X.Org 6.7.0-release's DRI modules.  Note that
the version number has changed to track the Mesa version instead of the X
release, which is not really related to DRI development.  This is because it is
very likely that we will be building the DRI drivers from Mesa soon.

Tested on:      XFree86 4.3 + R100, X.Org 6.7.0 + R200
Original commit
Saturday, 22 Nov 2003
23:58 anholt search for other commits by this committer
Mark ONLY_FOR_ARCHS=i386 alpha.
Original commit
Sunday, 9 Nov 2003
08:24 anholt search for other commits by this committer
Add new port "dri".  This port contains the split-out DRI client drivers from
XFree86-4-Server.  I decided the history from XFree86-4-Server wasn't
significant enough, and will hopefully be obsolete soon when Mesa starts
providing the DRI drivers.
Original commit

Number of commits found: 77