Skip to content

Commit

Permalink
update to 0.2.4
Browse files Browse the repository at this point in the history
changes:
-Database updates
-Fixed a crasher bug with gcc 4.4
  • Loading branch information
drochner committed Nov 24, 2009
1 parent 17ebce2 commit 48e7955
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 7 deletions.
5 changes: 2 additions & 3 deletions 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
Expand Down
10 changes: 6 additions & 4 deletions 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
16 changes: 16 additions & 0 deletions 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

13 changes: 13 additions & 0 deletions 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);

0 comments on commit 48e7955

Please sign in to comment.