diff options
author | dinoex <dinoex@FreeBSD.org> | 2002-02-07 07:47:55 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2002-02-07 07:47:55 +0000 |
commit | e9ddf0d162117d31cf6a6fa7b76878eb2326ebe6 (patch) | |
tree | 6b23c8193e0ae10bf09b62bcf8e77eb7bba56971 /net-im | |
parent | 029031bbe9b49c3c75f690630f3e204329e8e59d (diff) | |
download | FreeBSD-ports-e9ddf0d162117d31cf6a6fa7b76878eb2326ebe6.zip FreeBSD-ports-e9ddf0d162117d31cf6a6fa7b76878eb2326ebe6.tar.gz |
Apply patch adds -DWITH_DANTE (should be specified with -DWITH_SOCKS).
Submitted by: fjoe
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/licq/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net-im/licq/Makefile b/net-im/licq/Makefile index 77bc7dd..5e9e1d2 100644 --- a/net-im/licq/Makefile +++ b/net-im/licq/Makefile @@ -15,13 +15,21 @@ PKGNAMESUFFIX= -socks MAINTAINER= dinoex@FreeBSD.org .if defined(WITH_SOCKS) +.if defined(WITH_DANTE) +LIB_DEPENDS= socks.1:${PORTSDIR}/net/dante +.else BUILD_DEPENDS= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5 .endif +.endif USE_OPENSSL= yes WRKSRC= ${WRKDIR}/${DISTNAME} .if defined(WITH_SOCKS) CONFIGURE_ARGS+=--enable-socks5 +.if defined(WITH_DANTE) +CONFIGURE_ARGS+=--with-socks5-inc=${LOCALBASE}/include +CONFIGURE_ENV+= LDFLAGS=-L${LOCALBASE}/lib +.endif .endif post-patch: |