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/libGL/bsd.mesalib.mk

Number of commits found: 57

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 
Sunday, 8 Mar 2015
21:42 kwm search for other commits by this committer
Update mesa ports to 10.4.6.
Original commitRevision:380804 
Thursday, 5 Mar 2015
22:34 kwm search for other commits by this committer
Update the mesa ports to 10.4.5.
Original commitRevision:380561 
Monday, 9 Feb 2015
14:47 kwm search for other commits by this committer
Update Mesa to 10.4.4.

Switch to llvm 3.5 for the Mesa 10.x series to be inline with the current
OpenCL work. There are regressions in llvm 3.4.x regarding OpenCL.

Obtained from:	graphics team devel repo
Original commitRevision:378733 
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 
Monday, 22 Dec 2014
19:38 jkim search for other commits by this committer
Fix plist.
Original commitRevision:375262 
19:00 kwm search for other commits by this committer
Update mesa based ports to 10.4.0.
Original commitRevision:375260 
Saturday, 29 Nov 2014
18:22 tijl search for other commits by this committer
Split devel/gettext in devel/gettext-runtime and devel/gettext-tools.  The
first contains runtime libraries such as libintl and the latter contains
developer tools such as msgfmt.  Ports that use gettext will usually need
a LIB_DEPENDS on gettext-runtime and a BUILD_DEPENDS on gettext-tools.

USES=gettext-runtime can be used to set a LIB/BUILD/RUN_DEPENDS on
devel/gettext-runtime and USES=gettext-tools can be used to set a
BUILD/RUN_DEPENDS on devel/gettext-tools.  USES=gettext is now the same
as "USES=gettext-runtime gettext-tools" meaning a LIB_DEPENDS on
devel/gettext-runtime and a BUILD_DEPENDS on devel/gettext-tools.

Update gettext to 0.19.3.

Remove :oldver from converters/libiconv and devel/gettext-runtime.  Leave
symlinks with the old library versions to avoid the need to bump
PORTREVISION on a large number of dependent ports.  When most of the
dependent ports have had normal version updates, PORTREVISION can be
bumped on the remaining ones (low number) and the links can be removed.

Fix some ports that installed files in lib/locale instead of share/locale.

PR:		194038
Reviewed by:	bapt
Exp-run:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:373636 
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 
13:14 kwm search for other commits by this committer
Fix libEGL and libGLESv2 conflict between libEGL/libglesv2 and the
nvidia-driver port in the same fashion it was done as the conflict
with the libGL port.

Mesa ports:
Add pkg-[de]install scripts to handle the symlinks in the libEGL
  and libglesv2 port.
Move pkg-[de]install scripts of libGL out of files/
Put the real mesa libraries into lib/.mesa so we don't have each
  port create a directory for it own use.

Nvidia-driver:
Only apply the libEGL.so and libGLESv2.so alternative install
  directory if nvidia-driver actually ships them. Copied from
  PR submitter, since it was much cleaner then my initial attempt.
Make pkg-install script check if the nvidia-driver port installed
  the libEGL/libglesv2 libraries and only then make the symlinks.
  This should allow the script to work with the slave ports which
  don't install these libraries.
Make the pkg-deinstall script check if the mesa version of
 the libEGL/libGLESv2 libraries are installed before trying to
 recreate the symlinks of those ports.

PR:		194924
Submitted by:	Gerard Seibert <gerard_seibert@outlook.com>
Approved by:	portmgr (angrybapt)
Original commitRevision:373483 
Friday, 21 Nov 2014
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 
Monday, 27 Oct 2014
20:39 kwm search for other commits by this committer
Update the "new" Mesa to 10.3.2.

Add code to select the correct MASTER_SITE.
Mesa version 10.3.0 -> distdir 10.3
Mesa version 10.3.2 -> distdir 10.3.2

Obtained from:	xorg-dev repo
Original commitRevision:371607 
Saturday, 18 Oct 2014
09:13 kwm search for other commits by this committer
Enable the new Mesa if the DragonFly version is new enough.

Submitted by:	Francois Tigeot
Original commitRevision:371102 
Friday, 17 Oct 2014
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 
Tuesday, 17 Jun 2014
17:23 jkim search for other commits by this committer
Catch up with recent MASTERSITE changes.
Original commitRevision:358152 
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 
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 
Saturday, 4 Jan 2014
17:35 bapt search for other commits by this committer
Add a mirror to avoid failing on clusters
Original commitRevision:338653 
Tuesday, 17 Dec 2013
10:55 kwm search for other commits by this committer
make, make -V MAINTAINER output the correct value again.
Original commitRevision:336713 
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 
20:11 kwm search for other commits by this committer
Unbreak WITH_NEW_XORG patch stage.
Original commitRevision:334965 
Monday, 25 Nov 2013
20:30 mva search for other commits by this committer
 - Fix the usage of 'python' to get rid of the implicit lang/python
   dependency in the mesa ports

Approved by:	x11@ (via kwm@)
Original commitRevision:334896 
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 
Monday, 2 Sep 2013
14:39 bapt search for other commits by this committer
Do not overwrite any existing USES that breaks graphics/dri defining
USES=pkgconfig
Original commitRevision:326002 
Saturday, 17 Aug 2013
22:31 mva search for other commits by this committer
- Fix Mesa builds by adding lang/python, since it does not support
  setting an explicit Python version as build dependency
Original commitRevision:324875 
Wednesday, 14 Aug 2013
22:35 ak search for other commits by this committer
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Original commitRevision:324744 
Tuesday, 4 Jun 2013
19:31 zeising search for other commits by this committer
Fix security issues in xorg client libraries.
Most libraries were updated to newer versions, in some cases patches
were backported instead.

Most notably, x11/libX11 was updated to 1.6.0

Security:	CVE-2013-1981
		CVE-2013-1982
		CVE-2013-1983
		CVE-2013-1984
		CVE-2013-1985
		CVE-2013-1986
		CVE-2013-1987
		CVE-2013-1988
		CVE-2013-1989
		CVE-2013-1990
		CVE-2013-1991
		CVE-2013-1992
		CVE-2013-1993
		CVE-2013-1994
		CVE-2013-1995
		CVE-2013-1996
		CVE-2013-1997
		CVE-2013-1998
		CVE-2013-1999
		CVE-2013-2000
		CVE-2013-2001
		CVE-2013-2002
		CVE-2013-2003
		CVE-2013-2004
		CVE-2013-2005
		CVE-2013-2062
		CVE-2013-2063
		CVE-2013-2064
		CVE-2013-2066
Original commitRevision:319899 
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 
Friday, 3 May 2013
13:11 bapt search for other commits by this committer
Make sure bmake respect :U and :L as it used to work in make(1)
Original commitRevision:317201 
Friday, 8 Mar 2013
12:55 zeising search for other commits by this committer
Unbreak: Switch to USES=bison to pick up dependency on bison.

Obtained from:	xorg development repo
Original commitRevision:313641 
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, 3 Sep 2012
19:04 eadler search for other commits by this committer
After a report of an error, mark graphics/libGL as not MAKE_JOBS_SAFE

PR:		ports/162412
Submitted by:	4720@hushmail.com
Reviewed by:	zeising
Original commitRevision:303610 
Saturday, 4 Aug 2012
22:52 kwm search for other commits by this committer
Switch from libglut to freeglut and retire libglut. Libglut hasn't been
developed in years and has been dropped from the MESA 8.0 distribution.
Freeglut is a rewrite of glut and is actively developed and is used by
many linux distributions instead of libglut.

Bump all ports that directly depend on libglut because of the shlib version
change.

There are some extra items in this patch.

*) Because freeglut doesn't have the same dependancies as libglut, some ports
	need extra dependencies added to USE_XORG to make them build.
*) Mark graphics/f90gl broken, f90gl depends on a header that is only shipped
	with libglut.
*) Remove option for libglut/freeglut selection in games/cake, only freeglut
	remains now.
*) While here fix a png related build issue games/vegastrike.

Thanks to miwi for running the exp-run.

Approved by:	portmgr (miwi)

Collaboration with:	zeising@
Obtained from:	xorg-dev staging area.
Original commit
Monday, 30 Jul 2012
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
Sunday, 10 Jun 2012
05:47 miwi search for other commits by this committer
- Unbreak build with clang

PR:             168902
Submitted by:   dim@
Tested by:      O. Hartmann" <ohartman@zedat.fu-berlin.de>
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, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
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
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, 22 Aug 2009
00:23 amdmi3 search for other commits by this committer
- Switch SourceForge ports to the new File Release System: categories starting
with G
Original commit
Wednesday, 24 Jun 2009
01:15 rnoland search for other commits by this committer
Update to 7.4.4
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
Sunday, 17 May 2009
00:04 miwi search for other commits by this committer
- Make following ports MAKE_JOBS_SAFE:

graphics/dri
graphics/libGL
graphics/libGLU
graphics/libGLw
graphics/libglut
graphics/mesa-demos

PR:             133025
Submitted by:   Anonymous <swell.k@gmail.com>
Oked:           rnoland
Original commit
Friday, 15 May 2009
13:15 rnoland search for other commits by this committer
Update to Mesa release 7.4.2
Original commit
Thursday, 7 May 2009
19:37 rnoland search for other commits by this committer
Update to 7.4.1
Original commit
Saturday, 4 Apr 2009
04:16 rnoland search for other commits by this committer
Update the Mesa ports to 7.4

PR:             133167
Submitted by:   Anonymous <swell.k@gmail.com>
Original commit
Monday, 2 Feb 2009
09:09 linimon search for other commits by this committer
Make graphics/libGL/bsd.mesalib.mk play nicer with its slave port
graphics/libglut and vice versa.

Hat:    portmgr
Original commit
Saturday, 24 Jan 2009
18:13 rnoland search for other commits by this committer
Update mesa related ports to 7.3

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
Tuesday, 29 Apr 2008
15:05 flz search for other commits by this committer
Update Mesa libraries (GL, GLU and GLw) and dri to 7.0.3.
Original commit
Wednesday, 23 Apr 2008
12:13 miwi search for other commits by this committer
- Remove unneeded XFree86 conflicts

Approved by:    flz
Original commit
Saturday, 19 Apr 2008
17:56 miwi search for other commits by this committer
- Remove unneeded dependency from gtk12/gtk20 [1]
- 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)
Original commit
Thursday, 25 Oct 2007
10:42 flz search for other commits by this committer
Fix dri build on alpha (disable -ffast-math).

PR:             ports/113599
Submitted by:   naddy
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

Number of commits found: 57