diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-05-24 06:49:46 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-05-24 06:49:46 +0800 |
commit | eb9d44a081a09b352a867eaf6a859a0285e8d336 (patch) | |
tree | 1f709dcd6683346eac52e75c221d48cbc703aeaf /net-im/empathy/Makefile | |
parent | ada486e00eebe1576248acb75cac4f6878678b0f (diff) | |
download | marcuscom-ports-eb9d44a081a09b352a867eaf6a859a0285e8d336.tar marcuscom-ports-eb9d44a081a09b352a867eaf6a859a0285e8d336.tar.gz marcuscom-ports-eb9d44a081a09b352a867eaf6a859a0285e8d336.tar.bz2 marcuscom-ports-eb9d44a081a09b352a867eaf6a859a0285e8d336.tar.lz marcuscom-ports-eb9d44a081a09b352a867eaf6a859a0285e8d336.tar.xz marcuscom-ports-eb9d44a081a09b352a867eaf6a859a0285e8d336.tar.zst marcuscom-ports-eb9d44a081a09b352a867eaf6a859a0285e8d336.zip |
Update to 2.27.1.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12322 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'net-im/empathy/Makefile')
-rw-r--r-- | net-im/empathy/Makefile | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/net-im/empathy/Makefile b/net-im/empathy/Makefile new file mode 100644 index 000000000..eba2768d2 --- /dev/null +++ b/net-im/empathy/Makefile @@ -0,0 +1,75 @@ +# New ports collection makefile for: empathy +# Date created: 2007-10-29 +# Whom: Michael Johnson <ahze@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports-stable/net-im/empathy/Makefile,v 1.3 2009/04/15 11:41:56 kwm Exp $ + +PORTNAME= empathy +PORTVERSION= 2.27.1.1 +CATEGORIES= net-im gnome +MASTER_SITES= GNOME + +MAINTAINER= gnome@FreeBSD.org +COMMENT= GNOME IM client based around telepathy + +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes +LIB_DEPENDS= missioncontrol-server.1:${PORTSDIR}/net-im/telepathy-mission-control \ + aspell.16:${PORTSDIR}/textproc/aspell \ + telepathy.2:${PORTSDIR}/net-im/libtelepathy \ + telepathy-glib.0:${PORTSDIR}/net-im/telepathy-glib \ + telepathy-farsight.0:${PORTSDIR}/net-im/telepathy-farsight \ + canberra-gtk.0:${PORTSDIR}/audio/libcanberra +RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes + +USE_GMAKE= yes +USE_BZIP2= yes +USE_GETTEXT= yes +USE_LDCONFIG= yes +USE_GNOME= evolutiondataserver gnomehack gnomeprefix pygtk2 ltverhack \ + gnomepanel +USE_GSTREAMER= yes +USE_AUTOTOOLS= libtool:15 +INSTALLS_OMF= yes +INSTALLS_ICONS= yes +USE_PYTHON= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +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+= ${LOCALBASE}/libexec/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}|g ; \ + s|-Werror||g' ${WRKSRC}/configure + +.include <bsd.port.post.mk> |