diff options
author | kwm <kwm@FreeBSD.org> | 2012-08-05 06:52:02 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2012-08-05 06:52:02 +0800 |
commit | 1b8e10c55262cd3b24039267af4bfdfc128a682d (patch) | |
tree | a3b9f3e6c4e41379a4ad771026302ecf0ad0ae1b /x11-toolkits | |
parent | 6183944f6686e95d3a07984429b879614c46dedd (diff) | |
download | freebsd-ports-graphics-1b8e10c55262cd3b24039267af4bfdfc128a682d.tar.gz freebsd-ports-graphics-1b8e10c55262cd3b24039267af4bfdfc128a682d.tar.zst freebsd-ports-graphics-1b8e10c55262cd3b24039267af4bfdfc128a682d.zip |
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.
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/fox17/Makefile | 3 | ||||
-rw-r--r-- | x11-toolkits/hs-GLUT/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/hs-OpenGL/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/otk/Makefile | 1 |
4 files changed, 5 insertions, 3 deletions
diff --git a/x11-toolkits/fox17/Makefile b/x11-toolkits/fox17/Makefile index ce65219ed97..39759d554e0 100644 --- a/x11-toolkits/fox17/Makefile +++ b/x11-toolkits/fox17/Makefile @@ -7,7 +7,7 @@ PORTNAME= fox PORTVERSION= 1.7.33 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits MASTER_SITES= http://ftp.fox-toolkit.org/pub/ \ ftp://ftp.fox-toolkit.org/pub/ @@ -32,6 +32,7 @@ DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${MAJORVER} USE_GCC= 4.4+ USE_GL= glut +USE_XORG= sm USE_GNOME= gnomehack USE_LDCONFIG= yes diff --git a/x11-toolkits/hs-GLUT/Makefile b/x11-toolkits/hs-GLUT/Makefile index 18590b70a23..bdffb407a1c 100644 --- a/x11-toolkits/hs-GLUT/Makefile +++ b/x11-toolkits/hs-GLUT/Makefile @@ -6,7 +6,7 @@ PORTNAME= GLUT PORTVERSION= 2.1.2.1 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= x11-toolkits haskell diff --git a/x11-toolkits/hs-OpenGL/Makefile b/x11-toolkits/hs-OpenGL/Makefile index 20c6d3070a1..626b375c883 100644 --- a/x11-toolkits/hs-OpenGL/Makefile +++ b/x11-toolkits/hs-OpenGL/Makefile @@ -6,7 +6,7 @@ PORTNAME= OpenGL PORTVERSION= 2.2.3.1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= x11-toolkits haskell diff --git a/x11-toolkits/otk/Makefile b/x11-toolkits/otk/Makefile index 69f077cf9af..7dc97dd4e38 100644 --- a/x11-toolkits/otk/Makefile +++ b/x11-toolkits/otk/Makefile @@ -7,6 +7,7 @@ PORTNAME= otk PORTVERSION= 0.95 +PORTREVISION= 1 CATEGORIES= x11-toolkits graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/v${PORTVERSION} DISTNAME= ${PORTNAME}_lib_${PORTVERSION} |