[Midnightbsd-cvs] mports: ghostscript-gpl/files: remove dead patches

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Thu May 22 14:34:48 EDT 2008


Log Message:
-----------
remove dead patches

Removed Files:
-------------
    mports/print/ghostscript-gpl/files:
        patch-src:gdevcp50.c
        patch-src:gdevifno.c

-------------- next part --------------
--- print/ghostscript-gpl/files/patch-src:gdevcp50.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/gdevcp50.c.orig	Fri Feb 22 07:24:51 2002
-+++ src/gdevcp50.c	Sun Nov 10 22:35:13 2002
-@@ -204,9 +204,12 @@
-  
- /* Map a r-g-b color to a color index. */
- private gx_color_index
--cp50_rgb_color(gx_device *dev, gx_color_value r, gx_color_value g,
--  gx_color_value b)
--{   return ((ulong)gx_color_value_to_byte(r) << 16)+
-+cp50_rgb_color(gx_device *dev, const gx_color_value cv[])
-+{
-+    gx_color_value r = cv[0];
-+    gx_color_value g = cv[1];
-+    gx_color_value b = cv[2];
-+    return ((ulong)gx_color_value_to_byte(r) << 16)+
-            ((uint)gx_color_value_to_byte(g) << 8) +
-            gx_color_value_to_byte(b);
- }
--- print/ghostscript-gpl/files/patch-src:gdevifno.c
+++ /dev/null
@@ -1,15 +0,0 @@
---- src/gdevifno.c.orig	Sun Jun 16 14:48:55 2002
-+++ src/gdevifno.c	Sun Nov 10 22:49:32 2002
-@@ -99,8 +99,10 @@
-  * rgb and color map entries
-  */
- private gx_color_index 
--inferno_rgb2cmap(gx_device *dev, gx_color_value red,
--  gx_color_value green, gx_color_value blue) {
-+inferno_rgb2cmap(gx_device *dev, const gx_color_value cv[]) {
-+	gx_color_value red = cv[0];
-+	gx_color_value green = cv[1];
-+	gx_color_value blue = cv[2];
- 	int shift;
- 	inferno_device *bdev = (inferno_device*) dev;
- 	int nbits = bdev->nbits;


More information about the Midnightbsd-cvs mailing list