diff options
author | jlam <jlam> | 2000-12-12 18:09:57 +0000 |
---|---|---|
committer | jlam <jlam> | 2000-12-12 18:09:57 +0000 |
commit | 3f0102b55807fcdb1d92737cd70d286d949d48c3 (patch) | |
tree | bf2b13c0d0df3c0716670903d1bf56c9a38da454 /x11/wxGTK/Makefile | |
parent | 21f62db8c3c8441a930f485e1e7a14fdd352f2e1 (diff) | |
download | pkgsrc-3f0102b55807fcdb1d92737cd70d286d949d48c3.tar.gz |
Update wxGTK to 2.2.3. Relevant changes from version 2.2.2:
Fixed bugs in HTTP code.
Implemented wxNO_FULL_REPAINT_ON_RESIZE whenever possible
and reduced flicker a little (no longer diables GTK's own
anti-flicker code).
Always have a clipping region equivalent to the update
region in OnPaint events (such as under wxMSW and wxMac).
Implemented wxListBox::SetFirstItem().
Fixed some minor problems in HTML code, wxListCtrl,
wxListBox.
Updated many translations, added Swedish.
Changed default screenpixels-per-inch from 100 to 75 in
printing code.
Updated AFM font metrics for Ghostscript fonts and let
Linux and FreeBSD default to using GS fonts (and not
Adobe fonts).
Diffstat (limited to 'x11/wxGTK/Makefile')
-rw-r--r-- | x11/wxGTK/Makefile | 46 |
1 files changed, 29 insertions, 17 deletions
diff --git a/x11/wxGTK/Makefile b/x11/wxGTK/Makefile index d43d8f1bf9a..caf713d6bce 100644 --- a/x11/wxGTK/Makefile +++ b/x11/wxGTK/Makefile @@ -1,25 +1,37 @@ -# $NetBSD: Makefile,v 1.4 2000/11/12 20:36:38 tsarna Exp $ +# $NetBSD: Makefile,v 1.5 2000/12/12 18:09:57 jlam Exp $ # -DISTNAME= wxGTK-2.2.2 -CATEGORIES= x11 -MASTER_SITES= ftp://wesley.informatik.uni-freiburg.de/pub/linux/wxxt/source/ +DISTNAME= wxGTK-2.2.3 +WRKSRC= ${WRKDIR}/wxGTK +CATEGORIES= x11 +MASTER_SITES= ftp://wesley.informatik.uni-freiburg.de/pub/linux/wxxt/source/ -MAINTAINER= tsarna@netbsd.org -HOMEPAGE= http://www.freiburg.linux.de/~wxxt/ +MAINTAINER= tsarna@netbsd.org +HOMEPAGE= http://www.freiburg.linux.de/~wxxt/ -DEPENDS+= gtk+>=1.2.7:../../x11/gtk -DEPENDS+= jpeg-6b:../../graphics/jpeg -DEPENDS+= png>=1.0.3:../../graphics/png -DEPENDS+= tiff>=3.5.2:../../graphics/tiff +DEPENDS+= gtk+>=1.2.7:../../x11/gtk +DEPENDS+= jpeg-6b:../../graphics/jpeg +DEPENDS+= png>=1.0.3:../../graphics/png +DEPENDS+= tiff>=3.5.2:../../graphics/tiff -WRKSRC= ${WRKDIR}/wxGTK +USE_GMAKE= # defined +USE_LIBTOOL= # defined +GNU_CONFIGURE= # defined +CONFIGURE_ARGS+= --with-gtk +CONFIGURE_ARGS+= --with-libjpeg=sys +CONFIGURE_ARGS+= --with-zlib=sys +CONFIGURE_ARGS+= --with-libpng=sys +CONFIGURE_ARGS+= --with-libtiff=sys +CONFIGURE_ARGS+= --disable-threads +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" -USE_GMAKE= yes -USE_LIBTOOL= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-gtk --with-libjpeg=sys --with-zlib=sys --with-libpng=sys --with-libtiff=sys --disable-threads -CPPFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" +CPPFLAGS+= -I${LOCALBASE}/include + +DOCDIR= ${PREFIX}/share/doc/wx/gtk + +post-install: + ${INSTALL_DATA_DIR} ${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/LICENCE.txt ${DOCDIR}/LICENSE + ${INSTALL_DATA} ${WRKSRC}/SYMBOLS.txt ${DOCDIR}/SYMBOLS .include "../../mk/bsd.pkg.mk" |