diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/blitz++/Makefile | 4 | ||||
-rw-r--r-- | math/blitz++/distinfo | 3 | ||||
-rw-r--r-- | math/blitz++/patches/patch-ad | 32 | ||||
-rw-r--r-- | math/capc-calc/Makefile | 6 | ||||
-rw-r--r-- | math/gcalctool/Makefile | 4 | ||||
-rw-r--r-- | math/geg/Makefile | 4 | ||||
-rw-r--r-- | math/genius/Makefile | 4 | ||||
-rw-r--r-- | math/glpk/Makefile | 4 | ||||
-rw-r--r-- | math/nickle/Makefile | 4 | ||||
-rw-r--r-- | math/qalculate-bases/Makefile | 4 | ||||
-rw-r--r-- | math/qalculate-currency/Makefile | 4 | ||||
-rw-r--r-- | math/qalculate-gtk/Makefile | 4 | ||||
-rw-r--r-- | math/qalculate-kde/Makefile | 4 | ||||
-rw-r--r-- | math/qalculate-units/Makefile | 4 | ||||
-rw-r--r-- | math/qalculate/Makefile | 4 | ||||
-rw-r--r-- | math/qhull/Makefile | 4 | ||||
-rw-r--r-- | math/units/Makefile | 4 |
17 files changed, 81 insertions, 16 deletions
diff --git a/math/blitz++/Makefile b/math/blitz++/Makefile index 0534f783458..30bc9e65518 100644 --- a/math/blitz++/Makefile +++ b/math/blitz++/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2006/07/22 04:46:16 rillig Exp $ +# $NetBSD: Makefile,v 1.14 2008/06/20 01:09:24 joerg Exp $ DISTNAME= blitz-0.8 PKGNAME= blitz++-0.8 @@ -10,6 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.oonumerics.org/blitz/ COMMENT= C++ template class library providing array objects +PKG_DESTDIR_SUPPORT= user-destdir + USE_LANGUAGES= c c++ fortran USE_LIBTOOL= yes USE_TOOLS+= gmake diff --git a/math/blitz++/distinfo b/math/blitz++/distinfo index f9e73a49a2b..138e6430d3c 100644 --- a/math/blitz++/distinfo +++ b/math/blitz++/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2006/02/02 14:10:45 joerg Exp $ +$NetBSD: distinfo,v 1.6 2008/06/20 01:09:24 joerg Exp $ SHA1 (blitz-0.8.tar.gz) = e1396cdfdbf4ec93bfc69ca581b8e9a64d745ca1 RMD160 (blitz-0.8.tar.gz) = 95b8eb6ee8a99f0632a0c510eafd0051053c1e0e @@ -6,3 +6,4 @@ Size (blitz-0.8.tar.gz) = 2729167 bytes SHA1 (patch-aa) = deb437da8741a87c18f56883a880a03a6e94c84d SHA1 (patch-ab) = 30b268204142b5f8a63ca7d3273d323d82e82077 SHA1 (patch-ac) = bd1622d79769cf0b99ebbcbe614d86fda728ff1b +SHA1 (patch-ad) = 8161f42442c069affded125d607583749e9636e9 diff --git a/math/blitz++/patches/patch-ad b/math/blitz++/patches/patch-ad new file mode 100644 index 00000000000..fd5b0ca611a --- /dev/null +++ b/math/blitz++/patches/patch-ad @@ -0,0 +1,32 @@ +$NetBSD: patch-ad,v 1.3 2008/06/20 01:10:02 joerg Exp $ + +--- doc/doxygen/Makefile.in.orig 2008-06-19 15:41:31.000000000 +0000 ++++ doc/doxygen/Makefile.in +@@ -474,22 +474,22 @@ clean-local: + + # Install hooks + make-install-dirs: +- @if test '!' -d $(docdir) ; \ +- then mkdir -p $(docdir) ; \ ++ @if test '!' -d ${DESTDIR}$(docdir) ; \ ++ then mkdir -p ${DESTDIR}$(docdir) ; \ + fi + + install-data-hook: make-install-dirs + @if test -d html; then \ + echo Installing documentations into $(docdir) ; \ +- $(INSTALL_DATA) html/* $(docdir) ; \ ++ $(INSTALL_DATA) html/* ${DESTDIR}$(docdir) ; \ + fi + @if test -f $(PACKAGE).pdf; then \ + echo Installing PDF manual into $(docdir) ; \ +- $(INSTALL_DATA) $(PACKAGE).pdf $(docdir) ; \ ++ $(INSTALL_DATA) $(PACKAGE).pdf ${DESTDIR}$(docdir) ; \ + fi + @if test -f $(PACKAGE).ps; then \ + echo Installing PS manual into $(docdir) ; \ +- $(INSTALL_DATA) $(PACKAGE).ps $(docdir) ; \ ++ $(INSTALL_DATA) $(PACKAGE).ps ${DESTDIR}$(docdir) ; \ + fi + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/math/capc-calc/Makefile b/math/capc-calc/Makefile index 44c1e6303cc..cf2312c7f36 100644 --- a/math/capc-calc/Makefile +++ b/math/capc-calc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2008/05/29 17:56:35 drochner Exp $ +# $NetBSD: Makefile,v 1.37 2008/06/20 01:09:24 joerg Exp $ # DISTNAME= calc-2.12.3.3 @@ -12,12 +12,16 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.isthe.com/chongo/tech/comp/calc/ COMMENT= C arbitrary precision calculator +PKG_DESTDIR_SUPPORT= user-destdir + MAKE_JOBS_SAFE= no USE_TOOLS+= gmake BUILD_TARGET= calc-static-only MAKE_ENV+= BLD_TYPE=calc-static-only target=pkgsrc +INSTALL_MAKE_FLAGS+= T=${DESTDIR} + TEST_TARGET= check .include "../../devel/ncurses/buildlink3.mk" diff --git a/math/gcalctool/Makefile b/math/gcalctool/Makefile index 82498ba6faa..7662cd2d938 100644 --- a/math/gcalctool/Makefile +++ b/math/gcalctool/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.71 2008/05/29 16:46:13 drochner Exp $ +# $NetBSD: Makefile,v 1.72 2008/06/20 01:09:24 joerg Exp $ # DISTNAME= gcalctool-5.22.2 @@ -10,6 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://calctool.sourceforge.net/ COMMENT= Desktop calculator for GNOME +PKG_DESTDIR_SUPPORT= user-destdir + GNU_CONFIGURE= YES CONFIGURE_ENV+= HAVE_YACC=yes diff --git a/math/geg/Makefile b/math/geg/Makefile index e1d23d75cc7..5f9605073ac 100644 --- a/math/geg/Makefile +++ b/math/geg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2006/02/05 23:10:01 joerg Exp $ +# $NetBSD: Makefile,v 1.12 2008/06/20 01:09:24 joerg Exp $ # DISTNAME= geg-1.0.2 @@ -10,6 +10,8 @@ MAINTAINER= chris@infolaunch.com HOMEPAGE= http://www.infolaunch.com/~daveb/ COMMENT= Program for drawing 2D math functions within a nice GUI +PKG_DESTDIR_SUPPORT= user-destdir + GNU_CONFIGURE= yes .include "../../x11/gtk/buildlink3.mk" diff --git a/math/genius/Makefile b/math/genius/Makefile index 03d94add2a5..94fe955ca82 100644 --- a/math/genius/Makefile +++ b/math/genius/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2008/03/06 14:53:52 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2008/06/20 01:09:24 joerg Exp $ # DISTNAME= genius-1.0.2 @@ -10,6 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.jirka.org/genius.html COMMENT= Calculator and math tool +PKG_DESTDIR_SUPPORT= user-destdir + USE_PKGLOCALEDIR= yes USE_LIBTOOL= yes GNU_CONFIGURE= yes diff --git a/math/glpk/Makefile b/math/glpk/Makefile index b705f11dc25..07710ed83bf 100644 --- a/math/glpk/Makefile +++ b/math/glpk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2008/04/21 19:26:35 adam Exp $ +# $NetBSD: Makefile,v 1.20 2008/06/20 01:09:24 joerg Exp $ DISTNAME= glpk-4.28 CATEGORIES= math @@ -8,6 +8,8 @@ MAINTAINER= adam@NetBSD.org HOMEPAGE= http://www.gnu.org/software/glpk/glpk.html COMMENT= Library for solving linear programming problems +PKG_DESTDIR_SUPPORT= user-destdir + USE_LIBTOOL= yes USE_TOOLS+= gmake GNU_CONFIGURE= yes diff --git a/math/nickle/Makefile b/math/nickle/Makefile index 9693ec6c13f..2a2aa037081 100644 --- a/math/nickle/Makefile +++ b/math/nickle/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2008/05/05 19:07:08 drochner Exp $ +# $NetBSD: Makefile,v 1.5 2008/06/20 01:09:24 joerg Exp $ # DISTNAME= nickle-2.67 @@ -9,6 +9,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://nickle.org/ COMMENT= Desk calculator language +PKG_DESTDIR_SUPPORT= user-destdir + GNU_CONFIGURE= yes .include "../../devel/readline/buildlink3.mk" diff --git a/math/qalculate-bases/Makefile b/math/qalculate-bases/Makefile index 688e29c3cb9..2897594db14 100644 --- a/math/qalculate-bases/Makefile +++ b/math/qalculate-bases/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2006/07/07 15:49:32 jlam Exp $ +# $NetBSD: Makefile,v 1.14 2008/06/20 01:09:25 joerg Exp $ DISTNAME= qalculate-bases-0.9.4 CATEGORIES= math @@ -8,6 +8,8 @@ MAINTAINER= adam@NetBSD.org HOMEPAGE= http://qalculate.sourceforge.net/ COMMENT= Utility for conversion between number bases using Qalculate +PKG_DESTDIR_SUPPORT= user-destdir + USE_LANGUAGES= c c++ USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes diff --git a/math/qalculate-currency/Makefile b/math/qalculate-currency/Makefile index 5667664574c..c6f9777e9c0 100644 --- a/math/qalculate-currency/Makefile +++ b/math/qalculate-currency/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2006/07/07 15:49:32 jlam Exp $ +# $NetBSD: Makefile,v 1.14 2008/06/20 01:09:25 joerg Exp $ DISTNAME= qalculate-currency-0.9.4 CATEGORIES= math @@ -8,6 +8,8 @@ MAINTAINER= adam@NetBSD.org HOMEPAGE= http://qalculate.sourceforge.net/ COMMENT= Utility for conversion between currencies using Qalculate +PKG_DESTDIR_SUPPORT= user-destdir + USE_LANGUAGES= c c++ USE_LIBTOOL= yes USE_TOOLS+= gmake intltool msgfmt pkg-config diff --git a/math/qalculate-gtk/Makefile b/math/qalculate-gtk/Makefile index 93a97110647..29323b63315 100644 --- a/math/qalculate-gtk/Makefile +++ b/math/qalculate-gtk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2008/03/06 14:53:52 wiz Exp $ +# $NetBSD: Makefile,v 1.24 2008/06/20 01:09:25 joerg Exp $ DISTNAME= qalculate-gtk-0.9.6 PKGREVISION= 1 @@ -9,6 +9,8 @@ MAINTAINER= adam@NetBSD.org HOMEPAGE= http://qalculate.sourceforge.net/ COMMENT= Qalculate is a modern multi-purpose desktop calculator +PKG_DESTDIR_SUPPORT= user-destdir + DEPENDS+= gnuplot>=3.7:../../graphics/gnuplot DEPENDS+= wget>=1.8:../../net/wget diff --git a/math/qalculate-kde/Makefile b/math/qalculate-kde/Makefile index 67d6c89dab8..b46e5324140 100644 --- a/math/qalculate-kde/Makefile +++ b/math/qalculate-kde/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2008/01/18 05:08:32 tnn Exp $ +# $NetBSD: Makefile,v 1.17 2008/06/20 01:09:25 joerg Exp $ DISTNAME= qalculate-kde-0.9.5 PKGREVISION= 3 @@ -9,6 +9,8 @@ MAINTAINER= adam@NetBSD.org HOMEPAGE= http://qalculate.sourceforge.net/ COMMENT= Qalculate is a modern multi-purpose desktop calculator +PKG_DESTDIR_SUPPORT= user-destdir + DEPENDS+= gnuplot>=3.7:../../graphics/gnuplot DEPENDS+= wget>=1.8:../../net/wget diff --git a/math/qalculate-units/Makefile b/math/qalculate-units/Makefile index 21eda51c0b3..ca2d67e328d 100644 --- a/math/qalculate-units/Makefile +++ b/math/qalculate-units/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2006/07/07 15:49:32 jlam Exp $ +# $NetBSD: Makefile,v 1.14 2008/06/20 01:09:25 joerg Exp $ DISTNAME= qalculate-units-0.9.4 CATEGORIES= math @@ -8,6 +8,8 @@ MAINTAINER= adam@NetBSD.org HOMEPAGE= http://qalculate.sourceforge.net/ COMMENT= Utility for conversion between units using Qalculate +PKG_DESTDIR_SUPPORT= user-destdir + USE_LANGUAGES= c c++ USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes diff --git a/math/qalculate/Makefile b/math/qalculate/Makefile index f8635f3fa51..c49f3c7b6bd 100644 --- a/math/qalculate/Makefile +++ b/math/qalculate/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2007/11/05 20:44:03 drochner Exp $ +# $NetBSD: Makefile,v 1.29 2008/06/20 01:09:25 joerg Exp $ DISTNAME= libqalculate-0.9.6 PKGNAME= qalculate-0.9.6 @@ -9,6 +9,8 @@ MAINTAINER= adam@NetBSD.org HOMEPAGE= http://qalculate.sourceforge.net/ COMMENT= Qalculate is a modern multi-purpose desktop calculator +PKG_DESTDIR_SUPPORT= user-destdir + USE_GNU_READLINE= yes USE_LANGUAGES= c c++ USE_LIBTOOL= yes diff --git a/math/qhull/Makefile b/math/qhull/Makefile index 2352edeeb75..e29c05a59ae 100644 --- a/math/qhull/Makefile +++ b/math/qhull/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2007/09/19 18:00:54 drochner Exp $ +# $NetBSD: Makefile,v 1.2 2008/06/20 01:09:25 joerg Exp $ # DISTNAME= qhull-2003.1 @@ -9,6 +9,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.qhull.org/ COMMENT= Computing the convex hull +PKG_DESTDIR_SUPPORT= user-destdir + GNU_CONFIGURE= yes USE_LANGUAGES= c c++ USE_TOOLS+= gmake diff --git a/math/units/Makefile b/math/units/Makefile index afb2693b2a6..ddc5e3cc1e7 100644 --- a/math/units/Makefile +++ b/math/units/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2006/11/19 04:56:17 obache Exp $ +# $NetBSD: Makefile,v 1.2 2008/06/20 01:09:25 joerg Exp $ DISTNAME= units-1.86 CATEGORIES= math @@ -8,6 +8,8 @@ MAINTAINER= cameron@patrick.wattle.id.au HOMEPAGE= http://www.gnu.org/software/units/ COMMENT= GNU Units - a calculator capable of performing unit conversions +PKG_DESTDIR_SUPPORT= user-destdir + INFO_FILES= YES GNU_CONFIGURE= YES |