pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/sysutils/gnome-vfs2 Update to 2.4.1, based on work don...
details: https://anonhg.NetBSD.org/pkgsrc/rev/76568fcef068
branches: trunk
changeset: 464723:76568fcef068
user: jmmv <jmmv%pkgsrc.org@localhost>
date: Sun Dec 14 19:47:26 2003 +0000
description:
Update to 2.4.1, based on work done by xtraeme@ and Min Sik Kim.
gnome-vfs-2.4.1
* Bugs fixed
+ Allow to create symlinks to huge files on
nearly full file systems (James M. Cape)
+ Fix compilation on HP/UX
* Translations
+ he (Gil "Dolfin" Osher), it (Luca Ferretti),
lv (Peteris Krisjanis), mr (Jitendra Shah),
nl (Vincent van Adrighem), pt_BR (Augusta Marques da Silva),
ro (Mi?u Moldovan), ta (Dinesh)
gnome-vfs 2.4.0
* Featurelets:
Updated translations
gnome-vfs 2.3.90
* Bugs fixed:
+ Just emit one mime db changed signal per change
gnome-vfs 2.3.8
* Bugs fixed:
+ CDE menu fixes
+ IPV6 build fixes for non-linux
+ removed usage of ngettext (for now)
+ fix fam crash
* Featurelets:
+ add dav schema for webdav usage
+ Make gnome_vfs_make_uri_from_input be smarter about
when to make http: uris
gnome-vfs 2.3.7
* Bugs fixed:
+ Test fixes
+ translation fixes
* Featurelets:
+ ignore_hosts gconf key for proxies
gnome-vfs 2.3.6
* Bugs fixed:
+ Fixes in CDE menu handling
+ Shrink default gnome-vfs stack size
+ Small API doc updates
+ Properly read .mime and .keys file not ending with \n
+ Compilation fixes when using gcc 3.3
+ Compilation fixes for Solaris
+ Leak fixes in URI and mime-type handling
+ When an unknown app is added to a mime-type short list,
also add it to this mime-type global list
* Featurelets:
+ Added an Accessibility submenu in the Applications menu
+ Improve parsing of URIs (wrongly) containing UTF-8 chars
+ Translation updates
gnome-vfs 2.3.5:
* Features:
+ added a startup notification application registry key
* Bugs fixed:
+ Fix memory handling in mime handlers.
+ Make job_private static in gnome-vfs-job.c
+ Fixed CDE menu crash
gnome-vfs 2.3.4:
* Bugs fixed:
+ Get Names of vfolder directories right
gnome-vfs 2.3.3:
* Bugs fixed:
+ Fix potential crashes for uris with %2F in them
+ solaris libnsl/libsocket build fixes
+ Fix fam threadsafe issue
+ Handle fam connection going away better
+ Fixed doc building
gnome-vfs 2.3.2
* Features:
+ ipv6 uris supported
+ add some command line applications for gnome-vfs
* Bugs fixed:
+ mp3 mimetype is audio/mpeg, not audio/x-mp3
+ build issues fixed
+ fix ncpfs filesystem
gnome-vfs 2.3.1
* Features:
+ New API gnome_vfs_url_show() and related calls
+ New function gnome_vfs_make_uri_from_input_with_dirs
+ Cygwin port
+ IPV6 support
* Bugs fixed:
+ Some mime fixes
+ Correctly handle symlinks to symlinks
+ hpux fixes
+ CDE menu translation fixes
+ Webdav PROPFIND details
+ Fixed locale aliases handling
+ call bindtextlocale to get translation working
+ Fixes to mtab handling
diffstat:
sysutils/gnome-vfs2/Makefile | 12 +-
sysutils/gnome-vfs2/PLIST | 144 ++++++++++++++--------------------
sysutils/gnome-vfs2/buildlink2.mk | 18 ++-
sysutils/gnome-vfs2/distinfo | 13 +-
sysutils/gnome-vfs2/patches/patch-aa | 33 --------
sysutils/gnome-vfs2/patches/patch-ae | 12 --
sysutils/gnome-vfs2/patches/patch-ag | 14 +-
sysutils/gnome-vfs2/patches/patch-ai | 23 +---
sysutils/gnome-vfs2/patches/patch-al | 36 --------
9 files changed, 93 insertions(+), 212 deletions(-)
diffs (truncated from 482 to 300 lines):
diff -r b002fad0ffd4 -r 76568fcef068 sysutils/gnome-vfs2/Makefile
--- a/sysutils/gnome-vfs2/Makefile Sun Dec 14 19:46:25 2003 +0000
+++ b/sysutils/gnome-vfs2/Makefile Sun Dec 14 19:47:26 2003 +0000
@@ -1,11 +1,10 @@
-# $NetBSD: Makefile,v 1.18 2003/12/04 19:48:25 xtraeme Exp $
+# $NetBSD: Makefile,v 1.19 2003/12/14 19:47:26 jmmv Exp $
#
-DISTNAME= gnome-vfs-2.2.4
+DISTNAME= gnome-vfs-2.4.1
PKGNAME= ${DISTNAME:S/vfs/vfs2/}
-PKGREVISION= 6
CATEGORIES= sysutils gnome
-MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gnome-vfs/2.2/}
+MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gnome-vfs/2.4/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= jmmv%NetBSD.org@localhost
@@ -30,6 +29,8 @@
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASE}
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc/html
+CPPFLAGS+= -I${BUILDLINK_PREFIX.cdparanoia}/include/cdparanoia
+
PKG_SYSCONFSUBDIR= gnome-vfs-2.0
OWN_DIRS= ${PKG_SYSCONFDIR}/modules ${PKG_SYSCONFDIR}/vfolders
@@ -56,9 +57,8 @@
.include "../../devel/GConf2/schemas.mk"
.include "../../devel/glib2/buildlink2.mk"
.include "../../devel/libbonobo/buildlink2.mk"
-.include "../../devel/bonobo-activation/buildlink2.mk"
+.include "../../devel/pkgconfig/buildlink2.mk"
.include "../../devel/popt/buildlink2.mk"
-.include "../../devel/zlib/buildlink2.mk"
.include "../../net/ORBit2/buildlink2.mk"
.include "../../textproc/libxml2/buildlink2.mk"
.include "../../security/openssl/buildlink2.mk"
diff -r b002fad0ffd4 -r 76568fcef068 sysutils/gnome-vfs2/PLIST
--- a/sysutils/gnome-vfs2/PLIST Sun Dec 14 19:46:25 2003 +0000
+++ b/sysutils/gnome-vfs2/PLIST Sun Dec 14 19:47:26 2003 +0000
@@ -1,4 +1,9 @@
-@comment $NetBSD: PLIST,v 1.5 2003/04/27 02:03:01 rh Exp $
+@comment $NetBSD: PLIST,v 1.6 2003/12/14 19:47:26 jmmv Exp $
+bin/gnomevfs-cat
+bin/gnomevfs-copy
+bin/gnomevfs-info
+bin/gnomevfs-ls
+bin/gnomevfs-mkdir
include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-application-registry.h
include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-async-ops.h
include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-cancellation.h
@@ -44,6 +49,9 @@
lib/gnome-vfs-2.0/modules/libbzip2.a
lib/gnome-vfs-2.0/modules/libbzip2.la
lib/gnome-vfs-2.0/modules/libbzip2.so
+lib/gnome-vfs-2.0/modules/libcdda.a
+lib/gnome-vfs-2.0/modules/libcdda.la
+lib/gnome-vfs-2.0/modules/libcdda.so
lib/gnome-vfs-2.0/modules/libextfs.a
lib/gnome-vfs-2.0/modules/libextfs.la
lib/gnome-vfs-2.0/modules/libextfs.so
@@ -83,8 +91,8 @@
lib/libgnomevfs-2.a
lib/libgnomevfs-2.la
lib/libgnomevfs-2.so
-lib/libgnomevfs-2.so.0
-lib/libgnomevfs-2.so.0.0
+lib/libgnomevfs-2.so.400
+lib/libgnomevfs-2.so.400.1
lib/pkgconfig/gnome-vfs-2.0.pc
lib/pkgconfig/gnome-vfs-module-2.0.pc
lib/vfs/2.0/extfs/README
@@ -106,96 +114,52 @@
lib/vfs/2.0/extfs/zoo
share/doc/html/gnome-vfs-2.0/about.html
share/doc/html/gnome-vfs-2.0/advanced-operations.html
-share/doc/html/gnome-vfs-2.0/c9456.html
-share/doc/html/gnome-vfs-2.0/c9466.html
share/doc/html/gnome-vfs-2.0/ch08.html
share/doc/html/gnome-vfs-2.0/data-types.html
-share/doc/html/gnome-vfs-2.0/directory-operations.html
-share/doc/html/gnome-vfs-2.0/everything-else.html
-share/doc/html/gnome-vfs-2.0/file-operations.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-application-registry.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-asynchronous-operations.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-cancellation.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-configuration.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-context.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-application-registry.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-async-ops.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-cancellation.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-context.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-directory-basic-ops.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-directory-find-ops.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-directory-list-ops.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-file-advanced-ops.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-file-basic-ops.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-file-info-ops.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-file-info.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-file-rw-ops.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-file-size.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-file-trunc-ops.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-inet-connection.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-init.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-method.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-mime-database.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-mime-monitor.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-mime.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-module-callback-module-api.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-module-callback.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-module-shared.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-module.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-monitor.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-parse-ls.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-result.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-socket-buffer.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-socket.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-ssl.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-standard-callbacks.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-transform.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-uri.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-utils.html
+share/doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-xfer.html
share/doc/html/gnome-vfs-2.0/gnome-vfs-directory-operations.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-directory.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-file-info.html
share/doc/html/gnome-vfs-2.0/gnome-vfs-file-operations.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-file-size.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-finding-special-directories.html
share/doc/html/gnome-vfs-2.0/gnome-vfs-first-steps.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-application-registry.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-async-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-cancellation.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-context.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-directory-basic-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-directory-find-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-directory-list-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-directory.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-file-advanced-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-file-basic-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-file-info-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-file-info.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-file-rw-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-file-size.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-file-trunc-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-find-directory.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-inet-connection.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-init.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-method.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-mime-database.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-mime-monitor.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-mime.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-module-callback-module-api.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-module-callback.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-module-shared.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-module.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-monitor.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-parse-ls.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-result.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-socket-buffer.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-socket.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-ssl.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-standard-callbacks.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-transform.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-uri.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-utils.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnome-vfs-xfer.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnomevfsmetadata.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-gnomevfsmimemonitor.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-inet-connection.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-initialization.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-iobuf.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-method.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-mime-handlers.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-mime-info.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-mime-magic.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-mime-monitor.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-mime-sniff-buffer.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-mime.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-module-callback-module-api.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-module-callbacks.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-module-shared.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-module.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-ops.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-parse-ls.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-process.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-result.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-ssl.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-standard-callbacks.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-types.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-uri.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-utils.html
share/doc/html/gnome-vfs-2.0/gnome-vfs-writing-modules.html
-share/doc/html/gnome-vfs-2.0/gnome-vfs-xfer.html
share/doc/html/gnome-vfs-2.0/index.html
share/doc/html/gnome-vfs-2.0/index.sgml
share/doc/html/gnome-vfs-2.0/mime-registry.html
share/doc/html/gnome-vfs-2.0/modules.html
-share/doc/html/gnome-vfs-2.0/writing-modules.html
-share/doc/html/gnome-vfs-2.0/x27.html
+share/examples/gnome-vfs-2.0/modules/cdda-module.conf
share/examples/gnome-vfs-2.0/modules/default-modules.conf
share/examples/gnome-vfs-2.0/vfolders/applications-all-users.vfolder-info
share/examples/gnome-vfs-2.0/vfolders/favorites.vfolder-info
@@ -204,6 +168,7 @@
share/examples/gnome-vfs-2.0/vfolders/server-settings.vfolder-info
share/examples/gnome-vfs-2.0/vfolders/start-here.vfolder-info
share/examples/gnome-vfs-2.0/vfolders/system-settings.vfolder-info
+share/gconf/schemas/desktop_default_applications.schemas
share/gconf/schemas/system_http_proxy.schemas
${PKGLOCALEDIR}/locale/am/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/ar/LC_MESSAGES/gnome-vfs-2.0.mo
@@ -214,6 +179,7 @@
${PKGLOCALEDIR}/locale/bs/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/ca/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/gnome-vfs-2.0.mo
+${PKGLOCALEDIR}/locale/cy/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/da/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/de/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/el/LC_MESSAGES/gnome-vfs-2.0.mo
@@ -230,15 +196,19 @@
${PKGLOCALEDIR}/locale/hi/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/id/LC_MESSAGES/gnome-vfs-2.0.mo
+${PKGLOCALEDIR}/locale/is/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/it/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/ja/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/gnome-vfs-2.0.mo
+${PKGLOCALEDIR}/locale/li/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/lt/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/lv/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/mk/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/ml/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/mn/LC_MESSAGES/gnome-vfs-2.0.mo
+${PKGLOCALEDIR}/locale/mr/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/ms/LC_MESSAGES/gnome-vfs-2.0.mo
+${PKGLOCALEDIR}/locale/ne/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/nl/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/nn/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/no/LC_MESSAGES/gnome-vfs-2.0.mo
@@ -250,7 +220,10 @@
${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/sq/LC_MESSAGES/gnome-vfs-2.0.mo
+${PKGLOCALEDIR}/locale/sr/LC_MESSAGES/gnome-vfs-2.0.mo
+${PKGLOCALEDIR}/locale/sr@Latn/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/gnome-vfs-2.0.mo
+${PKGLOCALEDIR}/locale/ta/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/uk/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/vi/LC_MESSAGES/gnome-vfs-2.0.mo
@@ -259,7 +232,6 @@
${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/gnome-vfs-2.0.mo
${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/gnome-vfs-2.0.mo
@comment in GConf2: @dirrm share/gconf/schemas
-@comment in GConf2: @dirrm share/gconf
@dirrm share/examples/gnome-vfs-2.0/vfolders
@dirrm share/examples/gnome-vfs-2.0/modules
@dirrm share/examples/gnome-vfs-2.0
@@ -270,8 +242,8 @@
@dirrm lib/gnome-vfs-2.0/modules
@dirrm lib/gnome-vfs-2.0/include
@dirrm lib/gnome-vfs-2.0
-@comment in bonobo-activation: @dirrm lib/bonobo/servers
-@comment in bonobo-activation: @dirrm lib/bonobo/monikers
+@comment in libbonobo: @dirrm lib/bonobo/servers
+@comment in libbonobo: @dirrm lib/bonobo/monikers
@dirrm include/gnome-vfs-module-2.0/libgnomevfs
@dirrm include/gnome-vfs-module-2.0
@dirrm include/gnome-vfs-2.0/libgnomevfs
diff -r b002fad0ffd4 -r 76568fcef068 sysutils/gnome-vfs2/buildlink2.mk
--- a/sysutils/gnome-vfs2/buildlink2.mk Sun Dec 14 19:46:25 2003 +0000
+++ b/sysutils/gnome-vfs2/buildlink2.mk Sun Dec 14 19:47:26 2003 +0000
@@ -1,18 +1,22 @@
-# $NetBSD: buildlink2.mk,v 1.11 2003/11/12 01:31:51 salo Exp $
+# $NetBSD: buildlink2.mk,v 1.12 2003/12/14 19:47:26 jmmv Exp $
+#
+# This Makefile fragment is included by packages that use gnome-vfs2.
+#
+# This file was created automatically using createbuildlink 2.8.
+#
.if !defined(GNOME_VFS2_BUILDLINK2_MK)
GNOME_VFS2_BUILDLINK2_MK= # defined
-BUILDLINK_PACKAGES+= gnome-vfs2
-BUILDLINK_DEPENDS.gnome-vfs2?= gnome-vfs2>=2.2.4nb4
+BUILDLINK_PACKAGES+= gnome-vfs2
+BUILDLINK_DEPENDS.gnome-vfs2?= gnome-vfs2>=2.4.1
BUILDLINK_PKGSRCDIR.gnome-vfs2?= ../../sysutils/gnome-vfs2
EVAL_PREFIX+= BUILDLINK_PREFIX.gnome-vfs2=gnome-vfs2
BUILDLINK_PREFIX.gnome-vfs2_DEFAULT= ${LOCALBASE}
-BUILDLINK_FILES.gnome-vfs2= include/gnome-vfs-2.0/libgnomevfs/*
+BUILDLINK_FILES.gnome-vfs2+= include/gnome-vfs-2.0/libgnomevfs/*
BUILDLINK_FILES.gnome-vfs2+= include/gnome-vfs-module-2.0/libgnomevfs/*
-BUILDLINK_FILES.gnome-vfs2+= lib/gnome-vfs-2.0/include/gnome-vfs-file-size.h
-BUILDLINK_FILES.gnome-vfs2+= lib/gnome-vfs-2.0/modules/*
Home |
Main Index |
Thread Index |
Old Index