1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-28 10:08:24 +00:00

Update to 2.6.1

This commit is contained in:
Alexander Nedotsukov 2004-07-08 11:21:15 +00:00
parent ef2e041235
commit cf9bee37a1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=113204
5 changed files with 62 additions and 354 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= gnome-vfsmm
PORTVERSION= 1.3.5
PORTREVISION= 3
PORTVERSION= 2.6.1
CATEGORIES= devel gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R}
@ -16,21 +15,22 @@ DIST_SUBDIR= gnome2
MAINTAINER= bland@FreeBSD.org
COMMENT= C++ wrapper for gnomevfs2 library
LIB_DEPENDS= gtkmm-2.0:${PORTSDIR}/x11-toolkits/gtk--2
LIB_DEPENDS= glibmm-2.4.1:${PORTSDIR}/devel/glibmm
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GCC= 3.3
USE_GMAKE= yes
USE_GNOME= gnomehack gnomevfs2
USE_LIBTOOL_VER= 13
USE_GNOME= gnomehack lthack gnomevfs2
USE_LIBTOOL_VER=13
INSTALLS_SHLIB= yes
CONFIGURE_ARGS= --enable-static
.include <bsd.port.pre.mk>
PLIST_SUB= VERSION="2.6" API_VERSION="2.6"
.if ${OSVERSION} < 500000
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-old_gcc_bugs
.endif
post-patch:
@${REINPLACE_CMD} -e '/^SUBDIRS =/s/examples//' \
${WRKSRC}/Makefile.in
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
MD5 (gnome2/gnome-vfsmm-1.3.5.tar.bz2) = 4bc128acc23a4d3b6b5a5e5452764644
SIZE (gnome2/gnome-vfsmm-1.3.5.tar.bz2) = 291811
MD5 (gnome2/gnome-vfsmm-2.6.1.tar.bz2) = a0f8006f7336b211f160224fddaf86e1
SIZE (gnome2/gnome-vfsmm-2.6.1.tar.bz2) = 290073

View File

@ -1,292 +0,0 @@
--- ./libgnomevfs/libgnomevfsmm/directory-handle.cc.orig Fri Jul 18 13:53:54 2003
+++ ./libgnomevfs/libgnomevfsmm/directory-handle.cc Thu Jul 31 22:20:34 2003
@@ -99,13 +99,13 @@
void DirectoryHandle::open(const Glib::ustring& text_uri, FileInfoOptions options) throw(exception)
{
- GnomeVFSResult result = gnome_vfs_directory_open(&gobj_, text_uri.c_str(), static_cast<GnomeVFSFileInfoOptions>(options) );
+ GnomeVFSResult result = gnome_vfs_directory_open(&gobj_, text_uri.c_str(), GnomeVFSFileInfoOptions(options) );
handle_result(result);
}
void DirectoryHandle::open(const Glib::RefPtr<const Uri>& uri, FileInfoOptions options) throw(exception)
{
- GnomeVFSResult result = gnome_vfs_directory_open_from_uri(&gobj_, const_cast<GnomeVFSURI*>(uri->gobj()), static_cast<GnomeVFSFileInfoOptions>(options) );
+ GnomeVFSResult result = gnome_vfs_directory_open_from_uri(&gobj_, const_cast<GnomeVFSURI*>(uri->gobj()), GnomeVFSFileInfoOptions(options) );
handle_result(result);
}
@@ -134,35 +134,35 @@
void DirectoryHandle::visit(const Glib::ustring& uri, FileInfoOptions info_options, DirectoryVisitOptions visit_options, const SlotVisit& slot) throw(exception)
{
SignalProxy_Visit proxy(slot);
- GnomeVFSResult result = gnome_vfs_directory_visit(uri.c_str(), static_cast<GnomeVFSFileInfoOptions>(info_options), static_cast<GnomeVFSDirectoryVisitOptions>(visit_options), &SignalProxy_Visit::c_callback, &proxy);
+ GnomeVFSResult result = gnome_vfs_directory_visit(uri.c_str(), GnomeVFSFileInfoOptions(info_options), GnomeVFSDirectoryVisitOptions(visit_options), &SignalProxy_Visit::c_callback, &proxy);
handle_result(result);
}
void DirectoryHandle::visit(const Glib::RefPtr<const Uri>& uri, FileInfoOptions info_options, DirectoryVisitOptions visit_options, const SlotVisit& slot) throw(exception)
{
SignalProxy_Visit proxy(slot);
- GnomeVFSResult result = gnome_vfs_directory_visit_uri(const_cast<GnomeVFSURI*>(uri->gobj()), static_cast<GnomeVFSFileInfoOptions>(info_options), static_cast<GnomeVFSDirectoryVisitOptions>(visit_options), &SignalProxy_Visit::c_callback, &proxy);
+ GnomeVFSResult result = gnome_vfs_directory_visit_uri(const_cast<GnomeVFSURI*>(uri->gobj()), GnomeVFSFileInfoOptions(info_options), GnomeVFSDirectoryVisitOptions(visit_options), &SignalProxy_Visit::c_callback, &proxy);
handle_result(result);
}
void DirectoryHandle::visit_files(const Glib::ustring& uri, const Glib::ListHandle<Glib::ustring>& file_list, FileInfoOptions info_options, DirectoryVisitOptions visit_options, const SlotVisit& slot) throw(exception)
{
SignalProxy_Visit proxy(slot);
- GnomeVFSResult result = gnome_vfs_directory_visit_files(uri.c_str(), file_list.data(), static_cast<GnomeVFSFileInfoOptions>(info_options), static_cast<GnomeVFSDirectoryVisitOptions>(visit_options), &SignalProxy_Visit::c_callback, &proxy);
+ GnomeVFSResult result = gnome_vfs_directory_visit_files(uri.c_str(), file_list.data(), GnomeVFSFileInfoOptions(info_options), GnomeVFSDirectoryVisitOptions(visit_options), &SignalProxy_Visit::c_callback, &proxy);
handle_result(result);
}
void DirectoryHandle::visit_files(const Glib::RefPtr<const Uri>& uri, const Glib::ListHandle<Glib::ustring> & file_list, FileInfoOptions info_options, DirectoryVisitOptions visit_options, const SlotVisit& slot) throw(exception)
{
SignalProxy_Visit proxy(slot);
- GnomeVFSResult result = gnome_vfs_directory_visit_files_at_uri(const_cast<GnomeVFSURI*>(uri->gobj()), file_list.data(), static_cast<GnomeVFSFileInfoOptions>(info_options), static_cast<GnomeVFSDirectoryVisitOptions>(visit_options), &SignalProxy_Visit::c_callback, &proxy);
+ GnomeVFSResult result = gnome_vfs_directory_visit_files_at_uri(const_cast<GnomeVFSURI*>(uri->gobj()), file_list.data(), GnomeVFSFileInfoOptions(info_options), GnomeVFSDirectoryVisitOptions(visit_options), &SignalProxy_Visit::c_callback, &proxy);
handle_result(result);
}
void DirectoryHandle::list_load(const Glib::ListHandle<Glib::ustring>& list, const Glib::ustring& text_uri, FileInfoOptions info_options) throw(exception)
{
GList* temp_list = list.data();
- GnomeVFSResult result = gnome_vfs_directory_list_load(&temp_list, text_uri.c_str(), static_cast<GnomeVFSFileInfoOptions>(info_options));
+ GnomeVFSResult result = gnome_vfs_directory_list_load(&temp_list, text_uri.c_str(), GnomeVFSFileInfoOptions(info_options));
handle_result(result);
}
--- ./libgnomevfs/libgnomevfsmm/uri.cc.orig Tue Jul 22 01:39:50 2003
+++ ./libgnomevfs/libgnomevfsmm/uri.cc Thu Jul 31 22:09:38 2003
@@ -42,7 +42,7 @@
Glib::RefPtr<FileInfo> Uri::get_file_info(FileInfoOptions options) const throw(exception)
{
GnomeVFSFileInfo* file_info = gnome_vfs_file_info_new();
- GnomeVFSResult result = gnome_vfs_get_file_info_uri(const_cast<GnomeVFSURI*>(gobj()), file_info, static_cast<GnomeVFSFileInfoOptions>(options));
+ GnomeVFSResult result = gnome_vfs_get_file_info_uri(const_cast<GnomeVFSURI*>(gobj()), file_info, GnomeVFSFileInfoOptions(options));
handle_result(result);
return Glib::wrap(file_info);
}
--- ./libgnomevfs/libgnomevfsmm/mime-application.cc.orig Thu Jul 31 22:10:37 2003
+++ ./libgnomevfs/libgnomevfsmm/mime-application.cc Thu Jul 31 22:12:01 2003
@@ -42,7 +42,7 @@
gobject_->id = g_strdup(id.c_str());
gobject_->name = g_strdup(name.c_str());
gobject_->command = g_strdup(command.c_str());
- gobject_->expects_uris = static_cast<GnomeVFSMimeApplicationArgumentType>(argument_type);
+ gobject_->expects_uris = GnomeVFSMimeApplicationArgumentType(argument_type);
gobject_->supported_uri_schemes = supported_uri_schemes.data();
gobject_->can_open_multiple_files = multiple_files;
gobject_->requires_terminal = requires_terminal;
--- ./libgnomevfs/libgnomevfsmm/handle.cc.orig Fri Jul 18 13:53:54 2003
+++ ./libgnomevfs/libgnomevfsmm/handle.cc Thu Jul 31 22:23:31 2003
@@ -49,25 +49,25 @@
void Handle::open(const Glib::ustring& text_uri, OpenMode open_mode) throw(exception)
{
- GnomeVFSResult result = gnome_vfs_open(&gobj_, text_uri.c_str(), static_cast<GnomeVFSOpenMode>(open_mode));
+ GnomeVFSResult result = gnome_vfs_open(&gobj_, text_uri.c_str(), GnomeVFSOpenMode(open_mode));
handle_result(result);
}
void Handle::open(const Glib::RefPtr<const Uri>& uri, OpenMode open_mode) throw(exception)
{
- GnomeVFSResult result = gnome_vfs_open_uri(&gobj_, const_cast<GnomeVFSURI*>(uri->gobj()), static_cast<GnomeVFSOpenMode>(open_mode));
+ GnomeVFSResult result = gnome_vfs_open_uri(&gobj_, const_cast<GnomeVFSURI*>(uri->gobj()), GnomeVFSOpenMode(open_mode));
handle_result(result);
}
void Handle::create(const Glib::ustring& text_uri, OpenMode open_mode, bool exclusive, guint permissions) throw(exception)
{
- GnomeVFSResult result = gnome_vfs_create(&gobj_, text_uri.c_str(), static_cast<GnomeVFSOpenMode>(open_mode), exclusive, permissions);
+ GnomeVFSResult result = gnome_vfs_create(&gobj_, text_uri.c_str(), GnomeVFSOpenMode(open_mode), exclusive, permissions);
handle_result(result);
}
void Handle::create(const Glib::RefPtr<const Uri>& uri, OpenMode open_mode, bool exclusive, guint permissions) throw(exception)
{
- GnomeVFSResult result = gnome_vfs_create_uri(&gobj_, const_cast<GnomeVFSURI*>(uri->gobj()), static_cast<GnomeVFSOpenMode>(open_mode), exclusive, permissions);
+ GnomeVFSResult result = gnome_vfs_create_uri(&gobj_, const_cast<GnomeVFSURI*>(uri->gobj()), GnomeVFSOpenMode(open_mode), exclusive, permissions);
handle_result(result);
}
@@ -95,7 +95,7 @@
void Handle::seek(SeekPosition whence, FileOffset offset) throw(exception)
{
- GnomeVFSResult result = gnome_vfs_seek(gobj(), static_cast<GnomeVFSSeekPosition>(whence), static_cast<GnomeVFSFileOffset>(offset));
+ GnomeVFSResult result = gnome_vfs_seek(gobj(), GnomeVFSSeekPosition(whence), GnomeVFSFileOffset(offset));
handle_result(result);
}
@@ -112,7 +112,7 @@
Glib::RefPtr<FileInfo> Handle::get_file_info(const Glib::ustring& text_uri, FileInfoOptions options) throw(exception)
{
GnomeVFSFileInfo* file_info = gnome_vfs_file_info_new();
- GnomeVFSResult result = gnome_vfs_get_file_info(text_uri.c_str(), file_info, static_cast<GnomeVFSFileInfoOptions>(options));
+ GnomeVFSResult result = gnome_vfs_get_file_info(text_uri.c_str(), file_info, GnomeVFSFileInfoOptions(options));
handle_result(result);
return Glib::wrap(file_info);
}
@@ -120,7 +120,7 @@
Glib::RefPtr<FileInfo> Handle::get_file_info(FileInfoOptions options) const throw(exception)
{
GnomeVFSFileInfo* file_info = gnome_vfs_file_info_new();
- GnomeVFSResult result = gnome_vfs_get_file_info_from_handle(const_cast<GnomeVFSHandle*>(gobj()), file_info, static_cast<GnomeVFSFileInfoOptions>(options));
+ GnomeVFSResult result = gnome_vfs_get_file_info_from_handle(const_cast<GnomeVFSHandle*>(gobj()), file_info, GnomeVFSFileInfoOptions(options));
handle_result(result);
return Glib::wrap(file_info);
}
@@ -220,14 +220,14 @@
//static:
void Handle::set_file_info(const Glib::ustring& text_uri, const Glib::RefPtr<const FileInfo>& info, SetFileInfoMask mask) throw(exception)
{
- GnomeVFSResult result = gnome_vfs_set_file_info(text_uri.c_str(), const_cast<GnomeVFSFileInfo*>(info->gobj()), static_cast<GnomeVFSSetFileInfoMask>(mask) );
+ GnomeVFSResult result = gnome_vfs_set_file_info(text_uri.c_str(), const_cast<GnomeVFSFileInfo*>(info->gobj()), GnomeVFSSetFileInfoMask(mask) );
handle_result(result);
}
//static:
void Handle::set_file_info(const Glib::RefPtr<const Uri>& uri, const Glib::RefPtr<const FileInfo>& info, SetFileInfoMask mask) throw(exception)
{
- GnomeVFSResult result = gnome_vfs_set_file_info_uri(const_cast<GnomeVFSURI*>(uri->gobj()), const_cast<GnomeVFSFileInfo*>(info->gobj()), static_cast<GnomeVFSSetFileInfoMask>(mask) );
+ GnomeVFSResult result = gnome_vfs_set_file_info_uri(const_cast<GnomeVFSURI*>(uri->gobj()), const_cast<GnomeVFSFileInfo*>(info->gobj()), GnomeVFSSetFileInfoMask(mask) );
handle_result(result);
}
--- ./libgnomevfs/libgnomevfsmm/transfer-progress.cc.orig Thu Jul 31 22:12:40 2003
+++ ./libgnomevfs/libgnomevfsmm/transfer-progress.cc Thu Jul 31 22:13:38 2003
@@ -58,17 +58,17 @@
ProgressStatus ProgressInfo::get_status() const
{
- return static_cast<Gnome::Vfs::ProgressStatus>(gobj()->status);
+ return Gnome::Vfs::ProgressStatus(gobj()->status);
}
Result ProgressInfo::get_vfs_status() const
{
- return static_cast<Gnome::Vfs::Result>(gobj()->vfs_status);
+ return Gnome::Vfs::Result(gobj()->vfs_status);
}
Phase ProgressInfo::get_phase() const
{
- return static_cast<Gnome::Vfs::Phase>(gobj()->phase);
+ return Gnome::Vfs::Phase(gobj()->phase);
}
Glib::ustring ProgressInfo::get_source_name() const
--- ./libgnomevfs/libgnomevfsmm/private.cc.orig Thu Jul 31 22:14:21 2003
+++ ./libgnomevfs/libgnomevfsmm/private.cc Thu Jul 31 22:17:12 2003
@@ -28,7 +28,7 @@
void handle_result(GnomeVFSResult result) throw(Gnome::Vfs::exception)
{
if(result != GNOME_VFS_OK)
- throw(Gnome::Vfs::exception(static_cast<Gnome::Vfs::Result>(result)));
+ throw(Gnome::Vfs::exception((Gnome::Vfs::Result)(result)));
}
} // namespace Vfs
--- ./libgnomevfs/libgnomevfsmm/exception.cc.orig Thu Jul 31 22:24:02 2003
+++ ./libgnomevfs/libgnomevfsmm/exception.cc Thu Jul 31 22:24:29 2003
@@ -39,7 +39,7 @@
Glib::ustring exception::what() const
{
- const char* error = gnome_vfs_result_to_string( static_cast<GnomeVFSResult>(gobj_) );
+ const char* error = gnome_vfs_result_to_string( GnomeVFSResult(gobj_) );
if(error)
return error;
else
--- ./libgnomevfs/libgnomevfsmm/monitor-handle.cc.orig Thu Jul 31 22:24:58 2003
+++ ./libgnomevfs/libgnomevfsmm/monitor-handle.cc Thu Jul 31 22:26:16 2003
@@ -72,7 +72,7 @@
//I guess that Glib::wrap() would normally just give us the same instance a 2nd time,
//but that's not available to us here because it's not a real wrapper.
- (self->slot_)(*monitorTemp, strMonitorUriTemp, strInfoUriTemp, static_cast<Gnome::Vfs::MonitorEventType>(event_type));
+ (self->slot_)(*monitorTemp, strMonitorUriTemp, strInfoUriTemp, Gnome::Vfs::MonitorEventType(event_type));
}
catch(...)
{
@@ -113,7 +113,7 @@
if(!proxy_) //Only one callback at a time is allowed.
{
proxy_ = new SignalProxy_Monitor(slot, this);
- GnomeVFSResult result = gnome_vfs_monitor_add(gobj_addr(), text_uri.c_str(), static_cast<GnomeVFSMonitorType>(type), &SignalProxy_Monitor::c_callback, proxy_);
+ GnomeVFSResult result = gnome_vfs_monitor_add(gobj_addr(), text_uri.c_str(), GnomeVFSMonitorType(type), &SignalProxy_Monitor::c_callback, proxy_);
handle_result(result);
} //TODO: else throw an exception?
}
--- ./libgnomevfs/libgnomevfsmm/mime-handlers.cc.orig Thu Jul 31 22:26:50 2003
+++ ./libgnomevfs/libgnomevfsmm/mime-handlers.cc Thu Jul 31 22:27:46 2003
@@ -37,7 +37,7 @@
MimeActionType get_default_action_type(const Glib::ustring& mime_type)
{
- return static_cast<Gnome::Vfs::MimeActionType>(gnome_vfs_mime_get_default_action_type(mime_type.c_str()));
+ return Gnome::Vfs::MimeActionType(gnome_vfs_mime_get_default_action_type(mime_type.c_str()));
}
MimeApplication get_default_application(const Glib::ustring& mime_type)
@@ -148,7 +148,7 @@
void set_default_action_type(const Glib::ustring& mime_type, MimeActionType action_type) throw(exception)
{
- GnomeVFSResult result = gnome_vfs_mime_set_default_action_type(mime_type.c_str(), static_cast<GnomeVFSMimeActionType>(action_type));
+ GnomeVFSResult result = gnome_vfs_mime_set_default_action_type(mime_type.c_str(), GnomeVFSMimeActionType(action_type));
handle_result(result);
}
--- ./libgnomevfs/libgnomevfsmm/transfer.cc.orig Thu Jul 31 22:28:12 2003
+++ ./libgnomevfs/libgnomevfsmm/transfer.cc Thu Jul 31 22:29:34 2003
@@ -86,9 +86,9 @@
SignalProxy_Progress proxy(slot);
//TODO: Check the memory management with data() here.
GnomeVFSResult result = gnome_vfs_xfer_uri_list(source_uri_list.data(), target_uri_list.data(),
- static_cast<GnomeVFSXferOptions>(options),
- static_cast<GnomeVFSXferErrorMode>(error_mode),
- static_cast<GnomeVFSXferOverwriteMode>(overwrite_mode),
+ GnomeVFSXferOptions(options),
+ GnomeVFSXferErrorMode(error_mode),
+ GnomeVFSXferOverwriteMode(overwrite_mode),
&SignalProxy_Progress::c_callback, &proxy);
handle_result(result);
@@ -102,9 +102,9 @@
{
SignalProxy_Progress proxy(slot);
GnomeVFSResult result = gnome_vfs_xfer_uri(source_uri->gobj(), target_uri->gobj(),
- static_cast<GnomeVFSXferOptions>(options),
- static_cast<GnomeVFSXferErrorMode>(error_mode),
- static_cast<GnomeVFSXferOverwriteMode>(overwrite_mode),
+ GnomeVFSXferOptions(options),
+ GnomeVFSXferErrorMode(error_mode),
+ GnomeVFSXferOverwriteMode(overwrite_mode),
&SignalProxy_Progress::c_callback, &proxy);
handle_result(result);
@@ -128,8 +128,8 @@
{
SignalProxy_Progress proxy(slot);
GnomeVFSResult result = gnome_vfs_xfer_delete_list(source_uri_list.data(),
- static_cast<GnomeVFSXferErrorMode>(error_mode),
- static_cast<GnomeVFSXferOptions>(options),
+ GnomeVFSXferErrorMode(error_mode),
+ GnomeVFSXferOptions(options),
&SignalProxy_Progress::c_callback, &proxy);
handle_result(result);
--- ./examples/transfer/main.cc.orig Thu Jul 31 22:42:09 2003
+++ ./examples/transfer/main.cc Thu Jul 31 22:42:31 2003
@@ -38,7 +38,7 @@
switch (info.get_status())
{
case Gnome::Vfs::XFER_PROGRESS_STATUS_VFSERROR:
- std::cout << "VFS Error: " << gnome_vfs_result_to_string(static_cast<GnomeVFSResult>(info.get_vfs_status())) << std::endl;
+ std::cout << "VFS Error: " << gnome_vfs_result_to_string(GnomeVFSResult(info.get_vfs_status())) << std::endl;
exit(1);
case Gnome::Vfs::XFER_PROGRESS_STATUS_OVERWRITE:

View File

@ -1,10 +0,0 @@
--- configure.orig Wed May 21 11:43:11 2003
+++ configure Wed May 21 11:43:25 2003
@@ -7884,6 +7884,7 @@
# This can be used to rebuild libtool when needed
LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
+$ac_aux_dir/ltconfig $LIBTOOL_DEPS
# Always use our own libtool.
LIBTOOL='$(SHELL) $(top_builddir)/libtool'

View File

@ -1,40 +1,50 @@
include/gnome-vfsmm-2.0/libgnomevfsmm.h
include/gnome-vfsmm-2.0/libgnomevfsmm/application-registry.h
include/gnome-vfsmm-2.0/libgnomevfsmm/directory-handle.h
include/gnome-vfsmm-2.0/libgnomevfsmm/enums.h
include/gnome-vfsmm-2.0/libgnomevfsmm/exception.h
include/gnome-vfsmm-2.0/libgnomevfsmm/file-info.h
include/gnome-vfsmm-2.0/libgnomevfsmm/handle.h
include/gnome-vfsmm-2.0/libgnomevfsmm/init.h
include/gnome-vfsmm-2.0/libgnomevfsmm/mime-action.h
include/gnome-vfsmm-2.0/libgnomevfsmm/mime-application.h
include/gnome-vfsmm-2.0/libgnomevfsmm/mime-handlers.h
include/gnome-vfsmm-2.0/libgnomevfsmm/mime-monitor.h
include/gnome-vfsmm-2.0/libgnomevfsmm/monitor-handle.h
include/gnome-vfsmm-2.0/libgnomevfsmm/private/enums_p.h
include/gnome-vfsmm-2.0/libgnomevfsmm/private/file-info_p.h
include/gnome-vfsmm-2.0/libgnomevfsmm/private/mime-action_p.h
include/gnome-vfsmm-2.0/libgnomevfsmm/private/mime-application_p.h
include/gnome-vfsmm-2.0/libgnomevfsmm/private/mime-monitor_p.h
include/gnome-vfsmm-2.0/libgnomevfsmm/private/transfer-progress_p.h
include/gnome-vfsmm-2.0/libgnomevfsmm/private/uri_p.h
include/gnome-vfsmm-2.0/libgnomevfsmm/private.h
include/gnome-vfsmm-2.0/libgnomevfsmm/transfer-progress.h
include/gnome-vfsmm-2.0/libgnomevfsmm/transfer.h
include/gnome-vfsmm-2.0/libgnomevfsmm/types.h
include/gnome-vfsmm-2.0/libgnomevfsmm/uri.h
include/gnome-vfsmm-2.0/libgnomevfsmm/wrap_init.h
lib/gnome-vfsmm-2.0/include/libgnomevfsmmconfig.h
lib/gnome-vfsmm-2.0/proc/m4/convert.m4
lib/gnome-vfsmm-2.0/proc/m4/convert_gnome_vfsmm.m4
lib/libgnomevfsmm-1.3.a
lib/libgnomevfsmm-1.3.so
lib/libgnomevfsmm-1.3.so.6
libdata/pkgconfig/gnome-vfsmm-2.0.pc
@dirrm lib/gnome-vfsmm-2.0/include
@dirrm lib/gnome-vfsmm-2.0/proc/m4
@dirrm lib/gnome-vfsmm-2.0/proc
@dirrm lib/gnome-vfsmm-2.0
@dirrm include/gnome-vfsmm-2.0/libgnomevfsmm/private
@dirrm include/gnome-vfsmm-2.0/libgnomevfsmm
@dirrm include/gnome-vfsmm-2.0
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/application-registry.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/async-handle.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/async.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/directory-handle.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/drive.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/enums.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/exception.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/file-info.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/handle.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/init.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/mime-action.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/mime-application.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/mime-handlers.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/mime-monitor.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/monitor-handle.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/async-handle_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/drive_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/enums_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/file-info_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/mime-action_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/mime-application_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/mime-monitor_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/transfer-progress_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/uri_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/volume-monitor_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/volume_p.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/transfer-progress.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/transfer.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/types.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/uri.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/utils.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/volume-monitor.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/volume.h
include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/wrap_init.h
lib/gnome-vfsmm-%%API_VERSION%%/include/libgnomevfsmmconfig.h
lib/gnome-vfsmm-%%API_VERSION%%/proc/m4/convert.m4
lib/gnome-vfsmm-%%API_VERSION%%/proc/m4/convert_gnome_vfsmm.m4
lib/libgnomevfsmm-%%VERSION%%.a
lib/libgnomevfsmm-%%VERSION%%.so
lib/libgnomevfsmm-%%VERSION%%.so.1
libdata/pkgconfig/gnome-vfsmm-%%API_VERSION%%.pc
@dirrm lib/gnome-vfsmm-%%API_VERSION%%/proc/m4
@dirrm lib/gnome-vfsmm-%%API_VERSION%%/proc
@dirrm lib/gnome-vfsmm-%%API_VERSION%%/include
@dirrm lib/gnome-vfsmm-%%API_VERSION%%
@dirrm include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private
@dirrm include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm
@dirrm include/gnome-vfsmm-%%API_VERSION%%