diff options
author | ade <ade@FreeBSD.org> | 2000-06-30 03:28:06 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-06-30 03:28:06 +0800 |
commit | 91fd5265ffc7e8309a2a3e05bd34d93b86c9f516 (patch) | |
tree | 175331e58ad4ba0b7073a9ae834b7da962c6a386 /devel/gnomevfs2/files | |
parent | d4623a50b4e78e2aeab47df4b23a0e0e721f2694 (diff) | |
download | freebsd-ports-gnome-91fd5265ffc7e8309a2a3e05bd34d93b86c9f516.tar.gz freebsd-ports-gnome-91fd5265ffc7e8309a2a3e05bd34d93b86c9f516.tar.zst freebsd-ports-gnome-91fd5265ffc7e8309a2a3e05bd34d93b86c9f516.zip |
gnomevfs is the embryonic GNOME Virtual File System,
Diffstat (limited to 'devel/gnomevfs2/files')
-rw-r--r-- | devel/gnomevfs2/files/patch-aa | 41 | ||||
-rw-r--r-- | devel/gnomevfs2/files/patch-ab | 11 | ||||
-rw-r--r-- | devel/gnomevfs2/files/patch-ac | 18 |
3 files changed, 70 insertions, 0 deletions
diff --git a/devel/gnomevfs2/files/patch-aa b/devel/gnomevfs2/files/patch-aa new file mode 100644 index 000000000000..a84dfa92912f --- /dev/null +++ b/devel/gnomevfs2/files/patch-aa @@ -0,0 +1,41 @@ +--- configure.orig Tue Feb 22 01:04:03 2000 ++++ configure Wed Jun 28 16:08:33 2000 +@@ -2120,7 +2120,7 @@ + # Check whether --enable-gconf or --disable-gconf was given. + if test "${enable_gconf+set}" = set; then + enableval="$enable_gconf" +- gconf_enabled="yes" ++ gconf_enabled="$enableval" + fi + + # Check whether --with-default-backend or --without-default-backend was given. +@@ -4772,7 +4772,7 @@ + cat conftest.$ac_ext >&5 + rm -rf conftest* + CATOBJEXT=.mo +- DATADIRNAME=lib ++ DATADIRNAME=share + fi + rm -f conftest* + INSTOBJEXT=.mo +@@ -5545,7 +5545,7 @@ + VFSPTHREAD_LIBDIR='-L${libdir}' + VFSPTHREAD_INCLUDEDIR='-I${includedir}' + VFSPTHREAD_INCLUDEDIR="$VFSPTHREAD_INCLUDEDIR `gnome-config --cflags gnome`" +-VFSPTHREAD_LIBS="-lgnomevfs -lgnomevfs-pthread `gnome-config --libs gnome` `glib-config --libs gthread`" ++VFSPTHREAD_LIBS="-lgnomevfs -lgnomevfs-pthread `gnome-config --libs gnome` `$GLIB_CONFIG --libs gthread`" + + + +@@ -5558,9 +5558,9 @@ + EOF + + +-VFS_LIBS="-lgnomevfs `glib-config --libs gthread gmodule`" ++VFS_LIBS="-lgnomevfs `$GLIB_CONFIG --libs gthread gmodule`" + VFS_LIBDIR='-L${libdir}' +-VFS_INCLUDEDIR='-I${includedir}'" `glib-config --cflags gthread gmodule`" ++VFS_INCLUDEDIR='-I${includedir}'" `$GLIB_CONFIG --cflags gthread gmodule`" + + + diff --git a/devel/gnomevfs2/files/patch-ab b/devel/gnomevfs2/files/patch-ab new file mode 100644 index 000000000000..5dacf4ba5702 --- /dev/null +++ b/devel/gnomevfs2/files/patch-ab @@ -0,0 +1,11 @@ +--- Makefile.in.orig Tue Feb 22 01:45:45 2000 ++++ Makefile.in Wed Jun 28 14:08:43 2000 +@@ -143,7 +143,7 @@ + EXTRA_DIST = HACKING TODO autogen.sh vfsConf.sh.in vfscorbaConf.sh.in vfspthreadConf.sh.in + + +-confexecdir = $(libdir) ++confexecdir = $(sysconfdir) + confexec_DATA = vfsConf.sh vfscorbaConf.sh vfspthreadConf.sh + + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 diff --git a/devel/gnomevfs2/files/patch-ac b/devel/gnomevfs2/files/patch-ac new file mode 100644 index 000000000000..7be0be993a1f --- /dev/null +++ b/devel/gnomevfs2/files/patch-ac @@ -0,0 +1,18 @@ +--- modules/Makefile.in.orig Tue Feb 22 01:45:51 2000 ++++ modules/Makefile.in Wed Jun 28 16:20:34 2000 +@@ -191,6 +191,7 @@ + + libftp_la_SOURCES = ftp-method.c ftp-method.h module-shared.c module-shared.h + ++libftp_la_LDFLAGS = $(module_flags) + + ### `gconf' method + +@@ -238,7 +239,6 @@ + libbzip2_la_OBJECTS = bzip2-method.lo + libgzip_la_DEPENDENCIES = + libgzip_la_OBJECTS = gzip-method.lo +-libftp_la_LDFLAGS = + libftp_la_LIBADD = + libftp_la_OBJECTS = ftp-method.lo module-shared.lo + libvfs_pipe_la_DEPENDENCIES = |