diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2005-06-11 12:41:01 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2005-06-11 12:41:01 +0000 |
commit | 83c551092e116539fedebaf211ce512d51f27852 (patch) | |
tree | ff2ed58eb41475de6d37c627a29887bf92f48f72 /net | |
parent | Fix compilation on FreeBSD 4.X. (diff) |
Introduce some new knobs.
PR: ports/82031
Submitted by: Hajovsky Juraj <xhajov00 at stud.fit.vutbr.cz>
Notes
Notes:
svn path=/head/; revision=137262
Diffstat (limited to 'net')
-rw-r--r-- | net/micq/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net/micq/Makefile b/net/micq/Makefile index 79ab7d47ed24..892fb3e12e5b 100644 --- a/net/micq/Makefile +++ b/net/micq/Makefile @@ -38,6 +38,22 @@ LDFLAGS= -L${LOCALBASE}/lib -liconv CONFIGURE_ARGS+= --disable-utf8 .endif +.if defined(WITHOUT_P2P) +CONFIGURE_ARGS+= --disable-peer2peer +.endif + +.if defined(WITHOUT_P2P) || defined(WITHOUT_SSL) +CONFIGURE_ARGS+= --disable-ssl +.endif + +.if defined(WITHOUT_TCL) +CONFIGURE_ARGS+= --disable-tcl +.endif + +.if defined(WITHOUT_REMOTE) +CONFIGURE_ARGS+= --disable-remote +.endif + post-install: ${INSTALL_MAN} ${WRKSRC}/doc/micq.1 ${MANPREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/doc/micqrc.5 ${MANPREFIX}/man/man5 |