diff options
author | mycroft <mycroft> | 2003-10-04 20:26:34 +0000 |
---|---|---|
committer | mycroft <mycroft> | 2003-10-04 20:26:34 +0000 |
commit | 9584e339ef13d4c7b56760da545893526a12f17f (patch) | |
tree | 84310c65d111fccb37208c785b13d8b694800dc5 /misc | |
parent | 74d73c02a2b900fcaa52f4bc85166b004205e4e3 (diff) | |
download | pkgsrc-9584e339ef13d4c7b56760da545893526a12f17f.tar.gz |
Fix a buglet in this version -- libkarbonmsodimport.so was exporting the wrong
name for the init function.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/koffice-devel/distinfo | 3 | ||||
-rw-r--r-- | misc/koffice-devel/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/misc/koffice-devel/distinfo b/misc/koffice-devel/distinfo index db689c1b7bb..39e1140ccd0 100644 --- a/misc/koffice-devel/distinfo +++ b/misc/koffice-devel/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.1 2003/10/04 20:16:03 mycroft Exp $ +$NetBSD: distinfo,v 1.2 2003/10/04 20:26:34 mycroft Exp $ SHA1 (koffice-1.2.93.tar.bz2) = 2c73734f9852932101677c21fb07a0617eca82cf Size (koffice-1.2.93.tar.bz2) = 10503068 bytes +SHA1 (patch-aa) = 865725ae91baa89ea3a9e87613cc9837e1034ac7 diff --git a/misc/koffice-devel/patches/patch-aa b/misc/koffice-devel/patches/patch-aa new file mode 100644 index 00000000000..28c93c9b95d --- /dev/null +++ b/misc/koffice-devel/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2003/10/04 20:26:34 mycroft Exp $ + +--- filters/karbon/msod/msodimport.cc.orig 2003-10-04 20:22:54.000000000 +0000 ++++ filters/karbon/msod/msodimport.cc 2003-10-04 20:23:03.000000000 +0000 +@@ -30,7 +30,7 @@ + #include <qpointarray.h> + + typedef KGenericFactory<MSODImport, KoFilter> MSODImportFactory; +-K_EXPORT_COMPONENT_FACTORY( libmsodimport, MSODImportFactory( "karbonmsodimport" ) ); ++K_EXPORT_COMPONENT_FACTORY( libkarbonmsodimport, MSODImportFactory( "karbonmsodimport" ) ); + + const int MSODImport::s_area = 30505; + |