diff options
author | roam <roam@FreeBSD.org> | 2000-12-20 21:44:27 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2000-12-20 21:44:27 +0800 |
commit | 23382e3643fb2e608b678eedc029e61c674d4cfb (patch) | |
tree | c7fa5e74babef6be875aa6b87b4142a8a2433b34 /irc/bitchx | |
parent | 62ddb127c39a6c3ddcda6194930999b251c9231d (diff) | |
download | freebsd-ports-gnome-23382e3643fb2e608b678eedc029e61c674d4cfb.tar.gz freebsd-ports-gnome-23382e3643fb2e608b678eedc029e61c674d4cfb.tar.zst freebsd-ports-gnome-23382e3643fb2e608b678eedc029e61c674d4cfb.zip |
Add SOCKS5 support; look for Tcl libraries under ${LOCALBASE},
not hardcoded /usr/local.
PR: 23688
Submitted by: maintainer
Diffstat (limited to 'irc/bitchx')
-rw-r--r-- | irc/bitchx/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/irc/bitchx/Makefile b/irc/bitchx/Makefile index 6128374d4988..d084e61bac7c 100644 --- a/irc/bitchx/Makefile +++ b/irc/bitchx/Makefile @@ -7,6 +7,7 @@ PORTNAME= BitchX PORTVERSION= 1.0c17 +PORTREVISION= 1 CATEGORIES= irc gnome MASTER_SITES= ftp://ftp.bitchx.com/pub/BitchX/source/ \ ftp://ftp.bitchx.org/pub/BitchX/source/ @@ -44,13 +45,19 @@ CONFIGURE_ARGS+=--enable-sound .if defined(WITH_TCL) BUILD_DEPENDS+= ${LOCALBASE}/include/tcl8.3/tcl.h:${PORTSDIR}/lang/tcl83 CONFIGURE_ARGS+=--with-tcl \ - --with-tcl-includes=/usr/local/include/tcl8.3 \ - --with-tcl-libs=/usr/local/lib + --with-tcl-includes=${LOCALBASE}/include/tcl8.3 \ + --with-tcl-libs=${LOCALBASE}/lib CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/tcl8.3" post-extract: @uudecode -p ${FILESDIR}/tcl-freebsd.o.uu > ${WRKSRC}/source/tcl.o .endif +.if defined(WITH_SOCKS5) +BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a${PORTSDIR}/net/socks5 +CONFIGURE_ARGS+=--with-socks5=${LOCALBASE} +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" +.endif + .if defined(WITH_PLUGINS) CONFIGURE_ARGS+=--with-plugins=pkga,possum,encrypt,hint,abot,acro,amp,blowfish,scan,wavplay,qmail,fserv,nap,qbx PLIST_SUB+= PLUGINS:="" @@ -70,6 +77,7 @@ pre-extract: @${ECHO} "WITH_PLUGINS - Build the plugins" @${ECHO} "WITH_LATIN - Recommended if you are using an ISO-8859-1 display" @${ECHO} "WITH_TCL - Build BitchX with TCL scripting" + @${ECHO} "WITH_SOCKS5 - Build BitchX with SOCKS5 support" post-install: .if !defined(NOPORTDOCS) |