diff options
author | marcus <marcus@FreeBSD.org> | 2005-11-05 14:23:44 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-11-05 14:23:44 +0800 |
commit | 2b7888e7137702e1016f384003ca78089423d75f (patch) | |
tree | 38d7a53e323114767d8cd1cbad0d2ca86e5f2387 /x11-toolkits/gtkglext | |
parent | c73e855f7af9ee3046e3560609426ae58ee67308 (diff) | |
download | freebsd-ports-graphics-2b7888e7137702e1016f384003ca78089423d75f.tar.gz freebsd-ports-graphics-2b7888e7137702e1016f384003ca78089423d75f.tar.zst freebsd-ports-graphics-2b7888e7137702e1016f384003ca78089423d75f.zip |
Fix build with new gtk+ since the X11 pango libraries are not included
in the gtk+-2.0 pkg-config file anymore.
Submitted by: mezz
Diffstat (limited to 'x11-toolkits/gtkglext')
-rw-r--r-- | x11-toolkits/gtkglext/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/x11-toolkits/gtkglext/Makefile b/x11-toolkits/gtkglext/Makefile index a4d2bce3d1c..e819f273eb4 100644 --- a/x11-toolkits/gtkglext/Makefile +++ b/x11-toolkits/gtkglext/Makefile @@ -7,7 +7,7 @@ PORTNAME= gtkglext PORTVERSION= 1.0.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.0 @@ -20,8 +20,13 @@ USE_BZIP2= yes USE_X_PREFIX= yes USE_GNOME= gnomeprefix gnomehack gtk20 USE_GL= yes +USE_REINPLACE= yes USE_LIBTOOL_VER=15 USE_GMAKE= yes INSTALLS_SHLIB= yes +post-patch: + @${REINPLACE_CMD} -e 's|pango gmodule-2.0|pango pangox gmodule-2.0|g' \ + ${WRKSRC}/configure + .include <bsd.port.mk> |