diff options
author | Andrew Pantyukhin <sat@FreeBSD.org> | 2007-09-03 07:07:24 +0000 |
---|---|---|
committer | Andrew Pantyukhin <sat@FreeBSD.org> | 2007-09-03 07:07:24 +0000 |
commit | 94ef26501766fac70b382e1353494102aedc01f2 (patch) | |
tree | dd21f04e2ce92e9c250484b13111ee048dcca1ab /net-im/mcabber/Makefile | |
parent | ada3746c03e6d1d771ebc8a7ebf4f3bd24a86ce4 (diff) | |
download | ports-94ef26501766fac70b382e1353494102aedc01f2.tar.gz ports-94ef26501766fac70b382e1353494102aedc01f2.zip |
Notes
Diffstat (limited to 'net-im/mcabber/Makefile')
-rw-r--r-- | net-im/mcabber/Makefile | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/net-im/mcabber/Makefile b/net-im/mcabber/Makefile index c19ef23c084f..48c034ee80f3 100644 --- a/net-im/mcabber/Makefile +++ b/net-im/mcabber/Makefile @@ -13,12 +13,9 @@ MASTER_SITES= http://www.lilotux.net/~mikael/mcabber/files/ CENKES MAINTAINER= infofarmer@FreeBSD.org COMMENT= Small Jabber console client -LIB_DEPENDS= gpgme.17:${PORTSDIR}/security/gpgme \ - aspell.16:${PORTSDIR}/textproc/aspell - USE_BZIP2= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-ssl --enable-aspell=yes +CONFIGURE_ARGS= --with-ssl CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" USE_OPENSSL= yes USE_ICONV= yes @@ -30,6 +27,9 @@ LDFLAGS= -L${LOCALBASE}/lib MAN1= mcabber.1 +OPTIONS= GPGME "Use security/gpgme for PGP support" off \ + ASPELL "Use textproc/aspell for spell checking" off + .include <bsd.port.pre.mk> .if ${OSVERSION} < 503000 @@ -40,6 +40,20 @@ BROKEN= Unicoded ncurses require 5.3 LIB_DEPENDS+= ncursesw.5:${PORTSDIR}/devel/ncurses .endif +.if defined(WITH_GPGME) +LIB_DEPENDS+= gpgme.17:${PORTSDIR}/security/gpgme +CONFIGURE_ARGS+=--enable-gpgme +.else +CONFIGURE_ARGS+=--disable-gpgme +.endif + +.if defined(WITH_ASPELL) +LIB_DEPENDS+= aspell.16:${PORTSDIR}/textproc/aspell +CONFIGURE_ARGS+=--enable-aspell +.else +CONFIGURE_ARGS+=--disable-aspell +.endif + post-patch: @${REINPLACE_CMD} -e 's|$$"$${datadir}"|"$${datadir}"|;s|-O2||'\ ${WRKSRC}/configure ${WRKSRC}/*/configure |