pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/misc/koffice Remove patch file that should have gone w...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b8c473c09d00
branches:  trunk
changeset: 496939:b8c473c09d00
user:      markd <markd%pkgsrc.org@localhost>
date:      Sun Jul 17 12:24:20 2005 +0000

description:
Remove patch file that should have gone with the last update.
Fix build on NetBSD 1.6:
   1.6's tar misnamed a file when unpacking (!?) so fix up if this
   happens.
   g++'s vector template doesn't have an at() method but what we actually
   want is back() (which it does have) so use it.

diffstat:

 misc/koffice/Makefile         |  10 +++++++++-
 misc/koffice/distinfo         |   3 ++-
 misc/koffice/patches/patch-aa |  13 -------------
 misc/koffice/patches/patch-am |  13 +++++++++++++
 4 files changed, 24 insertions(+), 15 deletions(-)

diffs (72 lines):

diff -r 3fdc1d5cdf84 -r b8c473c09d00 misc/koffice/Makefile
--- a/misc/koffice/Makefile     Sun Jul 17 04:17:09 2005 +0000
+++ b/misc/koffice/Makefile     Sun Jul 17 12:24:20 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.59 2005/06/27 02:06:45 markd Exp $
+# $NetBSD: Makefile,v 1.60 2005/07/17 12:24:20 markd Exp $
 
 DISTNAME=      koffice-1.4.0a
 CATEGORIES=    misc kde
@@ -40,6 +40,14 @@
 
 .include "options.mk"
 
+# fix odd broken untaring on NetBSD 1.6
+post-extract:
+       cd ${WRKSRC}/krita/plugins/convolutionfilters; \
+       if [ -f kis_custom_convolution_filter_configuration_widget. ]; then \
+               ${MV} kis_custom_convolution_filter_configuration_widget. \
+               kis_custom_convolution_filter_configuration_widget.h; \
+       fi
+
 post-install:
        @# The global desktop template files need to be user-writeable, or
        @# else users won't be able to alter them after copying them to
diff -r 3fdc1d5cdf84 -r b8c473c09d00 misc/koffice/distinfo
--- a/misc/koffice/distinfo     Sun Jul 17 04:17:09 2005 +0000
+++ b/misc/koffice/distinfo     Sun Jul 17 12:24:20 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.22 2005/06/27 02:06:45 markd Exp $
+$NetBSD: distinfo,v 1.23 2005/07/17 12:24:20 markd Exp $
 
 SHA1 (koffice-1.4.0a.tar.bz2) = 8ccd90df94f2c5a06e245cf223f75112ec37652d
 RMD160 (koffice-1.4.0a.tar.bz2) = 4bf8885c618dfd513fff77f74048cc389b293a0a
@@ -11,3 +11,4 @@
 SHA1 (patch-aj) = ac38387f0d77c74cc706ef9101e84eb9f6013b41
 SHA1 (patch-ak) = f077c819a33c642f30d6b2a00d581b911f3bbec9
 SHA1 (patch-al) = a234cdc2a1aa3d5c92993d464edc336c3ccc1dbc
+SHA1 (patch-am) = 7b23a60d7bac76421d5ec14279b3ab454af2165d
diff -r 3fdc1d5cdf84 -r b8c473c09d00 misc/koffice/patches/patch-aa
--- a/misc/koffice/patches/patch-aa     Sun Jul 17 04:17:09 2005 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.8 2004/05/04 11:47:30 markd Exp $
-
---- filters/karbon/msod/msodimport.cc.orig     2004-04-12 21:18:28.000000000 +1200
-+++ filters/karbon/msod/msodimport.cc
-@@ -30,7 +30,7 @@ DESCRIPTION
- #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;
- 
diff -r 3fdc1d5cdf84 -r b8c473c09d00 misc/koffice/patches/patch-am
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/koffice/patches/patch-am     Sun Jul 17 12:24:20 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-am,v 1.3 2005/07/17 12:24:20 markd Exp $
+
+--- filters/kspread/excel/sidewinder/excel.cpp.orig    Mon Jul 18 11:17:42 2005
++++ filters/kspread/excel/sidewinder/excel.cpp
+@@ -5499,7 +5499,7 @@ void mergeTokens( UStringStack* stack, i
+   {
+       count--;
+     
+-    UString last = stack->at( stack->size()-1 );
++    UString last = stack->back();
+     UString tmp = last;
+     tmp.append( s1 );
+     s1 = tmp;



Home | Main Index | Thread Index | Old Index