diff options
author | flz <flz@FreeBSD.org> | 2007-04-20 00:31:38 +0800 |
---|---|---|
committer | flz <flz@FreeBSD.org> | 2007-04-20 00:31:38 +0800 |
commit | 2c96390f21545954937cd61a70e537d7078ec332 (patch) | |
tree | 94af3e0b31f87e0ba2508a699321962315379c76 /net-im | |
parent | 7f112c74ed387ae6329bfbfad19f8cbcdb3e4184 (diff) | |
download | freebsd-ports-gnome-2c96390f21545954937cd61a70e537d7078ec332.tar.gz freebsd-ports-gnome-2c96390f21545954937cd61a70e537d7078ec332.tar.zst freebsd-ports-gnome-2c96390f21545954937cd61a70e537d7078ec332.zip |
- Add support for telepathy in OPTIONS (off by default).
- Remove 4.x support.
- Point WWW to the new project website.
Approved by: pav
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gossip/Makefile | 14 | ||||
-rw-r--r-- | net-im/gossip/pkg-descr | 2 |
2 files changed, 10 insertions, 6 deletions
diff --git a/net-im/gossip/Makefile b/net-im/gossip/Makefile index 90f4e19929b4..ee35844ffee1 100644 --- a/net-im/gossip/Makefile +++ b/net-im/gossip/Makefile @@ -35,18 +35,22 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ GCONF_SCHEMAS= gossip.schemas -OPTIONS= NOTIFY "Enable libnotify support" on +OPTIONS= NOTIFY "Enable libnotify support" on \ + TELEPATHY "Enable telepathy support" off .include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 -BROKEN= does not build on 4.X -.endif - .if !defined(WITHOUT_NOTIFY) LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify .else CONFIGURE_ARGS+= --enable-libnotify=no .endif +.if defined(WITH_TELEPATHY) +LIB_DEPENDS+= telepathy.3:${PORTSDIR}/net-im/libtelepathy +CONFIGURE_ARGS+= --enable-telepathy=yes +.else +CONFIGURE_ARGS+= --enable-telepathy=no +.endif + .include <bsd.port.post.mk> diff --git a/net-im/gossip/pkg-descr b/net-im/gossip/pkg-descr index 1854da452993..e35bf5d47854 100644 --- a/net-im/gossip/pkg-descr +++ b/net-im/gossip/pkg-descr @@ -1,3 +1,3 @@ Gossip is a modern client for the Jabber Instant Messaging system. -WWW: http://gossip.imendio.org/ +WWW: http://developer.imendio.com/projects/gossip/ |