62496d7f53
Reported by: dvl, shaun Pointyhat to: johans
99 lines
2.4 KiB
Makefile
99 lines
2.4 KiB
Makefile
# New ports collection makefile for: micq
|
|
# Date created: 11 Oct 1998
|
|
# Whom: mph
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= climm
|
|
PORTVERSION= 0.6.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= http://www.climm.org/source/ \
|
|
http://http.bg.climm.org/source/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= johans@stack.nl
|
|
COMMENT= CLI-based Multi-Messenger
|
|
|
|
USE_GMAKE= yes
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
MAN1= climm.1
|
|
MAN5= climmrc.5
|
|
MAN7= climmcmds.7
|
|
|
|
OPTIONS= LIBICONV "Iconv character set conversion" on \
|
|
P2P "Peer2peer connection support" on \
|
|
TCL "TCL scripting support" on \
|
|
SSL "SSL/OTR encryption support" on \
|
|
REMOTE "Remote control fifo support" on
|
|
# XMPP "XMPP Jabber support" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# XMPP support is currently broken - forcefully turn this off
|
|
WITHOUT_XMPP= true
|
|
|
|
.if defined(WITHOUT_SSL)
|
|
CONFIGURE_ARGS+= --disable-ssl --disable-otr
|
|
.else
|
|
. if defined(WITHOUT_XMPP)
|
|
CONFIGURE_ARGS+= --enable-ssl=openssl
|
|
. else
|
|
CONFIGURE_ARGS+= --enable-ssl=gnutls
|
|
LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls
|
|
. endif
|
|
LIB_DEPENDS+= gcrypt:${PORTSDIR}/security/libgcrypt \
|
|
otr:${PORTSDIR}/security/libotr \
|
|
gpg-error:${PORTSDIR}/security/libgpg-error
|
|
.endif
|
|
|
|
.if defined(WITHOUT_LIBICONV)
|
|
CONFIGURE_ARGS+= --disable-iconv
|
|
.else
|
|
USE_ICONV= yes
|
|
.endif
|
|
|
|
.if defined(WITHOUT_P2P) || defined(WITHOUT_SSL)
|
|
CONFIGURE_ARGS+= --disable-peer2peer --disable-ssl
|
|
.endif
|
|
|
|
.if defined(WITHOUT_TCL)
|
|
CONFIGURE_ARGS+= --disable-tcl
|
|
.else
|
|
USE_TCL= yes
|
|
.include "${PORTSDIR}/Mk/bsd.tcl.mk"
|
|
.endif
|
|
|
|
.if defined(WITHOUT_REMOTE)
|
|
CONFIGURE_ARGS+= --disable-remote
|
|
.endif
|
|
|
|
.if defined(WITHOUT_XMPP)
|
|
CONFIGURE_ARGS+= --disable-xmpp
|
|
.else
|
|
LIB_DEPENDS+= gloox:${PORTSDIR}/net-im/gloox
|
|
CONFIGURE_ARGS+= --enable-xmpp
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^SUBDIRS =/s/ doc//' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e '/ac_lib/s/tcl8\.4/tcl84/' ${WRKSRC}/configure
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/climm.1 ${MANPREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/climmrc.5 ${MANPREFIX}/man/man5
|
|
${INSTALL_MAN} ${WRKSRC}/doc/climmcmds.7 ${MANPREFIX}/man/man7
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
. for ext in i18n logformat png txt xpm
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.${ext} ${DOCSDIR}
|
|
. endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|