diff options
author | anholt <anholt@FreeBSD.org> | 2003-11-10 20:20:24 +0000 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2003-11-10 20:20:24 +0000 |
commit | 3ad1a189cdbed91b1e5886bc697d961af02826a9 (patch) | |
tree | a0af70864bb735677dad4fc646f261ee40bcd13c /x11-toolkits/fox | |
parent | 00a3e50ada24b59b28dab9ff70620626e8b41fb3 (diff) | |
download | FreeBSD-ports-3ad1a189cdbed91b1e5886bc697d961af02826a9.zip FreeBSD-ports-3ad1a189cdbed91b1e5886bc697d961af02826a9.tar.gz |
Link to libGL, not libMesaGL. Bump portrevision for this. While I'm here,
USE_MESA -> USE_GL.
Reported by: bento (kris)
Diffstat (limited to 'x11-toolkits/fox')
-rw-r--r-- | x11-toolkits/fox/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/x11-toolkits/fox/Makefile b/x11-toolkits/fox/Makefile index f620bfa..5e0bee3 100644 --- a/x11-toolkits/fox/Makefile +++ b/x11-toolkits/fox/Makefile @@ -7,7 +7,7 @@ PORTNAME= fox PORTVERSION?= 1.0.46 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= x11-toolkits MASTER_SITES= http://www.fox-toolkit.org/ftp/ \ ftp://ftp.fox-toolkit.org/pub/ \ @@ -21,7 +21,7 @@ LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ png.5:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff -USE_MESA= yes +USE_GL= yes INSTALLS_SHLIB= yes USE_REINPLACE= yes GNU_CONFIGURE= yes @@ -88,6 +88,9 @@ post-patch: 's|-O2|-O2 ${CXXFLAGS}|g' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} .endif + @${REINPLACE_CMD} -E -e \ + 's|lMesaGL|lGL|g' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} # doc prefix safeness @${REINPLACE_CMD} -E -e \ 's|^(htmldir).*$$|\1=${DOCSDIR}/html|' \ |