Sat Dec 18 08:15:52 2010 UTC ()
Remove a portion of patch-aa that patched in a reference to
BUILDLINK_PREFIX.jpeg, which probably never worked, and should be entirely
unnecessary.


(dsainty)
diff -r1.3 -r1.4 pkgsrc/graphics/resize_image/distinfo
diff -r1.1.1.1 -r1.2 pkgsrc/graphics/resize_image/patches/patch-aa

cvs diff -r1.3 -r1.4 pkgsrc/graphics/resize_image/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/resize_image/distinfo 2007/10/10 22:47:46 1.3
+++ pkgsrc/graphics/resize_image/distinfo 2010/12/18 08:15:51 1.4
@@ -1,9 +1,9 @@ @@ -1,9 +1,9 @@
1$NetBSD: distinfo,v 1.3 2007/10/10 22:47:46 rillig Exp $ 1$NetBSD: distinfo,v 1.4 2010/12/18 08:15:51 dsainty Exp $
2 2
3SHA1 (resize_image-0.6.tar.gz) = e26f53db67de09bc641caf1ced4742a97be0c4a4 3SHA1 (resize_image-0.6.tar.gz) = e26f53db67de09bc641caf1ced4742a97be0c4a4
4RMD160 (resize_image-0.6.tar.gz) = 42d2ab8813835d51aa984546cb5f2c003e01f667 4RMD160 (resize_image-0.6.tar.gz) = 42d2ab8813835d51aa984546cb5f2c003e01f667
5Size (resize_image-0.6.tar.gz) = 87249 bytes 5Size (resize_image-0.6.tar.gz) = 87249 bytes
6SHA1 (patch-aa) = b72497572209b10eba9e4a2becbfb53661031092 6SHA1 (patch-aa) = 65098e5be882473082afcf1411fe32f3fcb9dacc
7SHA1 (patch-ab) = 1ef571f47e79a018dfa73d5996265059edd746d1 7SHA1 (patch-ab) = 1ef571f47e79a018dfa73d5996265059edd746d1
8SHA1 (patch-ac) = 98b9d32e7d6ba96244a27288a9b36b3a7d41fbd1 8SHA1 (patch-ac) = 98b9d32e7d6ba96244a27288a9b36b3a7d41fbd1
9SHA1 (patch-ad) = a11e21c71ef4dda8d4ff5311dc57c857fe84f064 9SHA1 (patch-ad) = a11e21c71ef4dda8d4ff5311dc57c857fe84f064

cvs diff -r1.1.1.1 -r1.2 pkgsrc/graphics/resize_image/patches/patch-aa (expand / switch to unified diff)

--- pkgsrc/graphics/resize_image/patches/patch-aa 2003/09/10 21:44:46 1.1.1.1
+++ pkgsrc/graphics/resize_image/patches/patch-aa 2010/12/18 08:15:52 1.2
@@ -1,31 +1,30 @@ @@ -1,31 +1,30 @@
1$NetBSD: patch-aa,v 1.1.1.1 2003/09/10 21:44:46 itojun Exp $ 1$NetBSD: patch-aa,v 1.2 2010/12/18 08:15:52 dsainty Exp $
2 2
3--- Makefile.orig 2002-08-08 20:13:01.000000000 +0900 3--- Makefile.orig 2002-08-08 20:13:01.000000000 +0900
4+++ Makefile 2003-09-11 06:40:40.000000000 +0900 4+++ Makefile 2003-09-11 06:40:40.000000000 +0900
5@@ -1,17 +1,17 @@ 5@@ -1,17 +1,17 @@
6 # compilateur utilisé 6 # compilateur utilisé
7-CC = gcc -O2 -DUNIX -Wall -g 7-CC = gcc -O2 -DUNIX -Wall -g
8+#CC = gcc -O2 -DUNIX -Wall -g 8+#CC = gcc -O2 -DUNIX -Wall -g
9 # compilateur utilisé quand une forte optimisation est nécessaire 9 # compilateur utilisé quand une forte optimisation est nécessaire
10-CC_OPT = gcc -O6 -DUNIX -Wall -g 10-CC_OPT = gcc -O6 -DUNIX -Wall -g
11+#CC_OPT = gcc -O6 -DUNIX -Wall -g 11+#CC_OPT = gcc -O6 -DUNIX -Wall -g
12  12
13 # répertoire on seront placés les fichiers .o 13 # répertoire on seront placés les fichiers .o
14 OBJ_DIR = obj 14 OBJ_DIR = obj
15  15
16 # tout les repertoires a rajouter dans le PATH utilise pour les includes 16 # tout les repertoires a rajouter dans le PATH utilise pour les includes
17-INCLUDE_PATH = -Iimage -Iutils 17 INCLUDE_PATH = -Iimage -Iutils
18+INCLUDE_PATH = -Iimage -Iutils -I${BUILDLINK_PREFIX.jpeg}/include 
19 # tout les repertoires a rajouter dans le PATH utilise lors du linkage 18 # tout les repertoires a rajouter dans le PATH utilise lors du linkage
20 LIBRARY_PATH =  19 LIBRARY_PATH =
21 # toutes les bibliotheques a utiliser au linkage 20 # toutes les bibliotheques a utiliser au linkage
22-LIBRARY = -lm -ljpeg 21-LIBRARY = -lm -ljpeg
23+LIBRARY = $(LDFLAGS) -lm -ljpeg 22+LIBRARY = $(LDFLAGS) -lm -ljpeg
24  23
25 ############################################################ 24 ############################################################
26 # pour le programme final (le linkage) 25 # pour le programme final (le linkage)
27@@ -38,14 +38,14 @@ 26@@ -38,14 +38,14 @@
28 include image/Makefile 27 include image/Makefile
29  28
30 resize_image : $(OBJ_DIR)/resize_image.o $(IMAGE_OBJS) $(UTILS_OBJS) 29 resize_image : $(OBJ_DIR)/resize_image.o $(IMAGE_OBJS) $(UTILS_OBJS)
31- $(CC) $(OBJ_DIR)/resize_image.o $(IMAGE_OBJS) $(UTILS_OBJS) $(LIBRARY_PATH)\ 30- $(CC) $(OBJ_DIR)/resize_image.o $(IMAGE_OBJS) $(UTILS_OBJS) $(LIBRARY_PATH)\