Update deskutils/horde-mnemo to version 4.1.3
[dports.git] / deskutils / nautilus-sendto / Makefile
1 # Created by: Michael Johnson <ahze@FreeBSD.org>
2 # $FreeBSD$
3 #    $MCom: ports/deskutils/nautilus-sendto/Makefile,v 1.30 2010/09/30 06:21:18 kwm Exp $
4
5 PORTNAME=       nautilus-sendto
6 PORTVERSION=    2.32.0
7 PORTREVISION=   2
8 CATEGORIES=     deskutils
9 MASTER_SITES=   GNOME
10
11 MAINTAINER=     gnome@FreeBSD.org
12 COMMENT=        Integration between nautilus, evolution, and pidgin
13
14 MAN1=           nautilus-sendto.1
15 GLIB_SCHEMAS=   org.gnome.Nautilus.Sendto.gschema.xml
16 USE_BZIP2=      yes
17 GNU_CONFIGURE=  yes
18 USES=           pathfix gettext gmake pkgconfig
19 USE_GNOME=      intlhack gnomeprefix nautilus2 gnomehack evolutiondataserver
20 CPPFLAGS+=      -I${LOCALBASE}/include
21 LDFLAGS+=       -L${LOCALBASE}/lib
22 CONFIGURE_ARGS= --with-plugins="${SENDTO_PLUGINS}"
23
24 OPTIONS_DEFINE= PIDGIN UPNP
25 PIDGIN_DESC=    Build pidgin sendto plugin
26 UPNP_DESC=      Build upnp sendto plugin
27
28 # check configure script for allowed_plugins="..." for new plugins
29 SENDTO_PLUGINS= evolution gajim nautilus-burn removable-devices
30
31 NO_STAGE=       yes
32 .include <bsd.port.options.mk>
33
34 .if ${PORT_OPTIONS:MPIDGIN}
35 SENDTO_PLUGINS:=${SENDTO_PLUGINS} pidgin
36 LIB_DEPENDS+=   libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib
37 RUN_DEPENDS+=   pidgin:${PORTSDIR}/net-im/pidgin
38 PLIST_SUB+=     PIDGIN=""
39 .else
40 PLIST_SUB+=     PIDGIN="@comment "
41 .endif
42
43 .if ${PORT_OPTIONS:MUPNP}
44 SENDTO_PLUGINS:=${SENDTO_PLUGINS} upnp
45 LIB_DEPENDS+=   libgupnp-1.so:${PORTSDIR}/net/gupnp
46 PLIST_SUB+=     UPNP=""
47 .else
48 PLIST_SUB+=     UPNP="@comment "
49 .endif
50
51 .include <bsd.port.mk>