[76083] trunk/dports/graphics/pstoedit

ryandesign at macports.org ryandesign at macports.org
Thu Feb 17 18:00:13 PST 2011


Revision: 76083
          http://trac.macports.org/changeset/76083
Author:   ryandesign at macports.org
Date:     2011-02-17 18:00:11 -0800 (Thu, 17 Feb 2011)
Log Message:
-----------
pstoedit: update to 3.50; see #28442

Modified Paths:
--------------
    trunk/dports/graphics/pstoedit/Portfile
    trunk/dports/graphics/pstoedit/files/patch-src__cppcomp.h

Removed Paths:
-------------
    trunk/dports/graphics/pstoedit/files/patch-src-pstoedit.diff

Modified: trunk/dports/graphics/pstoedit/Portfile
===================================================================
--- trunk/dports/graphics/pstoedit/Portfile	2011-02-18 00:02:19 UTC (rev 76082)
+++ trunk/dports/graphics/pstoedit/Portfile	2011-02-18 02:00:11 UTC (rev 76083)
@@ -4,8 +4,7 @@
 PortSystem          1.0
 
 name                pstoedit
-version             3.45
-revision            5
+version             3.50
 categories          graphics
 maintainers         nomaintainer
 description         Translate PostScript and PDF to other vector formats
@@ -18,7 +17,8 @@
 homepage            http://www.pstoedit.net
 master_sites        sourceforge
 
-checksums           md5 071efc64d9edf5d942b407348ac7451d
+checksums           sha1    5685bef29fa00aae7cc314d3a1dd21612a98eb2b \
+                    rmd160  ba9be28424ced48464d93dd8bca60107d181a1c3
 
 depends_lib         port:ImageMagick \
                     port:plotutils \
@@ -26,8 +26,10 @@
                     port:zlib
 depends_run         port:ghostscript
 
-patchfiles          patch-src-pstoedit.diff patch-src__cppcomp.h
+patchfiles          patch-src__cppcomp.h
 
+configure.args      --without-swf
+
 configure.cppflags-append   "-Wno-long-long"
 
 use_parallel_build  no

Deleted: trunk/dports/graphics/pstoedit/files/patch-src-pstoedit.diff
===================================================================
--- trunk/dports/graphics/pstoedit/files/patch-src-pstoedit.diff	2011-02-18 00:02:19 UTC (rev 76082)
+++ trunk/dports/graphics/pstoedit/files/patch-src-pstoedit.diff	2011-02-18 02:00:11 UTC (rev 76083)
@@ -1,49 +0,0 @@
---- src/pstoedit.cpp.orig	2007-07-22 05:27:38.000000000 -0600
-+++ src/pstoedit.cpp	2008-10-25 20:08:32.000000000 -0600
-@@ -352,14 +352,16 @@
- 	#endif
- #endif
- 
-+	const unsigned int remaining = options.parseoptions(errstream,argc,argv);
-+
-+	if (!options.quiet) {
- 	errstream << "pstoedit: version " << version << " / DLL interface " <<
- 		drvbaseVersion << " (build " << __DATE__ << " - " << buildtype << " - " << compversion << ")" 
- 		" : Copyright (C) 1993 - 2007 Wolfgang Glunz\n";
-+	}
- 	// int arg = 1;
- 	drvbase::SetVerbose( false );	// init
- 
--
--	const unsigned int remaining = options.parseoptions(errstream,argc,argv);
- 	//  handling of derived parameters
- 	drvbase::SetVerbose(options.verbose);
- 	closerObject.fromgui = (bool) options.fromgui;
---- src/pstoeditoptions.h.orig	2007-07-22 05:27:48.000000000 -0600
-+++ src/pstoeditoptions.h	2008-10-25 20:11:30.000000000 -0600
-@@ -156,6 +156,7 @@
- 
- 	Option < bool, BoolTrueExtractor > splitpages ;//= false;
- 	Option < bool, BoolTrueExtractor > verbose ;//= false;
-+	Option < bool, BoolTrueExtractor > quiet ;//= false;
- 	Option < bool, BoolTrueExtractor > useBBfrominput; //= false;
- 	Option < bool, BoolTrueExtractor > simulateSubPaths ;//= false;
- 	Option < RSString, RSStringValueExtractor> unmappablecharstring ;//= 0;
-@@ -333,6 +334,9 @@
- 		"Switch on verbose mode. Some additional information is shown "
- 		"during processing. ",
- 		false),
-+	quiet				(true, "-quiet",noArgument,b_t,"turns on quiet mode",
-+		"Switch on quiet mode. Version information is not shown. ",
-+		false),
- 	useBBfrominput		(true, "-usebbfrominput",noArgument,g_t,"extract BoundingBox from input file rather than determining it during processing", 
- 		"If specified, pstoedit uses the BoundingBox as is (hopefully) found in the input file instead of one that is calculated by its own. ",
- 		false),
-@@ -573,6 +577,7 @@
- 
- 	ADD(splitpages);
- 	ADD(verbose );
-+	ADD(quiet);
- 	ADD(useBBfrominput);
- 	ADD(simulateSubPaths);
- 	ADD(unmappablecharstring);

Modified: trunk/dports/graphics/pstoedit/files/patch-src__cppcomp.h
===================================================================
--- trunk/dports/graphics/pstoedit/files/patch-src__cppcomp.h	2011-02-18 00:02:19 UTC (rev 76082)
+++ trunk/dports/graphics/pstoedit/files/patch-src__cppcomp.h	2011-02-18 02:00:11 UTC (rev 76083)
@@ -1,6 +1,6 @@
---- src/cppcomp.h.orig	2007-07-22 04:27:40.000000000 -0700
-+++ src/cppcomp.h	2009-07-22 19:43:48.000000000 -0700
-@@ -235,7 +235,7 @@
+--- src/cppcomp.h.orig	2009-06-21 10:10:39.000000000 -0500
++++ src/cppcomp.h	2011-02-17 17:11:47.000000000 -0600
+@@ -244,7 +244,7 @@
  static inline void strncpy_s(char * de, size_t de_size, const char *  so, size_t count)   {
  	const size_t sourcelen = strlen(so);
  	size_t tobecopied = sourcelen < count ? sourcelen : count;
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20110217/1e6f41a3/attachment.html>


More information about the macports-changes mailing list