diff options
author | asau <asau@pkgsrc.org> | 2009-09-06 15:24:38 +0000 |
---|---|---|
committer | asau <asau@pkgsrc.org> | 2009-09-06 15:24:38 +0000 |
commit | d925d8e850f745e89dc9717783daf2694853af5e (patch) | |
tree | 83ac89b192f87de25311bf8b70ac60a2623cd2f8 /math/qalculate-currency | |
parent | 93cc9cf5b09bef2557915c0a03bf738d59f10d93 (diff) | |
download | pkgsrc-d925d8e850f745e89dc9717783daf2694853af5e.tar.gz |
Fix build after CLN update. Bump revision (autoconf dependency).
Diffstat (limited to 'math/qalculate-currency')
-rw-r--r-- | math/qalculate-currency/Makefile | 9 | ||||
-rw-r--r-- | math/qalculate-currency/distinfo | 4 | ||||
-rw-r--r-- | math/qalculate-currency/patches/patch-ab | 39 |
3 files changed, 42 insertions, 10 deletions
diff --git a/math/qalculate-currency/Makefile b/math/qalculate-currency/Makefile index b428f3eb8c2..223c73a7ac1 100644 --- a/math/qalculate-currency/Makefile +++ b/math/qalculate-currency/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.15 2009/08/26 19:57:59 sno Exp $ +# $NetBSD: Makefile,v 1.16 2009/09/06 15:29:53 asau Exp $ DISTNAME= qalculate-currency-0.9.4 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qalculate/} @@ -13,9 +13,12 @@ PKG_DESTDIR_SUPPORT= user-destdir USE_LANGUAGES= c c++ USE_LIBTOOL= yes -USE_TOOLS+= gmake intltool msgfmt pkg-config +USE_TOOLS+= autoconf gmake intltool msgfmt pkg-config GNU_CONFIGURE= yes +pre-configure: + ${RUN} cd ${WRKSRC}; autoconf + .include "../../math/qalculate/buildlink3.mk" .include "../../x11/gtk2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/math/qalculate-currency/distinfo b/math/qalculate-currency/distinfo index 01dd6c2cf99..57a775a8b36 100644 --- a/math/qalculate-currency/distinfo +++ b/math/qalculate-currency/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.5 2006/06/22 18:52:00 jlam Exp $ +$NetBSD: distinfo,v 1.6 2009/09/06 15:29:53 asau Exp $ SHA1 (qalculate-currency-0.9.4.tar.gz) = 8352fd1bc8434299e4c3a1111f1b6b275246ee0f RMD160 (qalculate-currency-0.9.4.tar.gz) = fa7a52c922ed0c01494e43b6a9c971124a9856cb Size (qalculate-currency-0.9.4.tar.gz) = 370506 bytes SHA1 (patch-aa) = 40d2dcb92b1affa6df71679cfce4027291fcd894 -SHA1 (patch-ab) = 06824dc714d112ce6ed422f550939ae802e2452b +SHA1 (patch-ab) = 3ec35d4b6302d76200cb185f0c67fbdfe4e71035 diff --git a/math/qalculate-currency/patches/patch-ab b/math/qalculate-currency/patches/patch-ab index c3c1731ed66..be42c8d493c 100644 --- a/math/qalculate-currency/patches/patch-ab +++ b/math/qalculate-currency/patches/patch-ab @@ -1,8 +1,16 @@ -$NetBSD: patch-ab,v 1.1 2006/06/22 18:52:00 jlam Exp $ +$NetBSD: patch-ab,v 1.2 2009/09/06 15:29:53 asau Exp $ ---- configure.in.orig 2006-04-18 03:13:20.000000000 -0400 -+++ configure.in -@@ -55,6 +55,33 @@ fi +--- configure.in.orig 2006-04-18 11:13:20.000000000 +0400 ++++ configure.in 2009-09-06 19:26:52.000000000 +0400 +@@ -24,6 +24,7 @@ + AC_HEADER_STDC + AC_PROG_INTLTOOL + AM_PROG_LIBTOOL ++PKG_PROG_PKG_CONFIG + + dnl ------------------------------------ + dnl | check for compiler characteristics |------------------------------------- +@@ -55,6 +56,33 @@ changequote([,])dnl @@ -36,7 +44,28 @@ $NetBSD: patch-ab,v 1.1 2006/06/22 18:52:00 jlam Exp $ dnl -------------------------------- dnl | check for neccessary libraries |----------------------------------------- dnl -------------------------------- -@@ -89,33 +116,6 @@ PKG_CHECK_MODULES(QALCULATE, [ +@@ -63,11 +91,16 @@ + + AC_LANG([C++]) + +-AC_PATH_CLN(1.1.0, [ +- LIBS="$LIBS $CLN_LIBS" +- CPPFLAGS="$CPPFLAGS $CLN_CPPFLAGS" ++if pkg-config --atleast-version=1.1.0 cln; then ++ CLN_CPPFLAGS="`pkg-config --cflags cln`" ++ CLN_LIBS="`pkg-config --libs cln`" ++ LIBS="$LIBS `pkg-config --libs cln`" ++ CPPFLAGS="$CPPFLAGS `pkg-config --cflags cln`" + AC_DEFINE(HAVE_LIBCLN,1,[If CLN can be used]) +-], AC_MSG_ERROR([No suitable installed version of CLN could be found.])) ++else AC_MSG_ERROR([No suitable installed version of CLN could be found.]) ++fi ++AC_SUBST(CLN_CPPFLAGS) ++AC_SUBST(CLN_LIBS) + + PKG_CHECK_MODULES(GLIB, [ + glib-2.0 >= 2.4 +@@ -89,33 +122,6 @@ AC_SUBST(QALCULATE_CFLAGS) AC_SUBST(QALCULATE_LIBS) |