diff options
author | marcus <marcus@FreeBSD.org> | 2003-11-10 03:28:33 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-11-10 03:28:33 +0800 |
commit | ad45fc85d294c1e80bbe1980f35536cb8ed68c14 (patch) | |
tree | c74ff89954b80ecb8e44002a3217b00c057068fe /irc/xchat2 | |
parent | 91b8ee49362c17525b1ab0ac4755093496c5fd0d (diff) | |
download | freebsd-ports-gnome-ad45fc85d294c1e80bbe1980f35536cb8ed68c14.tar.gz freebsd-ports-gnome-ad45fc85d294c1e80bbe1980f35536cb8ed68c14.tar.zst freebsd-ports-gnome-ad45fc85d294c1e80bbe1980f35536cb8ed68c14.zip |
* We don't need to include bsd.port.pre.mk here as it actually messes up
Python support [1]
* Clean up some other portlint warnings
Spotted by: Oliver Eikemeier <eikemeier@fillmore-labs.com> [1]
Diffstat (limited to 'irc/xchat2')
-rw-r--r-- | irc/xchat2/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/irc/xchat2/Makefile b/irc/xchat2/Makefile index e5cc7c26e77d..31a42190563d 100644 --- a/irc/xchat2/Makefile +++ b/irc/xchat2/Makefile @@ -31,8 +31,6 @@ CONFIGURE_ARGS= --enable-nls \ CONFLICTS= xchat-* -.include <bsd.port.pre.mk> - .if defined(WITH_SOCKS) BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5 CONFIGURE_ARGS+= --enable-socks @@ -50,7 +48,7 @@ PLIST_SUB+= PYTHON="@comment " .endif .if defined(WITH_TCL) -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 +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" \ @@ -81,4 +79,4 @@ 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 -.include <bsd.port.post.mk> +.include <bsd.port.mk> |