1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/net-im/climm/Makefile
Kurt Jaeger b95d127471 security/libgcrypt: 1.5.3_3 -> 1.6.1
- Update to 1.6.1
- Remove some unneeded patches
- Fix pkg-plist
- report configure bug upstream
  https://bugs.g10code.com/gnupg/issue1668
- report API breakage downstream and find that MacPorts had the same issue
  https://rt.cpan.org/Ticket/Display.html?id=97201
- bump PORTREVISION for dependent ports (approx. 100 ports)
- Thanks to exp-run by antoine@ to find ports that break
- patch ports that would otherwise break
  security/shishi with PR 192164 is already committed
  [1] devel/ccrtp
  [2] editors/abiword
  [3] security/p5-Crypt-GCrypt

PR:		191256, 192162 [1], 192163 [2], 192166 [3]
Submitted by:	Carlos Jacobo Puga Medina <cjpugmed@gmail.com>
Approved by:	maintainer timeout, antoine (exp-run), portmgr (implicit)
2014-07-30 03:57:23 +00:00

91 lines
2.4 KiB
Makefile

# Created by: mph
# $FreeBSD$
PORTNAME= climm
PORTVERSION= 0.7.1
PORTREVISION= 10
CATEGORIES= net-im
MASTER_SITES= http://www.climm.org/source/ \
http://http.bg.climm.org/source/
EXTRACT_SUFX= .tgz
MAINTAINER= johans@FreeBSD.org
COMMENT= CLI-based Multi-Messenger
USES= gmake pkgconfig
GNU_CONFIGURE= yes
LDFLAGS+= -L${LOCALBASE}/lib
OPTIONS_DEFINE= ICONV P2P TCL OTR REMOTE XMPP DOCS
OPTIONS_DEFAULT=ICONV P2P TCL OTR REMOTE
P2P_DESC= Enable Peer2peer connection support
OTR_DESC= Enable OTR encryption support
REMOTE_DESC= Enable Remote control fifo support
XMPP_DESC= Enable XMPP Jabber support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOTR}
CPPFLAGS+= -I${LOCALBASE}/include
CONFIGURE_ARGS+= --enable-otr
LIB_DEPENDS+= libotr.so.2:${PORTSDIR}/security/libotr3
.else
CONFIGURE_ARGS+= --disable-otr
.endif
.if ${PORT_OPTIONS:MICONV}
USES+= iconv
.else
CONFIGURE_ARGS+= --disable-iconv
.endif
.if ${PORT_OPTIONS:MP2P}
CONFIGURE_ARGS+= --enable-peer2peer
.else
CONFIGURE_ARGS+= --disable-peer2peer
.endif
.if ${PORT_OPTIONS:MTCL}
USES+= tcl
.else
CONFIGURE_ARGS+= --disable-tcl
.endif
.if ${PORT_OPTIONS:MREMOTE}
CONFIGURE_ARGS+= --enable-remote
.else
CONFIGURE_ARGS+= --disable-remote
.endif
.if ${PORT_OPTIONS:MXMPP}
CFLAGS+= -I${LOCALBASE}/include
CONFIGURE_ARGS+= --enable-xmpp --enable-ssl=gnutls \
--with-libgcrypt-prefix=${LOCALBASE}
CONFIGURE_ENV+= LIBGNUTLS_CONFIG="${LOCALBASE}/bin/pkgconf gnutls"
LIB_DEPENDS+= libiksemel.so:${PORTSDIR}/textproc/iksemel \
libgnutls.so:${PORTSDIR}/security/gnutls \
libgcrypt.so:${PORTSDIR}/security/libgcrypt \
libgpg-error.so:${PORTSDIR}/security/libgpg-error
.else
USE_OPENSSL= yes
CONFIGURE_ARGS+= --disable-xmpp --enable-ssl=openssl
.endif
post-patch:
@${REINPLACE_CMD} -e '/^SUBDIRS =/s/ doc//' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e '/^noinst_LIBRARIES/d' ${WRKSRC}/src/Makefile.in
@${REINPLACE_CMD} -e '/ac_lib/s/tcl8\./tcl8/g' \
-e '/libgnutls_config_version=/s/--version/--modversion/' \
${WRKSRC}/configure
post-install:
${INSTALL_MAN} ${WRKSRC}/doc/climm.1 ${STAGEDIR}${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/climmrc.5 ${STAGEDIR}${PREFIX}/man/man5
${INSTALL_MAN} ${WRKSRC}/doc/climmcmds.7 ${STAGEDIR}${PREFIX}/man/man7
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for ext in i18n logformat png txt xpm
${INSTALL_DATA} ${WRKSRC}/doc/*.${ext} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>