pkgsrc/sysutils/gvfs/Makefile

82 lines
2.2 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.40 2012/03/03 00:13:57 wiz Exp $
#
DISTNAME= gvfs-1.6.6
PKGREVISION= 9
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gvfs/1.6/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.gnome.org/
COMMENT= Userspace virtual filesystem
2008-07-14 14:55:56 +02:00
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_TOOLS+= intltool gmake pkg-config msgfmt
CONFIGURE_ARGS+= --enable-http
2009-05-26 20:39:38 +02:00
CONFIGURE_ARGS+= --disable-bash-completion
2008-11-23 04:28:50 +01:00
.include "../../mk/bsd.prefs.mk"
PKG_OPTIONS_VAR= PKG_OPTIONS.gvfs
PKG_SUPPORTED_OPTIONS+= avahi hal fuse samba
PKG_SUGGESTED_OPTIONS+= hal samba
PLIST_VARS+= ${PKG_SUPPORTED_OPTIONS}
# XXX fuse.bl3.mk will fail if we include it and fuse is not available
.if ${OPSYS} == "Linux" #|| (${OPSYS} == "NetBSD" && exists(/usr/include/fuse.h))
PKG_SUGGESTED_OPTIONS+= fuse
.endif
2008-11-23 04:28:50 +01:00
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mavahi)
.include "../../net/avahi/buildlink3.mk"
CONFIGURE_ARGS+= --enable-avahi
PLIST.avahi= yes
.else
CONFIGURE_ARGS+= --disable-avahi
.endif
.if !empty(PKG_OPTIONS:Msamba)
CONFIGURE_ARGS+= --with-samba-includes=${LOCALBASE}/include
CONFIGURE_ARGS+= --with-samba-libs=${LOCALBASE}/lib/samba
.include "../../net/samba/buildlink3.mk"
PLIST.samba= yes
.else
CONFIGURE_ARGS+= --disable-samba
.endif
2008-11-23 04:28:50 +01:00
.if !empty(PKG_OPTIONS:Mhal)
.include "../../misc/libcdio/buildlink3.mk"
2008-11-23 04:28:50 +01:00
.include "../../sysutils/hal/buildlink3.mk"
CONFIGURE_ARGS+= --enable-hal
CONFIGURE_ARGS+= --enable-cdda
2008-11-23 04:28:50 +01:00
PLIST.hal= yes
.else
CONFIGURE_ARGS+= --disable-hal
CONFIGURE_ARGS+= --disable-cdda
2008-11-23 04:28:50 +01:00
.endif
.if !empty(PKG_OPTIONS:Mfuse)
.include "../../mk/fuse.buildlink3.mk"
CONFIGURE_ARGS+= --enable-fuse
PLIST.fuse= yes
.else
CONFIGURE_ARGS+= --disable-fuse
.endif
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.17.6
.include "../../devel/glib2/modules.mk"
.include "../../sysutils/dbus/buildlink3.mk"
.include "../../archivers/libarchive/buildlink3.mk"
Update gvfs to 1.2.0. Major changes in 1.2.0 ====================== * sftp: Don't hang if ssh no authentication method availible * Don't leak file monitors * computer: don't show shadowed mounts Major changes in 1.1.8 ====================== * Fix crashers and leaks * Handle file:// uris with anchors in gvfs-open * fuse: Support ftruncate to the current file size * escape/unescape hostname part in uris, allowing spaces in e.g. smb domains * hal: Fix "No mount object" error on mount * Change details of the new .xdg-volume-info file format * Fix races in cancellation of gvfs streams * Remove debug spew from backends * ftp: Fix anonymous login * gphoto2: Ignore broken storages with no capacity * Don't globally modify COMP_WORDBREAKS in bash completion script * Don't ask for username when getting ssh key passphrase Major changes in 1.1.7 ====================== * Fix build on some platforms * ftp: Fix short read errors * gphoto2: Make it work on iphone * sftp: Fix symlink creation * fuse: Better support of truncation, fixing OOo save * proxy monitors: Support mount operations, etc * gvfs-mount: add --device commandline support * sftp: Fix protocol bug that made some servers not work * general support for query_info over streams, implemented for smb, sftp * Initial support for .xdg-volume-info reading Major changes in 1.1.6 ====================== * Fix crashes * trash: Better messages * Clean up glib and gtk includes * archive: Build with later versions of libarchive * dav: Fix folder creation * dav: Fix redirection when user is specified in url * http: fix error propagation * sftp: Try to preserve ownership when replacing a file Major changes in 1.1.5 ====================== * network: Pick up SMB shares from zeroconf * obexftp: Write support for * obexftp: Support obexftp over usb * trash: Don't follow symlinks on delete * fix crashes Major changes in 1.1.4 ====================== * Trash performance fixes * Fuse performance fixes Major changes in 1.1.3 ====================== * ftp: fix limited number of connections causes commands to fail (#565504) * trash: fix parallel build doesn't work (#562955) * trash: add trash::orig-path and trash::deletion-date info * trash: set files to mode 700 before deleting to deal with users trashing read-only directories * smb-browse: browsing authentication support (#524485) * smb-browse: make backend not automounted anymore Major changes in 1.1.2 ====================== * New trash backend * Use the new shadow mount facility in gio * gphoto2: Use shadow mounts * obex: Fix icon for root directory * http: Fix major memory leak * http: Support proxies Major changes in 1.1.1 ====================== * Reverse map FUSE pathnames to gvfs locations * Fix crashes * Show better icon info in gvfs-info * Support custom icons for gvfs backends * dav: support uris (dav+sd://) which specify dns-sd services instead of resolved ip+port * ftp: Fix time parsing * ftp: Show username in auth dialog if specified in uri * ftp: Support UTF8 server feature * ftp: Use LIST -a instead of LIST on unix servers * fuse: Fix major race in that caused crashes * fuse: Set st_blocks so that e.g. the "du" command works * gphoto: use custom icons for faster thumbnails * obexftp: Port to bluez 4 API * sftp: If name specified in mount, use in name too so that fuse paths are unique * sftp: Support /etc/favicon.png * smb: Don't ask for password twice if cancelled * smb: support setting timestamp
2009-03-16 14:06:40 +01:00
BUILDLINK_API_DEPENDS.libsoup24+= libsoup24>=2.25.1
.include "../../net/libsoup24/buildlink3.mk"
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../devel/GConf/buildlink3.mk"
.include "../../security/libgnome-keyring/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"