Thu Aug 15 00:05:44 2013 UTC ()
Protect /* in bitmaps/Imakefile so that imake does not mistake it for
the start of a comment.


(gsutre)
diff -r1.23 -r1.24 pkgsrc/graphics/xpaint/distinfo
diff -r0 -r1.1 pkgsrc/graphics/xpaint/patches/patch-bitmaps_Imakefile

cvs diff -r1.23 -r1.24 pkgsrc/graphics/xpaint/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/xpaint/distinfo 2012/10/24 15:38:43 1.23
+++ pkgsrc/graphics/xpaint/distinfo 2013/08/15 00:05:44 1.24
@@ -1,15 +1,16 @@ @@ -1,15 +1,16 @@
1$NetBSD: distinfo,v 1.23 2012/10/24 15:38:43 joerg Exp $ 1$NetBSD: distinfo,v 1.24 2013/08/15 00:05:44 gsutre Exp $
2 2
3SHA1 (xpaint-2.7.8.1.tar.bz2) = d225254cc15cbc166c392b112b57104657a33aaa 3SHA1 (xpaint-2.7.8.1.tar.bz2) = d225254cc15cbc166c392b112b57104657a33aaa
4RMD160 (xpaint-2.7.8.1.tar.bz2) = 8efca6ff71df8635b8ed50e0c6db2b81f2e068cf 4RMD160 (xpaint-2.7.8.1.tar.bz2) = 8efca6ff71df8635b8ed50e0c6db2b81f2e068cf
5Size (xpaint-2.7.8.1.tar.bz2) = 459429 bytes 5Size (xpaint-2.7.8.1.tar.bz2) = 459429 bytes
6SHA1 (patch-aa) = c0f7d49081c3440b836754966527e39ee1bcabec 6SHA1 (patch-aa) = c0f7d49081c3440b836754966527e39ee1bcabec
7SHA1 (patch-ab) = 653a8873434093b4fc27e57a26e850ca23ec3556 7SHA1 (patch-ab) = 653a8873434093b4fc27e57a26e850ca23ec3556
8SHA1 (patch-ac) = 78ba5e1c2b0bb5e9abfd12783454d5b30499d5f0 8SHA1 (patch-ac) = 78ba5e1c2b0bb5e9abfd12783454d5b30499d5f0
9SHA1 (patch-ad) = a9223ef202e8fb00186be09d2ae6ae8d5d9968cc 9SHA1 (patch-ad) = a9223ef202e8fb00186be09d2ae6ae8d5d9968cc
10SHA1 (patch-ae) = 5ecb812e962701a6d5f068bb7744c5115b2eb263 10SHA1 (patch-ae) = 5ecb812e962701a6d5f068bb7744c5115b2eb263
11SHA1 (patch-af) = 73f1289ca104f4c53e8d184251d5a84c5c1ec7ab 11SHA1 (patch-af) = 73f1289ca104f4c53e8d184251d5a84c5c1ec7ab
12SHA1 (patch-ag) = a8eba89d7389a3e0b0973bf3a3c25a76ae7e0d84 12SHA1 (patch-ag) = a8eba89d7389a3e0b0973bf3a3c25a76ae7e0d84
13SHA1 (patch-ai) = 38f3532befe2c58cc11d0e055765b6098bbdd9f5 13SHA1 (patch-ai) = 38f3532befe2c58cc11d0e055765b6098bbdd9f5
 14SHA1 (patch-bitmaps_Imakefile) = c9d566999b13b10e3f7d7d7a60c34ef520597117
14SHA1 (patch-image_h) = 5e8afa76bdd58cd747c13662e0a37fcf5a62256e 15SHA1 (patch-image_h) = 5e8afa76bdd58cd747c13662e0a37fcf5a62256e
15SHA1 (patch-rw_readWritePS.c) = f56b512e888821134d2f7548741a33f0f8b886fd 16SHA1 (patch-rw_readWritePS.c) = f56b512e888821134d2f7548741a33f0f8b886fd

File Added: pkgsrc/graphics/xpaint/patches/Attic/patch-bitmaps_Imakefile
$NetBSD: patch-bitmaps_Imakefile,v 1.1 2013/08/15 00:05:44 gsutre Exp $

Really protect /* in the assignment of SRCS.  Fixes the following error:

making Makefiles in bitmaps...
        mv -f Makefile Makefile.bak
In file included from /usr/pkg/lib/X11/config/Imake.tmpl:2170:0,
                 from Imakefile.c:16:
./Imakefile:2:0: error: unterminated comment

--- bitmaps/Imakefile.orig	2002-11-14 10:09:21.000000000 +0000
+++ bitmaps/Imakefile
@@ -1,5 +1,5 @@
 MISC = Imakefile
-SRCS = *\/*
+SRCS = *'/'*
 
 makelist:
 	sh -c 'for i in '"$(TEXT) $(SRCS) $(MISC) $(HDRS)"' ; do \