1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Update to 1.0.4.

This commit is contained in:
Maxim Sobolev 2002-01-23 15:22:19 +00:00
parent fd56ff2812
commit d057340b07
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=53638
32 changed files with 372 additions and 256 deletions

View File

@ -6,7 +6,7 @@
# #
PORTNAME= gnomevfs PORTNAME= gnomevfs
PORTVERSION= 1.0.3 PORTVERSION= 1.0.4
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/gnome-vfs MASTER_SITE_SUBDIR= stable/sources/gnome-vfs
@ -14,11 +14,13 @@ DISTNAME= gnome-vfs-${PORTVERSION}
MAINTAINER= gnome@FreeBSD.org MAINTAINER= gnome@FreeBSD.org
BUILD_DEPENDS= msgfmt-new:${PORTSDIR}/devel/gettext-devel BUILD_DEPENDS= msgfmt-new:${PORTSDIR}/devel/gettext-devel \
${X11BASE}/libdata/pkgconfig/gnome-mime-data-2.0.pc:${PORTSDIR}/misc/gnomemimedata
LIB_DEPENDS= gconf-1.1:${PORTSDIR}/devel/gconf LIB_DEPENDS= gconf-1.1:${PORTSDIR}/devel/gconf
.if !exists(/usr/bin/bzip2) .if !exists(/usr/bin/bzip2)
LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2 LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2
.endif .endif
RUN_DEPENDS= ${X11BASE}/libdata/pkgconfig/gnome-mime-data-2.0.pc:${PORTSDIR}/misc/gnomemimedata
USE_GMAKE= yes USE_GMAKE= yes
USE_X_PREFIX= yes USE_X_PREFIX= yes

View File

@ -1 +1 @@
MD5 (gnome-vfs-1.0.3.tar.gz) = 18c90bec2e0e30372975e4621a8f19e5 MD5 (gnome-vfs-1.0.4.tar.gz) = d3dd15715da9671813805674cafa0dc8

View File

@ -1,9 +1,9 @@
$FreeBSD$ $FreeBSD$
--- configure.orig Wed Nov 7 13:37:59 2001 --- configure.orig Tue Jan 22 12:36:47 2002
+++ configure Wed Nov 7 13:38:44 2001 +++ configure Tue Jan 22 12:38:07 2002
@@ -5717,7 +5717,7 @@ @@ -5949,7 +5949,7 @@
VFS_GNOMEUI_LIBS="`gnome-config --libs gnome gnomeui`" VFS_GNOMEUI_LIBS="`gnome-config --libs gnome gnomeui`"
VFS_GNOMEGNORBA_LIBS="`gnome-config --libs gnome gnomeui gnorba`" VFS_GNOMEGNORBA_LIBS="`gnome-config --libs gnome gnomeui gnorba`"
VFS_CAPPLET_LIBS="`gnome-config --libs gnome gnomeui capplet`" VFS_CAPPLET_LIBS="`gnome-config --libs gnome gnomeui capplet`"
@ -12,18 +12,18 @@ $FreeBSD$
@@ -9630,8 +9630,8 @@ @@ -9854,8 +9854,8 @@
done done
fi fi
-echo $ac_n "checking for bzCompressInit in -lbz2""... $ac_c" 1>&6 -echo $ac_n "checking for bzCompressInit in -lbz2""... $ac_c" 1>&6
-echo "configure:9635: checking for bzCompressInit in -lbz2" >&5 -echo "configure:9859: checking for bzCompressInit in -lbz2" >&5
+echo $ac_n "checking for BZ2_bzCompressInit in -lbz2""... $ac_c" 1>&6 +echo $ac_n "checking for BZ2_bzCompressInit in -lbz2""... $ac_c" 1>&6
+echo "configure:9635: checking for BZ2_bzCompressInit in -lbz2" >&5 +echo "configure:9859: checking for BZ2_bzCompressInit in -lbz2" >&5
ac_lib_var=`echo bz2'_'bzCompressInit | sed 'y%./+-%__p_%'` ac_lib_var=`echo bz2'_'bzCompressInit | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
@@ -9644,10 +9644,10 @@ @@ -9868,10 +9868,10 @@
/* Override any gcc2 internal prototype to avoid an error. */ /* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2 /* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */ builtin and then its argument prototype would still apply. */
@ -35,4 +35,22 @@ $FreeBSD$
+BZ2_bzCompressInit() +BZ2_bzCompressInit()
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:9654: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:9878: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
@@ -10101,7 +10101,7 @@
echo $ac_n "(cached) $ac_c" 1>&6
else
- LDFLAGS="$LDFLAGS -L$with_openssl_libs -lssl -lcrypto -ldl"
+ LDFLAGS="$LDFLAGS -L$with_openssl_libs -lssl -lcrypto"
cat > conftest.$ac_ext <<EOF
#line 10107 "configure"
#include "confdefs.h"
@@ -10135,7 +10135,7 @@
EOF
msg_openssl="yes"
- OPENSSL_LDFLAGS="-L$with_openssl_libs -lssl -lcrypto -ldl"
+ OPENSSL_LDFLAGS="-L$with_openssl_libs -lssl -lcrypto"
if true; then

View File

@ -1,21 +1,21 @@
$FreeBSD$ $FreeBSD$
--- Makefile.in.orig Fri Sep 28 11:17:29 2001 --- Makefile.in.orig Tue Jan 22 11:51:36 2002
+++ Makefile.in Fri Sep 28 11:22:06 2001 +++ Makefile.in Tue Jan 22 11:53:19 2002
@@ -177,9 +177,9 @@ @@ -186,9 +186,9 @@
cxxflags_set = @cxxflags_set@
l = @l@ l = @l@
need_gnome_support = @need_gnome_support@
@PLATFORM_GNOME_2_TRUE@SUBDIRS_GNOME = doc @PLATFORM_GNOME_2_TRUE@SUBDIRS_GNOME = doc
-@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc test -@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc test
+@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc +@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc
-SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules data man devel-docs $(SUBDIRS_GNOME) po -SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules man devel-docs $(SUBDIRS_GNOME) po
+SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules data man $(SUBDIRS_GNOME) po +SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules man $(SUBDIRS_GNOME) po
EXTRA_DIST = HACKING TODO autogen.sh gnome-vfs.spec vfsConf.sh.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in gnome-vfs-config.in EXTRA_DIST = HACKING TODO autogen.sh gnome-vfs.spec vfsConf.sh.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in gnome-vfs-config.in
@@ -187,7 +187,7 @@ @@ -196,7 +196,7 @@
bin_SCRIPTS = $(top_builddir)/gnome-vfs-config bin_SCRIPTS = $(top_builddir)/gnome-vfs-config
@ -24,7 +24,7 @@ $FreeBSD$
confexec_DATA = vfsConf.sh confexec_DATA = vfsConf.sh
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
@@ -526,11 +526,13 @@ @@ -535,11 +535,13 @@
-e 's?\@VFS_INCLUDEDIR\@?$(VFS_INCLUDEDIR)?g' \ -e 's?\@VFS_INCLUDEDIR\@?$(VFS_INCLUDEDIR)?g' \
-e 's?\@VERSION\@?$(VERSION)?g' \ -e 's?\@VERSION\@?$(VERSION)?g' \
-e 's?\@VFS_LIBS\@?$(VFS_LIBS)?g' \ -e 's?\@VFS_LIBS\@?$(VFS_LIBS)?g' \

View File

@ -1,15 +1,44 @@
--- modules/Makefile.in.orig Thu Nov 2 17:45:41 2000
+++ modules/Makefile.in Fri Nov 3 10:52:23 2000 $FreeBSD$
@@ -235,2 +235,3 @@
--- modules/Makefile.in.orig Tue Jan 22 12:42:11 2002
+++ modules/Makefile.in Tue Jan 22 13:13:11 2002
@@ -197,7 +197,7 @@
@HAVE_CDDA_TRUE@CDDA_LTLIBS = libcdda.la
@HAVE_CDDA_FALSE@CDDA_LTLIBS =
+libftp_la_LDFLAGS = $(module_flags) -module_flags = -export_dynamic -avoid-version
+module_flags = -export_dynamic -avoid-version -module
modulesdir = $(libdir)/vfs/modules
@@ -283,3 +284,3 @@ modules_LTLIBRARIES = $(CDDA_LTLIBS) libextfs.la libfile.la libvfs-test.la $(HTTP_LTLIBS) libbzip2.la libgzip.la libftp.la libnntp.la libvfs-pipe.la libvfs-translate.la libdesktop.la $(NULL)
@@ -216,7 +216,6 @@
libcdda_la_SOURCES = cdda-method.c cdda-method.h cdda-cddb.c cdda-cddb.h cdda-cdrom-extensions.h
-
libcdda_la_LDFLAGS = $(module_flags)
libcdda_la_LIBADD = -L/gnome/lib -lcdda_paranoia -lcdda_interface
@@ -311,7 +310,7 @@
libextfs_la_OBJECTS = extfs-method.lo
libfile_la_LIBADD =
libfile_la_OBJECTS = file-method.lo libfile_la_OBJECTS = file-method.lo
-libvfs_test_la_LDFLAGS = -libvfs_test_la_LDFLAGS =
+libvfs_test_la_LDFLAGS = $(module_flags) +libvfs_test_la_LDFLAGS = $(module_flags)
libvfs_test_la_DEPENDENCIES = libvfs_test_la_DEPENDENCIES =
@@ -292,3 +293,2 @@ libvfs_test_la_OBJECTS = test-method.lo
libhttp_la_DEPENDENCIES =
@@ -320,10 +319,10 @@
libbzip2_la_OBJECTS = bzip2-method.lo
libgzip_la_DEPENDENCIES =
libgzip_la_OBJECTS = gzip-method.lo libgzip_la_OBJECTS = gzip-method.lo
-libftp_la_LDFLAGS = -libftp_la_LDFLAGS =
+libftp_la_LDFLAGS = $(module_flags)
libftp_la_LIBADD = libftp_la_LIBADD =
libftp_la_OBJECTS = ftp-method.lo
-libnntp_la_LDFLAGS =
+libnntp_la_LDFLAGS = $(module_flags)
libnntp_la_LIBADD =
libnntp_la_OBJECTS = nntp-method.lo
libvfs_pipe_la_DEPENDENCIES =

View File

@ -1,13 +0,0 @@
$FreeBSD$
--- libgnomevfs/gnome-vfs-mime.h 2001/09/17 14:13:01 1.1
+++ libgnomevfs/gnome-vfs-mime.h 2001/09/17 14:13:16
@@ -27,6 +27,7 @@
#include <ctype.h>
#include <dirent.h>
#include <libgnomevfs/gnome-vfs-uri.h>
+#include <sys/types.h>
#include <regex.h>
#include <stdio.h>
#include <string.h>

View File

@ -1,19 +1,27 @@
$FreeBSD$ $FreeBSD$
--- ltmain.sh 2001/08/27 09:51:26 1.1 --- ltmain.sh.orig Sun Jan 20 16:11:07 2002
+++ ltmain.sh 2001/08/27 09:51:42 +++ ltmain.sh Tue Jan 22 13:34:20 2002
@@ -2408,6 +2408,9 @@ @@ -1060,6 +1060,7 @@
*-*-netbsd*)
# Don't link with libc until the a.out ld.so is fixed. -module)
module=yes
+ build_old_libs=no
continue
;;
@@ -2442,6 +2443,9 @@
*-*-openbsd*)
# Do not include libc due to us having libc/libc_r.
;; ;;
+ *-*-freebsd*) + *-*-freebsd*)
+ # FreeBSD doesn't need this... + # FreeBSD doesn't need this...
+ ;; + ;;
*) *)
# Add libc to deplibs on all other systems if necessary. # Add libc to deplibs on all other systems if necessary.
if test "$build_libtool_need_lc" = "yes"; then if test $build_libtool_need_lc = "yes"; then
@@ -4175,10 +4178,12 @@ @@ -4208,10 +4212,12 @@
fi fi
# Install the pseudo-library for information purposes. # Install the pseudo-library for information purposes.

View File

@ -1,8 +1,7 @@
bin/gnome-vfs-config bin/gnome-vfs-config
etc/gnome-vfs-mime-magic
etc/vfs/modules/default-modules.conf etc/vfs/modules/default-modules.conf
etc/vfs/modules/ssl-modules.conf
etc/vfsConf.sh etc/vfsConf.sh
include/libgnomevfs
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-application-registry.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-application-registry.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-async-ops.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-async-ops.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-backend.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-backend.h
@ -50,7 +49,7 @@ include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-uri.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-utils.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-utils.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-xfer.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-xfer.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs.h
lib/libgnomevfs-pthread.a include/libgnomevfs
lib/libgnomevfs-pthread.so lib/libgnomevfs-pthread.so
lib/libgnomevfs.a lib/libgnomevfs.a
lib/libgnomevfs.so lib/libgnomevfs.so
@ -72,37 +71,24 @@ lib/vfs/extfs/tar
lib/vfs/extfs/trpm lib/vfs/extfs/trpm
lib/vfs/extfs/zip lib/vfs/extfs/zip
lib/vfs/extfs/zoo lib/vfs/extfs/zoo
lib/vfs/modules/libbzip2.a
lib/vfs/modules/libbzip2.so lib/vfs/modules/libbzip2.so
lib/vfs/modules/libdesktop.a
lib/vfs/modules/libdesktop.so lib/vfs/modules/libdesktop.so
lib/vfs/modules/libextfs.a
lib/vfs/modules/libextfs.so lib/vfs/modules/libextfs.so
lib/vfs/modules/libfile.a
lib/vfs/modules/libfile.so lib/vfs/modules/libfile.so
lib/vfs/modules/libftp.a
lib/vfs/modules/libftp.so lib/vfs/modules/libftp.so
lib/vfs/modules/libgconf.a
lib/vfs/modules/libgconf.so
lib/vfs/modules/libgzip.a
lib/vfs/modules/libgzip.so lib/vfs/modules/libgzip.so
lib/vfs/modules/libhttp.a
lib/vfs/modules/libhttp.so lib/vfs/modules/libhttp.so
lib/vfs/modules/libvfs-pipe.a lib/vfs/modules/libnntp.so
lib/vfs/modules/libvfs-pipe.so lib/vfs/modules/libvfs-pipe.so
lib/vfs/modules/libvfs-test.a
lib/vfs/modules/libvfs-test.so lib/vfs/modules/libvfs-test.so
lib/vfs/modules/libvfs-translate.a
lib/vfs/modules/libvfs-translate.so lib/vfs/modules/libvfs-translate.so
share/gnome/application-registry/gnome-vfs.applications
share/gnome/mime-info/gnome-vfs.keys
share/gnome/mime-info/gnome-vfs.mime
share/locale/az/LC_MESSAGES/gnome-vfs.mo share/locale/az/LC_MESSAGES/gnome-vfs.mo
share/locale/ca/LC_MESSAGES/gnome-vfs.mo share/locale/ca/LC_MESSAGES/gnome-vfs.mo
share/locale/da/LC_MESSAGES/gnome-vfs.mo share/locale/da/LC_MESSAGES/gnome-vfs.mo
share/locale/de/LC_MESSAGES/gnome-vfs.mo share/locale/de/LC_MESSAGES/gnome-vfs.mo
share/locale/el/LC_MESSAGES/gnome-vfs.mo share/locale/el/LC_MESSAGES/gnome-vfs.mo
share/locale/es/LC_MESSAGES/gnome-vfs.mo share/locale/es/LC_MESSAGES/gnome-vfs.mo
share/locale/eu/LC_MESSAGES/gnome-vfs.mo
share/locale/fi/LC_MESSAGES/gnome-vfs.mo share/locale/fi/LC_MESSAGES/gnome-vfs.mo
share/locale/fr/LC_MESSAGES/gnome-vfs.mo share/locale/fr/LC_MESSAGES/gnome-vfs.mo
share/locale/ga/LC_MESSAGES/gnome-vfs.mo share/locale/ga/LC_MESSAGES/gnome-vfs.mo
@ -128,7 +114,6 @@ share/locale/uk/LC_MESSAGES/gnome-vfs.mo
share/locale/wa/LC_MESSAGES/gnome-vfs.mo share/locale/wa/LC_MESSAGES/gnome-vfs.mo
share/locale/zh_TW/LC_MESSAGES/gnome-vfs.mo share/locale/zh_TW/LC_MESSAGES/gnome-vfs.mo
@dirrm share/gnome/gtk-doc/html/gnome-vfs @dirrm share/gnome/gtk-doc/html/gnome-vfs
@dirrm share/gnome/application-registry
@dirrm lib/vfs/modules @dirrm lib/vfs/modules
@dirrm lib/vfs/extfs @dirrm lib/vfs/extfs
@dirrm lib/vfs @dirrm lib/vfs

View File

@ -6,7 +6,7 @@
# #
PORTNAME= gnomevfs PORTNAME= gnomevfs
PORTVERSION= 1.0.3 PORTVERSION= 1.0.4
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/gnome-vfs MASTER_SITE_SUBDIR= stable/sources/gnome-vfs
@ -14,11 +14,13 @@ DISTNAME= gnome-vfs-${PORTVERSION}
MAINTAINER= gnome@FreeBSD.org MAINTAINER= gnome@FreeBSD.org
BUILD_DEPENDS= msgfmt-new:${PORTSDIR}/devel/gettext-devel BUILD_DEPENDS= msgfmt-new:${PORTSDIR}/devel/gettext-devel \
${X11BASE}/libdata/pkgconfig/gnome-mime-data-2.0.pc:${PORTSDIR}/misc/gnomemimedata
LIB_DEPENDS= gconf-1.1:${PORTSDIR}/devel/gconf LIB_DEPENDS= gconf-1.1:${PORTSDIR}/devel/gconf
.if !exists(/usr/bin/bzip2) .if !exists(/usr/bin/bzip2)
LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2 LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2
.endif .endif
RUN_DEPENDS= ${X11BASE}/libdata/pkgconfig/gnome-mime-data-2.0.pc:${PORTSDIR}/misc/gnomemimedata
USE_GMAKE= yes USE_GMAKE= yes
USE_X_PREFIX= yes USE_X_PREFIX= yes

View File

@ -1 +1 @@
MD5 (gnome-vfs-1.0.3.tar.gz) = 18c90bec2e0e30372975e4621a8f19e5 MD5 (gnome-vfs-1.0.4.tar.gz) = d3dd15715da9671813805674cafa0dc8

View File

@ -1,9 +1,9 @@
$FreeBSD$ $FreeBSD$
--- configure.orig Wed Nov 7 13:37:59 2001 --- configure.orig Tue Jan 22 12:36:47 2002
+++ configure Wed Nov 7 13:38:44 2001 +++ configure Tue Jan 22 12:38:07 2002
@@ -5717,7 +5717,7 @@ @@ -5949,7 +5949,7 @@
VFS_GNOMEUI_LIBS="`gnome-config --libs gnome gnomeui`" VFS_GNOMEUI_LIBS="`gnome-config --libs gnome gnomeui`"
VFS_GNOMEGNORBA_LIBS="`gnome-config --libs gnome gnomeui gnorba`" VFS_GNOMEGNORBA_LIBS="`gnome-config --libs gnome gnomeui gnorba`"
VFS_CAPPLET_LIBS="`gnome-config --libs gnome gnomeui capplet`" VFS_CAPPLET_LIBS="`gnome-config --libs gnome gnomeui capplet`"
@ -12,18 +12,18 @@ $FreeBSD$
@@ -9630,8 +9630,8 @@ @@ -9854,8 +9854,8 @@
done done
fi fi
-echo $ac_n "checking for bzCompressInit in -lbz2""... $ac_c" 1>&6 -echo $ac_n "checking for bzCompressInit in -lbz2""... $ac_c" 1>&6
-echo "configure:9635: checking for bzCompressInit in -lbz2" >&5 -echo "configure:9859: checking for bzCompressInit in -lbz2" >&5
+echo $ac_n "checking for BZ2_bzCompressInit in -lbz2""... $ac_c" 1>&6 +echo $ac_n "checking for BZ2_bzCompressInit in -lbz2""... $ac_c" 1>&6
+echo "configure:9635: checking for BZ2_bzCompressInit in -lbz2" >&5 +echo "configure:9859: checking for BZ2_bzCompressInit in -lbz2" >&5
ac_lib_var=`echo bz2'_'bzCompressInit | sed 'y%./+-%__p_%'` ac_lib_var=`echo bz2'_'bzCompressInit | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
@@ -9644,10 +9644,10 @@ @@ -9868,10 +9868,10 @@
/* Override any gcc2 internal prototype to avoid an error. */ /* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2 /* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */ builtin and then its argument prototype would still apply. */
@ -35,4 +35,22 @@ $FreeBSD$
+BZ2_bzCompressInit() +BZ2_bzCompressInit()
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:9654: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:9878: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
@@ -10101,7 +10101,7 @@
echo $ac_n "(cached) $ac_c" 1>&6
else
- LDFLAGS="$LDFLAGS -L$with_openssl_libs -lssl -lcrypto -ldl"
+ LDFLAGS="$LDFLAGS -L$with_openssl_libs -lssl -lcrypto"
cat > conftest.$ac_ext <<EOF
#line 10107 "configure"
#include "confdefs.h"
@@ -10135,7 +10135,7 @@
EOF
msg_openssl="yes"
- OPENSSL_LDFLAGS="-L$with_openssl_libs -lssl -lcrypto -ldl"
+ OPENSSL_LDFLAGS="-L$with_openssl_libs -lssl -lcrypto"
if true; then

View File

@ -1,21 +1,21 @@
$FreeBSD$ $FreeBSD$
--- Makefile.in.orig Fri Sep 28 11:17:29 2001 --- Makefile.in.orig Tue Jan 22 11:51:36 2002
+++ Makefile.in Fri Sep 28 11:22:06 2001 +++ Makefile.in Tue Jan 22 11:53:19 2002
@@ -177,9 +177,9 @@ @@ -186,9 +186,9 @@
cxxflags_set = @cxxflags_set@
l = @l@ l = @l@
need_gnome_support = @need_gnome_support@
@PLATFORM_GNOME_2_TRUE@SUBDIRS_GNOME = doc @PLATFORM_GNOME_2_TRUE@SUBDIRS_GNOME = doc
-@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc test -@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc test
+@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc +@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc
-SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules data man devel-docs $(SUBDIRS_GNOME) po -SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules man devel-docs $(SUBDIRS_GNOME) po
+SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules data man $(SUBDIRS_GNOME) po +SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules man $(SUBDIRS_GNOME) po
EXTRA_DIST = HACKING TODO autogen.sh gnome-vfs.spec vfsConf.sh.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in gnome-vfs-config.in EXTRA_DIST = HACKING TODO autogen.sh gnome-vfs.spec vfsConf.sh.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in gnome-vfs-config.in
@@ -187,7 +187,7 @@ @@ -196,7 +196,7 @@
bin_SCRIPTS = $(top_builddir)/gnome-vfs-config bin_SCRIPTS = $(top_builddir)/gnome-vfs-config
@ -24,7 +24,7 @@ $FreeBSD$
confexec_DATA = vfsConf.sh confexec_DATA = vfsConf.sh
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
@@ -526,11 +526,13 @@ @@ -535,11 +535,13 @@
-e 's?\@VFS_INCLUDEDIR\@?$(VFS_INCLUDEDIR)?g' \ -e 's?\@VFS_INCLUDEDIR\@?$(VFS_INCLUDEDIR)?g' \
-e 's?\@VERSION\@?$(VERSION)?g' \ -e 's?\@VERSION\@?$(VERSION)?g' \
-e 's?\@VFS_LIBS\@?$(VFS_LIBS)?g' \ -e 's?\@VFS_LIBS\@?$(VFS_LIBS)?g' \

View File

@ -1,15 +1,44 @@
--- modules/Makefile.in.orig Thu Nov 2 17:45:41 2000
+++ modules/Makefile.in Fri Nov 3 10:52:23 2000 $FreeBSD$
@@ -235,2 +235,3 @@
--- modules/Makefile.in.orig Tue Jan 22 12:42:11 2002
+++ modules/Makefile.in Tue Jan 22 13:13:11 2002
@@ -197,7 +197,7 @@
@HAVE_CDDA_TRUE@CDDA_LTLIBS = libcdda.la
@HAVE_CDDA_FALSE@CDDA_LTLIBS =
+libftp_la_LDFLAGS = $(module_flags) -module_flags = -export_dynamic -avoid-version
+module_flags = -export_dynamic -avoid-version -module
modulesdir = $(libdir)/vfs/modules
@@ -283,3 +284,3 @@ modules_LTLIBRARIES = $(CDDA_LTLIBS) libextfs.la libfile.la libvfs-test.la $(HTTP_LTLIBS) libbzip2.la libgzip.la libftp.la libnntp.la libvfs-pipe.la libvfs-translate.la libdesktop.la $(NULL)
@@ -216,7 +216,6 @@
libcdda_la_SOURCES = cdda-method.c cdda-method.h cdda-cddb.c cdda-cddb.h cdda-cdrom-extensions.h
-
libcdda_la_LDFLAGS = $(module_flags)
libcdda_la_LIBADD = -L/gnome/lib -lcdda_paranoia -lcdda_interface
@@ -311,7 +310,7 @@
libextfs_la_OBJECTS = extfs-method.lo
libfile_la_LIBADD =
libfile_la_OBJECTS = file-method.lo libfile_la_OBJECTS = file-method.lo
-libvfs_test_la_LDFLAGS = -libvfs_test_la_LDFLAGS =
+libvfs_test_la_LDFLAGS = $(module_flags) +libvfs_test_la_LDFLAGS = $(module_flags)
libvfs_test_la_DEPENDENCIES = libvfs_test_la_DEPENDENCIES =
@@ -292,3 +293,2 @@ libvfs_test_la_OBJECTS = test-method.lo
libhttp_la_DEPENDENCIES =
@@ -320,10 +319,10 @@
libbzip2_la_OBJECTS = bzip2-method.lo
libgzip_la_DEPENDENCIES =
libgzip_la_OBJECTS = gzip-method.lo libgzip_la_OBJECTS = gzip-method.lo
-libftp_la_LDFLAGS = -libftp_la_LDFLAGS =
+libftp_la_LDFLAGS = $(module_flags)
libftp_la_LIBADD = libftp_la_LIBADD =
libftp_la_OBJECTS = ftp-method.lo
-libnntp_la_LDFLAGS =
+libnntp_la_LDFLAGS = $(module_flags)
libnntp_la_LIBADD =
libnntp_la_OBJECTS = nntp-method.lo
libvfs_pipe_la_DEPENDENCIES =

View File

@ -1,13 +0,0 @@
$FreeBSD$
--- libgnomevfs/gnome-vfs-mime.h 2001/09/17 14:13:01 1.1
+++ libgnomevfs/gnome-vfs-mime.h 2001/09/17 14:13:16
@@ -27,6 +27,7 @@
#include <ctype.h>
#include <dirent.h>
#include <libgnomevfs/gnome-vfs-uri.h>
+#include <sys/types.h>
#include <regex.h>
#include <stdio.h>
#include <string.h>

View File

@ -1,19 +1,27 @@
$FreeBSD$ $FreeBSD$
--- ltmain.sh 2001/08/27 09:51:26 1.1 --- ltmain.sh.orig Sun Jan 20 16:11:07 2002
+++ ltmain.sh 2001/08/27 09:51:42 +++ ltmain.sh Tue Jan 22 13:34:20 2002
@@ -2408,6 +2408,9 @@ @@ -1060,6 +1060,7 @@
*-*-netbsd*)
# Don't link with libc until the a.out ld.so is fixed. -module)
module=yes
+ build_old_libs=no
continue
;;
@@ -2442,6 +2443,9 @@
*-*-openbsd*)
# Do not include libc due to us having libc/libc_r.
;; ;;
+ *-*-freebsd*) + *-*-freebsd*)
+ # FreeBSD doesn't need this... + # FreeBSD doesn't need this...
+ ;; + ;;
*) *)
# Add libc to deplibs on all other systems if necessary. # Add libc to deplibs on all other systems if necessary.
if test "$build_libtool_need_lc" = "yes"; then if test $build_libtool_need_lc = "yes"; then
@@ -4175,10 +4178,12 @@ @@ -4208,10 +4212,12 @@
fi fi
# Install the pseudo-library for information purposes. # Install the pseudo-library for information purposes.

View File

@ -1,8 +1,7 @@
bin/gnome-vfs-config bin/gnome-vfs-config
etc/gnome-vfs-mime-magic
etc/vfs/modules/default-modules.conf etc/vfs/modules/default-modules.conf
etc/vfs/modules/ssl-modules.conf
etc/vfsConf.sh etc/vfsConf.sh
include/libgnomevfs
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-application-registry.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-application-registry.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-async-ops.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-async-ops.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-backend.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-backend.h
@ -50,7 +49,7 @@ include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-uri.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-utils.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-utils.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-xfer.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-xfer.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs.h
lib/libgnomevfs-pthread.a include/libgnomevfs
lib/libgnomevfs-pthread.so lib/libgnomevfs-pthread.so
lib/libgnomevfs.a lib/libgnomevfs.a
lib/libgnomevfs.so lib/libgnomevfs.so
@ -72,37 +71,24 @@ lib/vfs/extfs/tar
lib/vfs/extfs/trpm lib/vfs/extfs/trpm
lib/vfs/extfs/zip lib/vfs/extfs/zip
lib/vfs/extfs/zoo lib/vfs/extfs/zoo
lib/vfs/modules/libbzip2.a
lib/vfs/modules/libbzip2.so lib/vfs/modules/libbzip2.so
lib/vfs/modules/libdesktop.a
lib/vfs/modules/libdesktop.so lib/vfs/modules/libdesktop.so
lib/vfs/modules/libextfs.a
lib/vfs/modules/libextfs.so lib/vfs/modules/libextfs.so
lib/vfs/modules/libfile.a
lib/vfs/modules/libfile.so lib/vfs/modules/libfile.so
lib/vfs/modules/libftp.a
lib/vfs/modules/libftp.so lib/vfs/modules/libftp.so
lib/vfs/modules/libgconf.a
lib/vfs/modules/libgconf.so
lib/vfs/modules/libgzip.a
lib/vfs/modules/libgzip.so lib/vfs/modules/libgzip.so
lib/vfs/modules/libhttp.a
lib/vfs/modules/libhttp.so lib/vfs/modules/libhttp.so
lib/vfs/modules/libvfs-pipe.a lib/vfs/modules/libnntp.so
lib/vfs/modules/libvfs-pipe.so lib/vfs/modules/libvfs-pipe.so
lib/vfs/modules/libvfs-test.a
lib/vfs/modules/libvfs-test.so lib/vfs/modules/libvfs-test.so
lib/vfs/modules/libvfs-translate.a
lib/vfs/modules/libvfs-translate.so lib/vfs/modules/libvfs-translate.so
share/gnome/application-registry/gnome-vfs.applications
share/gnome/mime-info/gnome-vfs.keys
share/gnome/mime-info/gnome-vfs.mime
share/locale/az/LC_MESSAGES/gnome-vfs.mo share/locale/az/LC_MESSAGES/gnome-vfs.mo
share/locale/ca/LC_MESSAGES/gnome-vfs.mo share/locale/ca/LC_MESSAGES/gnome-vfs.mo
share/locale/da/LC_MESSAGES/gnome-vfs.mo share/locale/da/LC_MESSAGES/gnome-vfs.mo
share/locale/de/LC_MESSAGES/gnome-vfs.mo share/locale/de/LC_MESSAGES/gnome-vfs.mo
share/locale/el/LC_MESSAGES/gnome-vfs.mo share/locale/el/LC_MESSAGES/gnome-vfs.mo
share/locale/es/LC_MESSAGES/gnome-vfs.mo share/locale/es/LC_MESSAGES/gnome-vfs.mo
share/locale/eu/LC_MESSAGES/gnome-vfs.mo
share/locale/fi/LC_MESSAGES/gnome-vfs.mo share/locale/fi/LC_MESSAGES/gnome-vfs.mo
share/locale/fr/LC_MESSAGES/gnome-vfs.mo share/locale/fr/LC_MESSAGES/gnome-vfs.mo
share/locale/ga/LC_MESSAGES/gnome-vfs.mo share/locale/ga/LC_MESSAGES/gnome-vfs.mo
@ -128,7 +114,6 @@ share/locale/uk/LC_MESSAGES/gnome-vfs.mo
share/locale/wa/LC_MESSAGES/gnome-vfs.mo share/locale/wa/LC_MESSAGES/gnome-vfs.mo
share/locale/zh_TW/LC_MESSAGES/gnome-vfs.mo share/locale/zh_TW/LC_MESSAGES/gnome-vfs.mo
@dirrm share/gnome/gtk-doc/html/gnome-vfs @dirrm share/gnome/gtk-doc/html/gnome-vfs
@dirrm share/gnome/application-registry
@dirrm lib/vfs/modules @dirrm lib/vfs/modules
@dirrm lib/vfs/extfs @dirrm lib/vfs/extfs
@dirrm lib/vfs @dirrm lib/vfs

View File

@ -6,7 +6,7 @@
# #
PORTNAME= gnomevfs PORTNAME= gnomevfs
PORTVERSION= 1.0.3 PORTVERSION= 1.0.4
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/gnome-vfs MASTER_SITE_SUBDIR= stable/sources/gnome-vfs
@ -14,11 +14,13 @@ DISTNAME= gnome-vfs-${PORTVERSION}
MAINTAINER= gnome@FreeBSD.org MAINTAINER= gnome@FreeBSD.org
BUILD_DEPENDS= msgfmt-new:${PORTSDIR}/devel/gettext-devel BUILD_DEPENDS= msgfmt-new:${PORTSDIR}/devel/gettext-devel \
${X11BASE}/libdata/pkgconfig/gnome-mime-data-2.0.pc:${PORTSDIR}/misc/gnomemimedata
LIB_DEPENDS= gconf-1.1:${PORTSDIR}/devel/gconf LIB_DEPENDS= gconf-1.1:${PORTSDIR}/devel/gconf
.if !exists(/usr/bin/bzip2) .if !exists(/usr/bin/bzip2)
LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2 LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2
.endif .endif
RUN_DEPENDS= ${X11BASE}/libdata/pkgconfig/gnome-mime-data-2.0.pc:${PORTSDIR}/misc/gnomemimedata
USE_GMAKE= yes USE_GMAKE= yes
USE_X_PREFIX= yes USE_X_PREFIX= yes

View File

@ -1 +1 @@
MD5 (gnome-vfs-1.0.3.tar.gz) = 18c90bec2e0e30372975e4621a8f19e5 MD5 (gnome-vfs-1.0.4.tar.gz) = d3dd15715da9671813805674cafa0dc8

View File

@ -1,9 +1,9 @@
$FreeBSD$ $FreeBSD$
--- configure.orig Wed Nov 7 13:37:59 2001 --- configure.orig Tue Jan 22 12:36:47 2002
+++ configure Wed Nov 7 13:38:44 2001 +++ configure Tue Jan 22 12:38:07 2002
@@ -5717,7 +5717,7 @@ @@ -5949,7 +5949,7 @@
VFS_GNOMEUI_LIBS="`gnome-config --libs gnome gnomeui`" VFS_GNOMEUI_LIBS="`gnome-config --libs gnome gnomeui`"
VFS_GNOMEGNORBA_LIBS="`gnome-config --libs gnome gnomeui gnorba`" VFS_GNOMEGNORBA_LIBS="`gnome-config --libs gnome gnomeui gnorba`"
VFS_CAPPLET_LIBS="`gnome-config --libs gnome gnomeui capplet`" VFS_CAPPLET_LIBS="`gnome-config --libs gnome gnomeui capplet`"
@ -12,18 +12,18 @@ $FreeBSD$
@@ -9630,8 +9630,8 @@ @@ -9854,8 +9854,8 @@
done done
fi fi
-echo $ac_n "checking for bzCompressInit in -lbz2""... $ac_c" 1>&6 -echo $ac_n "checking for bzCompressInit in -lbz2""... $ac_c" 1>&6
-echo "configure:9635: checking for bzCompressInit in -lbz2" >&5 -echo "configure:9859: checking for bzCompressInit in -lbz2" >&5
+echo $ac_n "checking for BZ2_bzCompressInit in -lbz2""... $ac_c" 1>&6 +echo $ac_n "checking for BZ2_bzCompressInit in -lbz2""... $ac_c" 1>&6
+echo "configure:9635: checking for BZ2_bzCompressInit in -lbz2" >&5 +echo "configure:9859: checking for BZ2_bzCompressInit in -lbz2" >&5
ac_lib_var=`echo bz2'_'bzCompressInit | sed 'y%./+-%__p_%'` ac_lib_var=`echo bz2'_'bzCompressInit | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
@@ -9644,10 +9644,10 @@ @@ -9868,10 +9868,10 @@
/* Override any gcc2 internal prototype to avoid an error. */ /* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2 /* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */ builtin and then its argument prototype would still apply. */
@ -35,4 +35,22 @@ $FreeBSD$
+BZ2_bzCompressInit() +BZ2_bzCompressInit()
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:9654: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:9878: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
@@ -10101,7 +10101,7 @@
echo $ac_n "(cached) $ac_c" 1>&6
else
- LDFLAGS="$LDFLAGS -L$with_openssl_libs -lssl -lcrypto -ldl"
+ LDFLAGS="$LDFLAGS -L$with_openssl_libs -lssl -lcrypto"
cat > conftest.$ac_ext <<EOF
#line 10107 "configure"
#include "confdefs.h"
@@ -10135,7 +10135,7 @@
EOF
msg_openssl="yes"
- OPENSSL_LDFLAGS="-L$with_openssl_libs -lssl -lcrypto -ldl"
+ OPENSSL_LDFLAGS="-L$with_openssl_libs -lssl -lcrypto"
if true; then

View File

@ -1,21 +1,21 @@
$FreeBSD$ $FreeBSD$
--- Makefile.in.orig Fri Sep 28 11:17:29 2001 --- Makefile.in.orig Tue Jan 22 11:51:36 2002
+++ Makefile.in Fri Sep 28 11:22:06 2001 +++ Makefile.in Tue Jan 22 11:53:19 2002
@@ -177,9 +177,9 @@ @@ -186,9 +186,9 @@
cxxflags_set = @cxxflags_set@
l = @l@ l = @l@
need_gnome_support = @need_gnome_support@
@PLATFORM_GNOME_2_TRUE@SUBDIRS_GNOME = doc @PLATFORM_GNOME_2_TRUE@SUBDIRS_GNOME = doc
-@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc test -@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc test
+@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc +@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc
-SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules data man devel-docs $(SUBDIRS_GNOME) po -SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules man devel-docs $(SUBDIRS_GNOME) po
+SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules data man $(SUBDIRS_GNOME) po +SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules man $(SUBDIRS_GNOME) po
EXTRA_DIST = HACKING TODO autogen.sh gnome-vfs.spec vfsConf.sh.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in gnome-vfs-config.in EXTRA_DIST = HACKING TODO autogen.sh gnome-vfs.spec vfsConf.sh.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in gnome-vfs-config.in
@@ -187,7 +187,7 @@ @@ -196,7 +196,7 @@
bin_SCRIPTS = $(top_builddir)/gnome-vfs-config bin_SCRIPTS = $(top_builddir)/gnome-vfs-config
@ -24,7 +24,7 @@ $FreeBSD$
confexec_DATA = vfsConf.sh confexec_DATA = vfsConf.sh
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
@@ -526,11 +526,13 @@ @@ -535,11 +535,13 @@
-e 's?\@VFS_INCLUDEDIR\@?$(VFS_INCLUDEDIR)?g' \ -e 's?\@VFS_INCLUDEDIR\@?$(VFS_INCLUDEDIR)?g' \
-e 's?\@VERSION\@?$(VERSION)?g' \ -e 's?\@VERSION\@?$(VERSION)?g' \
-e 's?\@VFS_LIBS\@?$(VFS_LIBS)?g' \ -e 's?\@VFS_LIBS\@?$(VFS_LIBS)?g' \

View File

@ -1,15 +1,44 @@
--- modules/Makefile.in.orig Thu Nov 2 17:45:41 2000
+++ modules/Makefile.in Fri Nov 3 10:52:23 2000 $FreeBSD$
@@ -235,2 +235,3 @@
--- modules/Makefile.in.orig Tue Jan 22 12:42:11 2002
+++ modules/Makefile.in Tue Jan 22 13:13:11 2002
@@ -197,7 +197,7 @@
@HAVE_CDDA_TRUE@CDDA_LTLIBS = libcdda.la
@HAVE_CDDA_FALSE@CDDA_LTLIBS =
+libftp_la_LDFLAGS = $(module_flags) -module_flags = -export_dynamic -avoid-version
+module_flags = -export_dynamic -avoid-version -module
modulesdir = $(libdir)/vfs/modules
@@ -283,3 +284,3 @@ modules_LTLIBRARIES = $(CDDA_LTLIBS) libextfs.la libfile.la libvfs-test.la $(HTTP_LTLIBS) libbzip2.la libgzip.la libftp.la libnntp.la libvfs-pipe.la libvfs-translate.la libdesktop.la $(NULL)
@@ -216,7 +216,6 @@
libcdda_la_SOURCES = cdda-method.c cdda-method.h cdda-cddb.c cdda-cddb.h cdda-cdrom-extensions.h
-
libcdda_la_LDFLAGS = $(module_flags)
libcdda_la_LIBADD = -L/gnome/lib -lcdda_paranoia -lcdda_interface
@@ -311,7 +310,7 @@
libextfs_la_OBJECTS = extfs-method.lo
libfile_la_LIBADD =
libfile_la_OBJECTS = file-method.lo libfile_la_OBJECTS = file-method.lo
-libvfs_test_la_LDFLAGS = -libvfs_test_la_LDFLAGS =
+libvfs_test_la_LDFLAGS = $(module_flags) +libvfs_test_la_LDFLAGS = $(module_flags)
libvfs_test_la_DEPENDENCIES = libvfs_test_la_DEPENDENCIES =
@@ -292,3 +293,2 @@ libvfs_test_la_OBJECTS = test-method.lo
libhttp_la_DEPENDENCIES =
@@ -320,10 +319,10 @@
libbzip2_la_OBJECTS = bzip2-method.lo
libgzip_la_DEPENDENCIES =
libgzip_la_OBJECTS = gzip-method.lo libgzip_la_OBJECTS = gzip-method.lo
-libftp_la_LDFLAGS = -libftp_la_LDFLAGS =
+libftp_la_LDFLAGS = $(module_flags)
libftp_la_LIBADD = libftp_la_LIBADD =
libftp_la_OBJECTS = ftp-method.lo
-libnntp_la_LDFLAGS =
+libnntp_la_LDFLAGS = $(module_flags)
libnntp_la_LIBADD =
libnntp_la_OBJECTS = nntp-method.lo
libvfs_pipe_la_DEPENDENCIES =

View File

@ -1,13 +0,0 @@
$FreeBSD$
--- libgnomevfs/gnome-vfs-mime.h 2001/09/17 14:13:01 1.1
+++ libgnomevfs/gnome-vfs-mime.h 2001/09/17 14:13:16
@@ -27,6 +27,7 @@
#include <ctype.h>
#include <dirent.h>
#include <libgnomevfs/gnome-vfs-uri.h>
+#include <sys/types.h>
#include <regex.h>
#include <stdio.h>
#include <string.h>

View File

@ -1,19 +1,27 @@
$FreeBSD$ $FreeBSD$
--- ltmain.sh 2001/08/27 09:51:26 1.1 --- ltmain.sh.orig Sun Jan 20 16:11:07 2002
+++ ltmain.sh 2001/08/27 09:51:42 +++ ltmain.sh Tue Jan 22 13:34:20 2002
@@ -2408,6 +2408,9 @@ @@ -1060,6 +1060,7 @@
*-*-netbsd*)
# Don't link with libc until the a.out ld.so is fixed. -module)
module=yes
+ build_old_libs=no
continue
;;
@@ -2442,6 +2443,9 @@
*-*-openbsd*)
# Do not include libc due to us having libc/libc_r.
;; ;;
+ *-*-freebsd*) + *-*-freebsd*)
+ # FreeBSD doesn't need this... + # FreeBSD doesn't need this...
+ ;; + ;;
*) *)
# Add libc to deplibs on all other systems if necessary. # Add libc to deplibs on all other systems if necessary.
if test "$build_libtool_need_lc" = "yes"; then if test $build_libtool_need_lc = "yes"; then
@@ -4175,10 +4178,12 @@ @@ -4208,10 +4212,12 @@
fi fi
# Install the pseudo-library for information purposes. # Install the pseudo-library for information purposes.

View File

@ -1,8 +1,7 @@
bin/gnome-vfs-config bin/gnome-vfs-config
etc/gnome-vfs-mime-magic
etc/vfs/modules/default-modules.conf etc/vfs/modules/default-modules.conf
etc/vfs/modules/ssl-modules.conf
etc/vfsConf.sh etc/vfsConf.sh
include/libgnomevfs
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-application-registry.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-application-registry.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-async-ops.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-async-ops.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-backend.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-backend.h
@ -50,7 +49,7 @@ include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-uri.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-utils.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-utils.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-xfer.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-xfer.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs.h
lib/libgnomevfs-pthread.a include/libgnomevfs
lib/libgnomevfs-pthread.so lib/libgnomevfs-pthread.so
lib/libgnomevfs.a lib/libgnomevfs.a
lib/libgnomevfs.so lib/libgnomevfs.so
@ -72,37 +71,24 @@ lib/vfs/extfs/tar
lib/vfs/extfs/trpm lib/vfs/extfs/trpm
lib/vfs/extfs/zip lib/vfs/extfs/zip
lib/vfs/extfs/zoo lib/vfs/extfs/zoo
lib/vfs/modules/libbzip2.a
lib/vfs/modules/libbzip2.so lib/vfs/modules/libbzip2.so
lib/vfs/modules/libdesktop.a
lib/vfs/modules/libdesktop.so lib/vfs/modules/libdesktop.so
lib/vfs/modules/libextfs.a
lib/vfs/modules/libextfs.so lib/vfs/modules/libextfs.so
lib/vfs/modules/libfile.a
lib/vfs/modules/libfile.so lib/vfs/modules/libfile.so
lib/vfs/modules/libftp.a
lib/vfs/modules/libftp.so lib/vfs/modules/libftp.so
lib/vfs/modules/libgconf.a
lib/vfs/modules/libgconf.so
lib/vfs/modules/libgzip.a
lib/vfs/modules/libgzip.so lib/vfs/modules/libgzip.so
lib/vfs/modules/libhttp.a
lib/vfs/modules/libhttp.so lib/vfs/modules/libhttp.so
lib/vfs/modules/libvfs-pipe.a lib/vfs/modules/libnntp.so
lib/vfs/modules/libvfs-pipe.so lib/vfs/modules/libvfs-pipe.so
lib/vfs/modules/libvfs-test.a
lib/vfs/modules/libvfs-test.so lib/vfs/modules/libvfs-test.so
lib/vfs/modules/libvfs-translate.a
lib/vfs/modules/libvfs-translate.so lib/vfs/modules/libvfs-translate.so
share/gnome/application-registry/gnome-vfs.applications
share/gnome/mime-info/gnome-vfs.keys
share/gnome/mime-info/gnome-vfs.mime
share/locale/az/LC_MESSAGES/gnome-vfs.mo share/locale/az/LC_MESSAGES/gnome-vfs.mo
share/locale/ca/LC_MESSAGES/gnome-vfs.mo share/locale/ca/LC_MESSAGES/gnome-vfs.mo
share/locale/da/LC_MESSAGES/gnome-vfs.mo share/locale/da/LC_MESSAGES/gnome-vfs.mo
share/locale/de/LC_MESSAGES/gnome-vfs.mo share/locale/de/LC_MESSAGES/gnome-vfs.mo
share/locale/el/LC_MESSAGES/gnome-vfs.mo share/locale/el/LC_MESSAGES/gnome-vfs.mo
share/locale/es/LC_MESSAGES/gnome-vfs.mo share/locale/es/LC_MESSAGES/gnome-vfs.mo
share/locale/eu/LC_MESSAGES/gnome-vfs.mo
share/locale/fi/LC_MESSAGES/gnome-vfs.mo share/locale/fi/LC_MESSAGES/gnome-vfs.mo
share/locale/fr/LC_MESSAGES/gnome-vfs.mo share/locale/fr/LC_MESSAGES/gnome-vfs.mo
share/locale/ga/LC_MESSAGES/gnome-vfs.mo share/locale/ga/LC_MESSAGES/gnome-vfs.mo
@ -128,7 +114,6 @@ share/locale/uk/LC_MESSAGES/gnome-vfs.mo
share/locale/wa/LC_MESSAGES/gnome-vfs.mo share/locale/wa/LC_MESSAGES/gnome-vfs.mo
share/locale/zh_TW/LC_MESSAGES/gnome-vfs.mo share/locale/zh_TW/LC_MESSAGES/gnome-vfs.mo
@dirrm share/gnome/gtk-doc/html/gnome-vfs @dirrm share/gnome/gtk-doc/html/gnome-vfs
@dirrm share/gnome/application-registry
@dirrm lib/vfs/modules @dirrm lib/vfs/modules
@dirrm lib/vfs/extfs @dirrm lib/vfs/extfs
@dirrm lib/vfs @dirrm lib/vfs

View File

@ -6,7 +6,7 @@
# #
PORTNAME= gnomevfs PORTNAME= gnomevfs
PORTVERSION= 1.0.3 PORTVERSION= 1.0.4
CATEGORIES= devel gnome CATEGORIES= devel gnome
MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/gnome-vfs MASTER_SITE_SUBDIR= stable/sources/gnome-vfs
@ -14,11 +14,13 @@ DISTNAME= gnome-vfs-${PORTVERSION}
MAINTAINER= gnome@FreeBSD.org MAINTAINER= gnome@FreeBSD.org
BUILD_DEPENDS= msgfmt-new:${PORTSDIR}/devel/gettext-devel BUILD_DEPENDS= msgfmt-new:${PORTSDIR}/devel/gettext-devel \
${X11BASE}/libdata/pkgconfig/gnome-mime-data-2.0.pc:${PORTSDIR}/misc/gnomemimedata
LIB_DEPENDS= gconf-1.1:${PORTSDIR}/devel/gconf LIB_DEPENDS= gconf-1.1:${PORTSDIR}/devel/gconf
.if !exists(/usr/bin/bzip2) .if !exists(/usr/bin/bzip2)
LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2 LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2
.endif .endif
RUN_DEPENDS= ${X11BASE}/libdata/pkgconfig/gnome-mime-data-2.0.pc:${PORTSDIR}/misc/gnomemimedata
USE_GMAKE= yes USE_GMAKE= yes
USE_X_PREFIX= yes USE_X_PREFIX= yes

View File

@ -1 +1 @@
MD5 (gnome-vfs-1.0.3.tar.gz) = 18c90bec2e0e30372975e4621a8f19e5 MD5 (gnome-vfs-1.0.4.tar.gz) = d3dd15715da9671813805674cafa0dc8

View File

@ -1,9 +1,9 @@
$FreeBSD$ $FreeBSD$
--- configure.orig Wed Nov 7 13:37:59 2001 --- configure.orig Tue Jan 22 12:36:47 2002
+++ configure Wed Nov 7 13:38:44 2001 +++ configure Tue Jan 22 12:38:07 2002
@@ -5717,7 +5717,7 @@ @@ -5949,7 +5949,7 @@
VFS_GNOMEUI_LIBS="`gnome-config --libs gnome gnomeui`" VFS_GNOMEUI_LIBS="`gnome-config --libs gnome gnomeui`"
VFS_GNOMEGNORBA_LIBS="`gnome-config --libs gnome gnomeui gnorba`" VFS_GNOMEGNORBA_LIBS="`gnome-config --libs gnome gnomeui gnorba`"
VFS_CAPPLET_LIBS="`gnome-config --libs gnome gnomeui capplet`" VFS_CAPPLET_LIBS="`gnome-config --libs gnome gnomeui capplet`"
@ -12,18 +12,18 @@ $FreeBSD$
@@ -9630,8 +9630,8 @@ @@ -9854,8 +9854,8 @@
done done
fi fi
-echo $ac_n "checking for bzCompressInit in -lbz2""... $ac_c" 1>&6 -echo $ac_n "checking for bzCompressInit in -lbz2""... $ac_c" 1>&6
-echo "configure:9635: checking for bzCompressInit in -lbz2" >&5 -echo "configure:9859: checking for bzCompressInit in -lbz2" >&5
+echo $ac_n "checking for BZ2_bzCompressInit in -lbz2""... $ac_c" 1>&6 +echo $ac_n "checking for BZ2_bzCompressInit in -lbz2""... $ac_c" 1>&6
+echo "configure:9635: checking for BZ2_bzCompressInit in -lbz2" >&5 +echo "configure:9859: checking for BZ2_bzCompressInit in -lbz2" >&5
ac_lib_var=`echo bz2'_'bzCompressInit | sed 'y%./+-%__p_%'` ac_lib_var=`echo bz2'_'bzCompressInit | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
@@ -9644,10 +9644,10 @@ @@ -9868,10 +9868,10 @@
/* Override any gcc2 internal prototype to avoid an error. */ /* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2 /* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */ builtin and then its argument prototype would still apply. */
@ -35,4 +35,22 @@ $FreeBSD$
+BZ2_bzCompressInit() +BZ2_bzCompressInit()
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:9654: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:9878: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
@@ -10101,7 +10101,7 @@
echo $ac_n "(cached) $ac_c" 1>&6
else
- LDFLAGS="$LDFLAGS -L$with_openssl_libs -lssl -lcrypto -ldl"
+ LDFLAGS="$LDFLAGS -L$with_openssl_libs -lssl -lcrypto"
cat > conftest.$ac_ext <<EOF
#line 10107 "configure"
#include "confdefs.h"
@@ -10135,7 +10135,7 @@
EOF
msg_openssl="yes"
- OPENSSL_LDFLAGS="-L$with_openssl_libs -lssl -lcrypto -ldl"
+ OPENSSL_LDFLAGS="-L$with_openssl_libs -lssl -lcrypto"
if true; then

View File

@ -1,21 +1,21 @@
$FreeBSD$ $FreeBSD$
--- Makefile.in.orig Fri Sep 28 11:17:29 2001 --- Makefile.in.orig Tue Jan 22 11:51:36 2002
+++ Makefile.in Fri Sep 28 11:22:06 2001 +++ Makefile.in Tue Jan 22 11:53:19 2002
@@ -177,9 +177,9 @@ @@ -186,9 +186,9 @@
cxxflags_set = @cxxflags_set@
l = @l@ l = @l@
need_gnome_support = @need_gnome_support@
@PLATFORM_GNOME_2_TRUE@SUBDIRS_GNOME = doc @PLATFORM_GNOME_2_TRUE@SUBDIRS_GNOME = doc
-@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc test -@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc test
+@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc +@PLATFORM_GNOME_2_FALSE@SUBDIRS_GNOME = doc
-SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules data man devel-docs $(SUBDIRS_GNOME) po -SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules man devel-docs $(SUBDIRS_GNOME) po
+SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules data man $(SUBDIRS_GNOME) po +SUBDIRS = libgnomevfs libgnomevfs-pthread idl modules man $(SUBDIRS_GNOME) po
EXTRA_DIST = HACKING TODO autogen.sh gnome-vfs.spec vfsConf.sh.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in gnome-vfs-config.in EXTRA_DIST = HACKING TODO autogen.sh gnome-vfs.spec vfsConf.sh.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in gnome-vfs-config.in
@@ -187,7 +187,7 @@ @@ -196,7 +196,7 @@
bin_SCRIPTS = $(top_builddir)/gnome-vfs-config bin_SCRIPTS = $(top_builddir)/gnome-vfs-config
@ -24,7 +24,7 @@ $FreeBSD$
confexec_DATA = vfsConf.sh confexec_DATA = vfsConf.sh
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
@@ -526,11 +526,13 @@ @@ -535,11 +535,13 @@
-e 's?\@VFS_INCLUDEDIR\@?$(VFS_INCLUDEDIR)?g' \ -e 's?\@VFS_INCLUDEDIR\@?$(VFS_INCLUDEDIR)?g' \
-e 's?\@VERSION\@?$(VERSION)?g' \ -e 's?\@VERSION\@?$(VERSION)?g' \
-e 's?\@VFS_LIBS\@?$(VFS_LIBS)?g' \ -e 's?\@VFS_LIBS\@?$(VFS_LIBS)?g' \

View File

@ -1,15 +1,44 @@
--- modules/Makefile.in.orig Thu Nov 2 17:45:41 2000
+++ modules/Makefile.in Fri Nov 3 10:52:23 2000 $FreeBSD$
@@ -235,2 +235,3 @@
--- modules/Makefile.in.orig Tue Jan 22 12:42:11 2002
+++ modules/Makefile.in Tue Jan 22 13:13:11 2002
@@ -197,7 +197,7 @@
@HAVE_CDDA_TRUE@CDDA_LTLIBS = libcdda.la
@HAVE_CDDA_FALSE@CDDA_LTLIBS =
+libftp_la_LDFLAGS = $(module_flags) -module_flags = -export_dynamic -avoid-version
+module_flags = -export_dynamic -avoid-version -module
modulesdir = $(libdir)/vfs/modules
@@ -283,3 +284,3 @@ modules_LTLIBRARIES = $(CDDA_LTLIBS) libextfs.la libfile.la libvfs-test.la $(HTTP_LTLIBS) libbzip2.la libgzip.la libftp.la libnntp.la libvfs-pipe.la libvfs-translate.la libdesktop.la $(NULL)
@@ -216,7 +216,6 @@
libcdda_la_SOURCES = cdda-method.c cdda-method.h cdda-cddb.c cdda-cddb.h cdda-cdrom-extensions.h
-
libcdda_la_LDFLAGS = $(module_flags)
libcdda_la_LIBADD = -L/gnome/lib -lcdda_paranoia -lcdda_interface
@@ -311,7 +310,7 @@
libextfs_la_OBJECTS = extfs-method.lo
libfile_la_LIBADD =
libfile_la_OBJECTS = file-method.lo libfile_la_OBJECTS = file-method.lo
-libvfs_test_la_LDFLAGS = -libvfs_test_la_LDFLAGS =
+libvfs_test_la_LDFLAGS = $(module_flags) +libvfs_test_la_LDFLAGS = $(module_flags)
libvfs_test_la_DEPENDENCIES = libvfs_test_la_DEPENDENCIES =
@@ -292,3 +293,2 @@ libvfs_test_la_OBJECTS = test-method.lo
libhttp_la_DEPENDENCIES =
@@ -320,10 +319,10 @@
libbzip2_la_OBJECTS = bzip2-method.lo
libgzip_la_DEPENDENCIES =
libgzip_la_OBJECTS = gzip-method.lo libgzip_la_OBJECTS = gzip-method.lo
-libftp_la_LDFLAGS = -libftp_la_LDFLAGS =
+libftp_la_LDFLAGS = $(module_flags)
libftp_la_LIBADD = libftp_la_LIBADD =
libftp_la_OBJECTS = ftp-method.lo
-libnntp_la_LDFLAGS =
+libnntp_la_LDFLAGS = $(module_flags)
libnntp_la_LIBADD =
libnntp_la_OBJECTS = nntp-method.lo
libvfs_pipe_la_DEPENDENCIES =

View File

@ -1,13 +0,0 @@
$FreeBSD$
--- libgnomevfs/gnome-vfs-mime.h 2001/09/17 14:13:01 1.1
+++ libgnomevfs/gnome-vfs-mime.h 2001/09/17 14:13:16
@@ -27,6 +27,7 @@
#include <ctype.h>
#include <dirent.h>
#include <libgnomevfs/gnome-vfs-uri.h>
+#include <sys/types.h>
#include <regex.h>
#include <stdio.h>
#include <string.h>

View File

@ -1,19 +1,27 @@
$FreeBSD$ $FreeBSD$
--- ltmain.sh 2001/08/27 09:51:26 1.1 --- ltmain.sh.orig Sun Jan 20 16:11:07 2002
+++ ltmain.sh 2001/08/27 09:51:42 +++ ltmain.sh Tue Jan 22 13:34:20 2002
@@ -2408,6 +2408,9 @@ @@ -1060,6 +1060,7 @@
*-*-netbsd*)
# Don't link with libc until the a.out ld.so is fixed. -module)
module=yes
+ build_old_libs=no
continue
;;
@@ -2442,6 +2443,9 @@
*-*-openbsd*)
# Do not include libc due to us having libc/libc_r.
;; ;;
+ *-*-freebsd*) + *-*-freebsd*)
+ # FreeBSD doesn't need this... + # FreeBSD doesn't need this...
+ ;; + ;;
*) *)
# Add libc to deplibs on all other systems if necessary. # Add libc to deplibs on all other systems if necessary.
if test "$build_libtool_need_lc" = "yes"; then if test $build_libtool_need_lc = "yes"; then
@@ -4175,10 +4178,12 @@ @@ -4208,10 +4212,12 @@
fi fi
# Install the pseudo-library for information purposes. # Install the pseudo-library for information purposes.

View File

@ -1,8 +1,7 @@
bin/gnome-vfs-config bin/gnome-vfs-config
etc/gnome-vfs-mime-magic
etc/vfs/modules/default-modules.conf etc/vfs/modules/default-modules.conf
etc/vfs/modules/ssl-modules.conf
etc/vfsConf.sh etc/vfsConf.sh
include/libgnomevfs
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-application-registry.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-application-registry.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-async-ops.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-async-ops.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-backend.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-backend.h
@ -50,7 +49,7 @@ include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-uri.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-utils.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-utils.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-xfer.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs-xfer.h
include/gnome-vfs-1.0/libgnomevfs/gnome-vfs.h include/gnome-vfs-1.0/libgnomevfs/gnome-vfs.h
lib/libgnomevfs-pthread.a include/libgnomevfs
lib/libgnomevfs-pthread.so lib/libgnomevfs-pthread.so
lib/libgnomevfs.a lib/libgnomevfs.a
lib/libgnomevfs.so lib/libgnomevfs.so
@ -72,37 +71,24 @@ lib/vfs/extfs/tar
lib/vfs/extfs/trpm lib/vfs/extfs/trpm
lib/vfs/extfs/zip lib/vfs/extfs/zip
lib/vfs/extfs/zoo lib/vfs/extfs/zoo
lib/vfs/modules/libbzip2.a
lib/vfs/modules/libbzip2.so lib/vfs/modules/libbzip2.so
lib/vfs/modules/libdesktop.a
lib/vfs/modules/libdesktop.so lib/vfs/modules/libdesktop.so
lib/vfs/modules/libextfs.a
lib/vfs/modules/libextfs.so lib/vfs/modules/libextfs.so
lib/vfs/modules/libfile.a
lib/vfs/modules/libfile.so lib/vfs/modules/libfile.so
lib/vfs/modules/libftp.a
lib/vfs/modules/libftp.so lib/vfs/modules/libftp.so
lib/vfs/modules/libgconf.a
lib/vfs/modules/libgconf.so
lib/vfs/modules/libgzip.a
lib/vfs/modules/libgzip.so lib/vfs/modules/libgzip.so
lib/vfs/modules/libhttp.a
lib/vfs/modules/libhttp.so lib/vfs/modules/libhttp.so
lib/vfs/modules/libvfs-pipe.a lib/vfs/modules/libnntp.so
lib/vfs/modules/libvfs-pipe.so lib/vfs/modules/libvfs-pipe.so
lib/vfs/modules/libvfs-test.a
lib/vfs/modules/libvfs-test.so lib/vfs/modules/libvfs-test.so
lib/vfs/modules/libvfs-translate.a
lib/vfs/modules/libvfs-translate.so lib/vfs/modules/libvfs-translate.so
share/gnome/application-registry/gnome-vfs.applications
share/gnome/mime-info/gnome-vfs.keys
share/gnome/mime-info/gnome-vfs.mime
share/locale/az/LC_MESSAGES/gnome-vfs.mo share/locale/az/LC_MESSAGES/gnome-vfs.mo
share/locale/ca/LC_MESSAGES/gnome-vfs.mo share/locale/ca/LC_MESSAGES/gnome-vfs.mo
share/locale/da/LC_MESSAGES/gnome-vfs.mo share/locale/da/LC_MESSAGES/gnome-vfs.mo
share/locale/de/LC_MESSAGES/gnome-vfs.mo share/locale/de/LC_MESSAGES/gnome-vfs.mo
share/locale/el/LC_MESSAGES/gnome-vfs.mo share/locale/el/LC_MESSAGES/gnome-vfs.mo
share/locale/es/LC_MESSAGES/gnome-vfs.mo share/locale/es/LC_MESSAGES/gnome-vfs.mo
share/locale/eu/LC_MESSAGES/gnome-vfs.mo
share/locale/fi/LC_MESSAGES/gnome-vfs.mo share/locale/fi/LC_MESSAGES/gnome-vfs.mo
share/locale/fr/LC_MESSAGES/gnome-vfs.mo share/locale/fr/LC_MESSAGES/gnome-vfs.mo
share/locale/ga/LC_MESSAGES/gnome-vfs.mo share/locale/ga/LC_MESSAGES/gnome-vfs.mo
@ -128,7 +114,6 @@ share/locale/uk/LC_MESSAGES/gnome-vfs.mo
share/locale/wa/LC_MESSAGES/gnome-vfs.mo share/locale/wa/LC_MESSAGES/gnome-vfs.mo
share/locale/zh_TW/LC_MESSAGES/gnome-vfs.mo share/locale/zh_TW/LC_MESSAGES/gnome-vfs.mo
@dirrm share/gnome/gtk-doc/html/gnome-vfs @dirrm share/gnome/gtk-doc/html/gnome-vfs
@dirrm share/gnome/application-registry
@dirrm lib/vfs/modules @dirrm lib/vfs/modules
@dirrm lib/vfs/extfs @dirrm lib/vfs/extfs
@dirrm lib/vfs @dirrm lib/vfs