Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.6 2012/09/11 23:04:25 asau Exp $
# $NetBSD: Makefile,v 1.7 2013/07/15 02:02:26 ryoon Exp $
#
ORDCALCVER= 0.2
@@ -35,6 +35,6 @@ do-install:
.include "../../devel/gmp/buildlink3.mk"
.include "../../devel/ncurses/buildlink3.mk"
.include "../../devel/readline/buildlink3.mk"
.include "../../mk/readline.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.6 2013/05/23 18:41:21 joerg Exp $
$NetBSD: distinfo,v 1.8 2014/01/16 18:09:46 asau Exp $
SHA1 (ordCalc_0.2.tar.bz2) = 6b3e1e5b714cc50d1e2c48b8f06b8dd41fbde134
RMD160 (ordCalc_0.2.tar.bz2) = caf9c89a2a54fe3e5414cb7f1e1a4e1d4aad0397
@@ -10,6 +10,7 @@ SHA1 (patch-ad) = e8a1fa4fcfdf8d43d70f614ef63127885dc885b4
SHA1 (patch-src_intfc.cpp) = e2d8f2d2e374c9eda118cd281126c416a7976774
SHA1 (patch-src_intfc.h) = dbb95eb44fc3abe01fdcabaf824790915117d09c
SHA1 (patch-src_mn.cpp) = da8ff526d95f171566d0cd8061a1439975342554
SHA1 (patch-src_ordBase.h) = 22a0bf9c135bbcb88f10c25871c619718ceb40ad
SHA1 (patch-src_ordBase.h) = ad3c896fbbea6b40ef6f734c1f212dff49856d9a
SHA1 (patch-src_ordinal.h) = e1dde6caf141c82b7f740ce18280be6507bacd9e
SHA1 (patch-src_parse.cpp) = 1e7602a33edd62f4d5a119c2e35062499c07d70e
SHA1 (patch-src_parse.y) = 1339048b37f2bc5e5dfc45256578a1991c53e247

View File

@@ -1,6 +1,6 @@
$NetBSD: patch-src_ordBase.h,v 1.1 2012/12/20 21:47:31 joerg Exp $
$NetBSD: patch-src_ordBase.h,v 1.2 2013/07/19 12:53:09 joerg Exp $
--- src/ordBase.h.orig 2012-12-20 18:34:49.000000000 +0000
--- src/ordBase.h.orig 2010-01-17 04:50:43.000000000 +0000
+++ src/ordBase.h
@@ -5,9 +5,9 @@
#include <string>
@@ -21,8 +21,8 @@ $NetBSD: patch-src_ordBase.h,v 1.1 2012/12/20 21:47:31 joerg Exp $
- const Ordinal& iter, const Ordinal* const * params,
- const Ordinal* drillDown);
+ friend const Ordinal& admisLevelFunctional(const Ordinal& levCK,
+ const Ordinal& iter, const Ordinal* const * params=NULL,
+ const Ordinal& drillDown=Ordinal::zero);
+ const Ordinal& iter, const Ordinal* const * params,
+ const Ordinal& drillDown);
static int idCount ;
bool inDeleteList ;

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-src_parse.y,v 1.1 2014/01/16 18:09:46 asau Exp $
malloc.h raises error on FreeBSD intentionally.
--- src/parse.y.orig 2010-01-17 04:47:28.000000000 +0000
+++ src/parse.y
@@ -1,5 +1,5 @@
%{
-#include <malloc.h>
+#include <stdlib.h>
#include <iostream>
#include <stdlib.h>
#include "ordinal.h"