diff options
Diffstat (limited to 'irc')
-rw-r--r-- | irc/xchat-gnome/Makefile | 3 | ||||
-rw-r--r-- | irc/xchat/Makefile | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/irc/xchat-gnome/Makefile b/irc/xchat-gnome/Makefile index c656dff33376..80a71671aad6 100644 --- a/irc/xchat-gnome/Makefile +++ b/irc/xchat-gnome/Makefile @@ -7,7 +7,7 @@ PORTNAME= xchat PORTVERSION= 0.26.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= irc gnome ipv6 MASTER_SITES= GNOME MASTER_SITE_SUBDIR= sources/xchat-gnome/${PORTVERSION:R} @@ -112,6 +112,7 @@ pre-everything:: post-patch: @${REINPLACE_CMD} -E -e 's|PY_LIBS=.*|PY_LIBS="-L\$$PY_EXEC_PREFIX/lib/python\$$PY_VER/config -lpython\$$PY_VER ${PTHREAD_LIBS} -lutil"|' \ -e 's|tcl-8.4/lib|lib/tcl8.3|g' \ + -e 's|-DGTK_DISABLE_DEPRECATED||g' \ -e 's|-fgnu89-inline||g' \ ${WRKSRC}/configure diff --git a/irc/xchat/Makefile b/irc/xchat/Makefile index e4fd2af2d599..403f5f838442 100644 --- a/irc/xchat/Makefile +++ b/irc/xchat/Makefile @@ -8,7 +8,7 @@ PORTNAME= xchat PORTVERSION= 2.8.6 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= irc gnome ipv6 MASTER_SITES= SF \ http://xchat.org/files/source/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/ @@ -118,6 +118,10 @@ CONFIGURE_ARGS+=--enable-socks post-patch: @${REINPLACE_CMD} -E -e 's|PY_LIBS=.*|PY_LIBS="-L\$$PY_EXEC_PREFIX/lib/python\$$PY_VER/config -lpython\$$PY_VER ${PTHREAD_LIBS} -lutil"|' \ ${WRKSRC}/configure +.for file in dccgui.c fe-gtk.c maingui.c menu.c plugin-tray.c sexy-spell-entry.c xtext.c xtext.h + @${REINPLACE_CMD} -e 's|#define GTK_DISABLE_DEPRECATED||g' \ + ${WRKSRC}/src/fe-gtk/${file} +.endfor # Create plugins directory even when no plugins are installed post-install: |