diff options
author | drochner <drochner@pkgsrc.org> | 2009-11-24 11:19:03 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2009-11-24 11:19:03 +0000 |
commit | ed08280fa3fc0f826637f796a350b2ea701e9ffb (patch) | |
tree | e7e8dca1a0b82751b9df103fbeff195c73292550 | |
parent | 00fafc167a1ee797a8c2f7f66075f76352453b1a (diff) | |
download | pkgsrc-ed08280fa3fc0f826637f796a350b2ea701e9ffb.tar.gz |
update to 0.2.4
changes:
-Database updates
-Fixed a crasher bug with gcc 4.4
-rw-r--r-- | graphics/lensfun/Makefile | 5 | ||||
-rw-r--r-- | graphics/lensfun/distinfo | 10 | ||||
-rw-r--r-- | graphics/lensfun/patches/patch-ac | 16 | ||||
-rw-r--r-- | graphics/lensfun/patches/patch-ad | 13 |
4 files changed, 37 insertions, 7 deletions
diff --git a/graphics/lensfun/Makefile b/graphics/lensfun/Makefile index e6a64d83d5d..51e113a8d81 100644 --- a/graphics/lensfun/Makefile +++ b/graphics/lensfun/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2009/08/23 14:06:09 zafer Exp $ +# $NetBSD: Makefile,v 1.4 2009/11/24 11:19:03 drochner Exp $ # -DISTNAME= lensfun-0.2.3 -PKGREVISION= 1 +DISTNAME= lensfun-0.2.4 CATEGORIES= graphics MASTER_SITES= http://download.berlios.de/lensfun/ EXTRACT_SUFX= .tar.bz2 diff --git a/graphics/lensfun/distinfo b/graphics/lensfun/distinfo index 0a2812e8430..ac647f1b551 100644 --- a/graphics/lensfun/distinfo +++ b/graphics/lensfun/distinfo @@ -1,7 +1,9 @@ -$NetBSD: distinfo,v 1.1.1.1 2009/07/09 19:44:50 drochner Exp $ +$NetBSD: distinfo,v 1.2 2009/11/24 11:19:03 drochner Exp $ -SHA1 (lensfun-0.2.3.tar.bz2) = 4cb8fb4ce9c439ec7a3447d7fd35dfd5b73253ce -RMD160 (lensfun-0.2.3.tar.bz2) = 310f89638df275472ee38d4ac61b3a623db94f5f -Size (lensfun-0.2.3.tar.bz2) = 151189 bytes +SHA1 (lensfun-0.2.4.tar.bz2) = e756332d406df78edbe9d15bec9c4f697f8a0d4b +RMD160 (lensfun-0.2.4.tar.bz2) = f33d36c602da323c9d089b16cf3c2e32863654bb +Size (lensfun-0.2.4.tar.bz2) = 207877 bytes SHA1 (patch-aa) = d31dd742f232aa8a75f50f14f782918ba11a8119 SHA1 (patch-ab) = ba0dc39c95ef40f62cd8be2c37e17753a87de8ed +SHA1 (patch-ac) = 7d732c80cce9531742f4baf38e7ca160ee518b88 +SHA1 (patch-ad) = e9dab3103aaeb19ebbd97fc519c1bb3dad1c260c diff --git a/graphics/lensfun/patches/patch-ac b/graphics/lensfun/patches/patch-ac new file mode 100644 index 00000000000..e6851c680b7 --- /dev/null +++ b/graphics/lensfun/patches/patch-ac @@ -0,0 +1,16 @@ +$NetBSD: patch-ac,v 1.1 2009/11/24 11:19:03 drochner Exp $ + +--- build/mak/compiler/doxygen.mak.orig 2009-10-14 23:26:16.000000000 +0200 ++++ build/mak/compiler/doxygen.mak +@@ -14,9 +14,9 @@ XFNAME.DOXYGEN = $(addprefix $(OUT)docs/ + # $2 - output directory + define BUILD.DOXYGEN + $(call MKDIR,$2) +- sed $1 \ ++ sed \ + -e 's,@CONF_VERSION@,$(CONF_VERSION),' \ +- -e 's,@OUT@,$2,' | doxygen - ++ -e 's,@OUT@,$2,' $1 | doxygen - + $(if $(DOXYGEN.$3),$(call DOXYGEN.$3,$3,$2)) + endef + diff --git a/graphics/lensfun/patches/patch-ad b/graphics/lensfun/patches/patch-ad new file mode 100644 index 00000000000..c9a11f089b0 --- /dev/null +++ b/graphics/lensfun/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2009/11/24 11:19:03 drochner Exp $ + +--- libs/lensfun/auxfun.cpp.orig 2009-10-14 23:26:18.000000000 +0200 ++++ libs/lensfun/auxfun.cpp +@@ -127,7 +127,7 @@ LF_EXPORT lfMLstr lf_mlstr_dup (const lf + { + str_len = strlen (str) + 1; + while (str [str_len]) +- str_len += 1 + strlen (str + str_len + 1); ++ str_len += 2 + strlen (str + str_len + 1); + } + + gchar *ret = (char *)g_malloc (str_len); |