diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-05-28 15:08:50 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-05-28 15:08:50 +0000 |
commit | 89d99adbdfd8da92fd2f333aba2f1f47e46a03c3 (patch) | |
tree | b60bf0611d8780579a064345dbd591bc0d69110e /x11-toolkits/wxgtk/Makefile | |
parent | 326c360ddabdd4ea9148b0cd563d891766e440e5 (diff) | |
download | FreeBSD-ports-89d99adbdfd8da92fd2f333aba2f1f47e46a03c3.zip FreeBSD-ports-89d99adbdfd8da92fd2f333aba2f1f47e46a03c3.tar.gz |
- Update to 2.2.7;
- enable GL support;
- take over maintainership.
Diffstat (limited to 'x11-toolkits/wxgtk/Makefile')
-rw-r--r-- | x11-toolkits/wxgtk/Makefile | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/x11-toolkits/wxgtk/Makefile b/x11-toolkits/wxgtk/Makefile index 259bed6..301b4a5 100644 --- a/x11-toolkits/wxgtk/Makefile +++ b/x11-toolkits/wxgtk/Makefile @@ -6,18 +6,18 @@ # PORTNAME= wxgtk -PORTVERSION= 2.2.6 +PORTVERSION= 2.2.7 CATEGORIES= x11-toolkits MASTER_SITES= ftp://wesley.informatik.uni-freiburg.de/pub/linux/wxxt/source/ DISTNAME= wxGTK-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sobomax@FreeBSD.org LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png \ - tiff.4:${PORTSDIR}/graphics/tiff \ - jpeg.9:${PORTSDIR}/graphics/jpeg + tiff.4:${PORTSDIR}/graphics/tiff USE_X_PREFIX= yes +USE_MESA= yes USE_GMAKE= yes USE_GTK= yes USE_AUTOCONF= yes @@ -25,9 +25,13 @@ INSTALLS_SHLIB= yes CONFIGURE_ARGS= --with-libpng=sys \ --with-libjpeg=sys \ --with-libtiff=sys \ - --with-zlib=sys -CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" + --with-zlib=sys \ + --with-opengl +CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} \ + -I${LOCALBASE}/include \ + -I${X11BASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib \ + -L${X11BASE}/lib" AUTOCONF= autoconf && \ ${PERL} -pi -e 's|-l\$$THREADS_LIB|${PTHREAD_LIBS}|g ; \ |