diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-08-21 07:47:33 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-08-21 07:47:33 +0800 |
commit | 72cd0bea4f79f81dc72c33fe28421736bd05988e (patch) | |
tree | 85bfdadaa17a12758c07d1837ea0189a03fdec27 /net-im/empathy | |
parent | fd3995d835885c7d6bad24f31581a9382bcf1a22 (diff) | |
download | marcuscom-ports-72cd0bea4f79f81dc72c33fe28421736bd05988e.tar.gz marcuscom-ports-72cd0bea4f79f81dc72c33fe28421736bd05988e.tar.zst marcuscom-ports-72cd0bea4f79f81dc72c33fe28421736bd05988e.zip |
* Add support for building empathy with protocol plug-ins [1]
* Lighten up gnome2-lite considerably. If anyone disagrees with my choices,
please make an argument for which ports should really be part of gnome2-lite.
Discussed with: marcuscom-devel (adamw and Pawel Worach)
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@11358 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'net-im/empathy')
-rw-r--r-- | net-im/empathy/Makefile | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/net-im/empathy/Makefile b/net-im/empathy/Makefile index ba482a7e3..431ca09ba 100644 --- a/net-im/empathy/Makefile +++ b/net-im/empathy/Makefile @@ -3,10 +3,11 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/net-im/empathy/Makefile,v 1.9 2008/08/05 20:32:09 marcus Exp $ +# $MCom: ports/net-im/empathy/Makefile,v 1.10 2008/08/19 02:29:17 marcus Exp $ PORTNAME= empathy PORTVERSION= 2.23.90 +PORTREVISION= 1 CATEGORIES= net-im gnome MASTER_SITES= GNOME @@ -34,8 +35,34 @@ GCONF_SCHEMAS= GNOME_Megaphone_Applet.schemas empathy.schemas MAN1= empathy.1 +OPTIONS= JABBER "Enable jabber (XMPP) client support" on \ + MSN "Enable MSN client support" on \ + IRC "Enable IRC client support" on \ + SALUT "Enable link-local (serverless) XMPP support" off \ + HAZE "Enable libpurple protocol integration" off + .include <bsd.port.pre.mk> +.if defined(WITH_JABBER) +RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-gabble:${PORTSDIR}/net-im/telepathy-gabble +.endif + +.if defined(WITH_MSN) +RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-butterfly:${PORTSDIR}/net-im/telepathy-butterfly +.endif + +.if defined(WITH_IRC) +RUN_DEPENDS+= telepathy-idle:${PORTSDIR}/net-im/telepathy-idle +.endif + +.if !defined(WITHOUT_SALUT) +RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-salut:${PORTSDIR}/net-im/telepathy-salut +.endif + +.if !defined(WITHOUT_HAZE) +RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-haze:${PORTSDIR}/net-im/telepathy-haze +.endif + post-patch: @${REINPLACE_CMD} -e 's|$${datadir}/gtk-doc/html|${DOCSDIR}|' \ ${WRKSRC}/configure |