diff options
author | marcus <marcus@FreeBSD.org> | 2003-02-19 04:30:17 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-02-19 04:30:17 +0800 |
commit | 8717631d67493fa712b056120022b2bcd85a23ac (patch) | |
tree | 5c1ec87dbe54db85dc778a53713323d47681b109 /irc/xchat2 | |
parent | 9423566afe2229cd1c99ed606e19d81d02128558 (diff) | |
download | freebsd-ports-gnome-8717631d67493fa712b056120022b2bcd85a23ac.tar.gz freebsd-ports-gnome-8717631d67493fa712b056120022b2bcd85a23ac.tar.zst freebsd-ports-gnome-8717631d67493fa712b056120022b2bcd85a23ac.zip |
* Add optional Tcl support
* Convert from pkg-comment to COMMENT
PR: 48438
Submitted by: Koop Mast <einekoai@chello.nl>
Diffstat (limited to 'irc/xchat2')
-rw-r--r-- | irc/xchat2/Makefile | 19 | ||||
-rw-r--r-- | irc/xchat2/pkg-comment | 1 | ||||
-rw-r--r-- | irc/xchat2/pkg-plist | 1 |
3 files changed, 19 insertions, 2 deletions
diff --git a/irc/xchat2/Makefile b/irc/xchat2/Makefile index ce18750b4151..0d2bcf156659 100644 --- a/irc/xchat2/Makefile +++ b/irc/xchat2/Makefile @@ -13,6 +13,7 @@ MASTER_SITES= http://xchat.org/files/source/2.0/ \ DISTNAME= xchat-${PORTVERSION} MAINTAINER= gnome@FreeBSD.org +COMMENT= An X11 IRC client using the GTK+ 2 toolkit LIB_DEPENDS= gtk-x11-2.0.200:${PORTSDIR}/x11-toolkits/gtk20 @@ -48,8 +49,21 @@ CONFIGURE_ARGS+= --disable-python PLIST_SUB= PYTHON="@comment " .endif +.if defined(WITH_TCL) +LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 +CONFIGURE_ARGS+= --enable-tcl=${LOCALBASE}/lib/tcl8.3 +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS} \ + -I${LOCALBASE}/include/tcl8.3" \ + LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS} \ + -L${LOCALBASE}/lib/tcl8.3" +PLIST_SUB= TCL="" +.else +CONFIGURE_ARGS+= --enable-tcl=no +PLIST_SUB= TCL="@comment " +.endif + pre-everything:: -.if !defined(WITH_PYTHON) || !defined(WITH_SOCKS) +.if !defined(WITH_PYTHON) || !defined(WITH_SOCKS) || !defined(WITH_TCL) @${ECHO_MSG} "You may specify the following on the command line:" @${ECHO_MSG} "" .endif @@ -59,6 +73,9 @@ pre-everything:: .if !defined(WITH_SOCKS) @${ECHO_MSG} "WITH_SOCKS=yes for SOCKS5 proxy support" .endif +.if !defined(WITH_TCL) + @${ECHO_MSG} "WITH_TCL=yes for tcl support" +.endif post-patch: @${REINPLACE_CMD} \ diff --git a/irc/xchat2/pkg-comment b/irc/xchat2/pkg-comment deleted file mode 100644 index 87bec7c9208c..000000000000 --- a/irc/xchat2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An X11 IRC client using the GTK+ 2 toolkit diff --git a/irc/xchat2/pkg-plist b/irc/xchat2/pkg-plist index 27ffd14dfd37..fff60a492e28 100644 --- a/irc/xchat2/pkg-plist +++ b/irc/xchat2/pkg-plist @@ -2,6 +2,7 @@ bin/xchat bin/xchat-text lib/xchat/plugins/perl.so %%PYTHON%%lib/xchat/plugins/python.so +%%TCL%%lib/xchat/plugins/tcl.so share/gnome/apps/Internet/xchat.desktop share/gnome/pixmaps/xchat.png share/locale/am/LC_MESSAGES/xchat.mo |