2008-03-24 04:52:36 +01:00
|
|
|
# New ports collection makefile for: gvfs
|
|
|
|
# Date created: 2007-11-06
|
|
|
|
# Whom: Michael Johnson <ahze@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
# $MCom: ports/devel/gvfs/Makefile,v 1.21 2008/03/18 16:16:48 mezz Exp $
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= gvfs
|
2008-04-08 06:42:06 +02:00
|
|
|
PORTVERSION= 0.2.3
|
2008-03-24 04:52:36 +01:00
|
|
|
CATEGORIES= devel gnome
|
|
|
|
MASTER_SITES= GNOME
|
|
|
|
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
|
|
COMMENT= GNOME virtual file system
|
|
|
|
|
|
|
|
LIB_DEPENDS= dbus-1.3:${PORTSDIR}/devel/dbus \
|
|
|
|
hal.1:${PORTSDIR}/sysutils/hal \
|
|
|
|
soup-2.4.1:${PORTSDIR}/devel/libsoup \
|
|
|
|
gnome-keyring:${PORTSDIR}/security/gnome-keyring \
|
|
|
|
avahi-client.3:${PORTSDIR}/net/avahi-app
|
|
|
|
RUN_DEPENDS= gnome-mount:${PORTSDIR}/sysutils/gnome-mount
|
|
|
|
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_GNOME= glib20 gnomehack gnomeprefix intlhack gconf2
|
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_GETTEXT= yes
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
CONFIGURE_ARGS= --disable-obexftp
|
|
|
|
OPTIONS= FUSE "Enable fuse" on \
|
|
|
|
SAMBA "Enable Samba" on \
|
|
|
|
GPHOTO2 "Enable Gphoto 2 camera support" on
|
|
|
|
# CDDA "Enable CDDA" on
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if defined(WITH_FUSE) && ${OSVERSION} >= 600000
|
|
|
|
LIB_DEPENDS+= fuse.2:${PORTSDIR}/sysutils/fusefs-libs
|
2008-03-28 23:24:08 +01:00
|
|
|
RUN_DEPENDS+= mount_fusefs:${PORTSDIR}/sysutils/fusefs-kmod
|
2008-03-24 04:52:36 +01:00
|
|
|
PLIST_SUB+= FUSE=""
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-fuse
|
|
|
|
PLIST_SUB+= FUSE="@comment "
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_SAMBA)
|
|
|
|
LIB_DEPENDS+= smbclient.0:${PORTSDIR}/net/samba-libsmbclient
|
|
|
|
PLIST_SUB+= SMB=""
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-samba
|
|
|
|
PLIST_SUB+= SMB="@comment "
|
|
|
|
.endif
|
|
|
|
|
|
|
|
#.if defined(WITH_CDDA)
|
|
|
|
#LIB_DEPENDS+= cdio_paranoia.0:${PORTSDIR}/sysutils/libcdio
|
|
|
|
#PLIST_SUB+= CDDA=""
|
|
|
|
#.else
|
|
|
|
CONFIGURE_ARGS+= --disable-cdda
|
|
|
|
PLIST_SUB+= CDDA="@comment "
|
|
|
|
#.endif
|
|
|
|
|
|
|
|
.if defined(WITH_GPHOTO2)
|
|
|
|
LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/libgphoto2
|
|
|
|
PLIST_SUB+= GPHOTO2=""
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-gphoto2
|
|
|
|
PLIST_SUB+= GPHOTO2="@comment "
|
|
|
|
.endif
|
|
|
|
|
2008-03-25 03:46:53 +01:00
|
|
|
.if ${OSVERSION} < 602112
|
|
|
|
CONFIGURE_ARGS+= --disable-archive
|
|
|
|
PLIST_SUB+= ARCHIVE="@comment "
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= ARCHIVE=""
|
|
|
|
.endif
|
|
|
|
|
2008-03-24 04:52:36 +01:00
|
|
|
.include <bsd.port.post.mk>
|