summaryrefslogtreecommitdiffstats
path: root/devel/gnome-vfsmm
diff options
context:
space:
mode:
author(no author) <(no author)@df743ca5-7f9a-e211-a948-0013205c9059>2004-03-15 05:59:50 +0800
committer(no author) <(no author)@df743ca5-7f9a-e211-a948-0013205c9059>2004-03-15 05:59:50 +0800
commit73cb2357a7c7f905403cf41592bcbd7286fd85ae (patch)
tree2f5e26903a1f136a9e2f54af42475b280a215a6d /devel/gnome-vfsmm
parentfd170dfee433454a5e1f74c295bf23f3835894c0 (diff)
downloadmarcuscom-ports-GNOME_2_6.tar
marcuscom-ports-GNOME_2_6.tar.gz
marcuscom-ports-GNOME_2_6.tar.bz2
marcuscom-ports-GNOME_2_6.tar.lz
marcuscom-ports-GNOME_2_6.tar.xz
marcuscom-ports-GNOME_2_6.tar.zst
marcuscom-ports-GNOME_2_6.zip
This commit was manufactured by cvs2svn to create branch 'GNOME_2_6'.GNOME_2_6
git-svn-id: svn://creme-brulee.marcuscom.com/ports/branches/GNOME_2_6@2058 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gnome-vfsmm')
-rw-r--r--devel/gnome-vfsmm/Makefile38
-rw-r--r--devel/gnome-vfsmm/distinfo1
-rw-r--r--devel/gnome-vfsmm/files/extra-patch-old_gcc_bugs292
-rw-r--r--devel/gnome-vfsmm/pkg-descr3
-rw-r--r--devel/gnome-vfsmm/pkg-plist43
5 files changed, 0 insertions, 377 deletions
diff --git a/devel/gnome-vfsmm/Makefile b/devel/gnome-vfsmm/Makefile
deleted file mode 100644
index d936dfd1f..000000000
--- a/devel/gnome-vfsmm/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-# New ports collection makefile for: gnome-vfsmm
-# Date created: 22 May 2003
-# Whom: Alexander Nedotsukov <bland@mail.ru>
-#
-# $FreeBSD: ports/devel/gnome-vfsmm/Makefile,v 1.9 2003/12/07 23:36:16 bland Exp $
-#
-
-PORTNAME= gnome-vfsmm
-PORTVERSION= 2.5.0
-PORTREVISION= 3
-CATEGORIES= devel gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R}
-DIST_SUBDIR= gnome2
-
-MAINTAINER= bland@FreeBSD.org
-COMMENT= C++ wrapper for gnomevfs2 library
-
-LIB_DEPENDS= gtkmm-2.3.4:${PORTSDIR}/x11-toolkits/gtk--2
-BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
-
-USE_BZIP2= yes
-USE_X_PREFIX= yes
-USE_GMAKE= yes
-USE_GNOME= gnomehack lthack gnomevfs2
-USE_LIBTOOL_VER=13
-INSTALLS_SHLIB= yes
-CONFIGURE_ARGS= --enable-static
-
-PLIST_SUB= VERSION="2.5" API_VERSION="2.6"
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} < 500000
-EXTRA_PATCHES= ${PATCHDIR}/extra-patch-old_gcc_bugs
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/devel/gnome-vfsmm/distinfo b/devel/gnome-vfsmm/distinfo
deleted file mode 100644
index d328ea027..000000000
--- a/devel/gnome-vfsmm/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (gnome2/gnome-vfsmm-2.5.0.tar.bz2) = bdedd119b50a5e1b1ef0957a5c7bb995
diff --git a/devel/gnome-vfsmm/files/extra-patch-old_gcc_bugs b/devel/gnome-vfsmm/files/extra-patch-old_gcc_bugs
deleted file mode 100644
index 17eca8837..000000000
--- a/devel/gnome-vfsmm/files/extra-patch-old_gcc_bugs
+++ /dev/null
@@ -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:
diff --git a/devel/gnome-vfsmm/pkg-descr b/devel/gnome-vfsmm/pkg-descr
deleted file mode 100644
index da03091b1..000000000
--- a/devel/gnome-vfsmm/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-This is a set of thin C++ wrappers for GnomeVFS v2 library.
-
-WWW: http://gtkmm.sourceforge.net/
diff --git a/devel/gnome-vfsmm/pkg-plist b/devel/gnome-vfsmm/pkg-plist
deleted file mode 100644
index 892bdb890..000000000
--- a/devel/gnome-vfsmm/pkg-plist
+++ /dev/null
@@ -1,43 +0,0 @@
-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-%%API_VERSION%%/libgnomevfsmm.h
-include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/application-registry.h
-include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/directory-handle.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/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/wrap_init.h
-lib/gnome-vfsmm-2.0/proc/m4/convert.m4
-lib/gnome-vfsmm-2.0/proc/m4/convert_gnome_vfsmm.m4
-lib/gnome-vfsmm-%%API_VERSION%%/include/libgnomevfsmmconfig.h
-lib/libgnomevfsmm-%%VERSION%%.a
-lib/libgnomevfsmm-%%VERSION%%.so
-lib/libgnomevfsmm-%%VERSION%%.so.6
-libdata/pkgconfig/gnome-vfsmm-%%API_VERSION%%.pc
-@dirrm lib/gnome-vfsmm-%%API_VERSION%%/include
-@dirrm lib/gnome-vfsmm-%%API_VERSION%%
-@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-%%API_VERSION%%/libgnomevfsmm
-@dirrm include/gnome-vfsmm-%%API_VERSION%%
-@dirrm include/gnome-vfsmm-2.0/libgnomevfsmm/private
-@dirrm include/gnome-vfsmm-2.0/libgnomevfsmm
-@dirrm include/gnome-vfsmm-2.0