mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
610ae56816
See http://library.gnome.org/misc/release-notes/2.24/ for the general release notes. On the FreeBSD front, this release introduces Fuse support in HAL, adds multi-CPU support to libgtop, WebKit updates, and fixes some long-standing seahorse and gnome-keyring bugs. The documentation updates to the website are forthcoming. This release features commits by adamw, ahze, kwm, mezz, and myself. It would not have been possible without are contributors and testers: Alexander Loginov Craig Butler [1] Dmitry Marakasov [6] Eric L. Chen Joseph S. Atkinson Kris Moore Lapo Luchini [7] Nikos Ntarmos Pawel Worach Romain Tartiere TAOKA Fumiyoshi [3] Yasuda Keisuke Zyl aZ [4] bf [2] [5] Florent Thoumie Peter Wemm pluknet PR: 125857 [1] 126993 [2] 130031 [3] 127399 [4] 127661 [5] 124302 [6] 129570 [7] 129936 123790
82 lines
2.0 KiB
Makefile
82 lines
2.0 KiB
Makefile
# 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.37 2009/01/10 01:59:21 mezz Exp $
|
|
#
|
|
|
|
PORTNAME= gvfs
|
|
PORTVERSION= 1.0.3
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
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)
|
|
LIB_DEPENDS+= fuse.2:${PORTSDIR}/sysutils/fusefs-libs
|
|
RUN_DEPENDS+= mount_fusefs:${PORTSDIR}/sysutils/fusefs-kmod
|
|
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
|
|
|
|
.if ${OSVERSION} < 602112
|
|
CONFIGURE_ARGS+= --disable-archive
|
|
PLIST_SUB+= ARCHIVE="@comment "
|
|
.else
|
|
PLIST_SUB+= ARCHIVE=""
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|