summaryrefslogtreecommitdiff
path: root/cad
diff options
context:
space:
mode:
Diffstat (limited to 'cad')
-rw-r--r--cad/ng-spice/Makefile9
-rw-r--r--cad/ng-spice/PLIST3
-rw-r--r--cad/ng-spice/distinfo10
-rw-r--r--cad/ng-spice/patches/patch-aa11
-rw-r--r--cad/ng-spice/patches/patch-ak25
5 files changed, 9 insertions, 49 deletions
diff --git a/cad/ng-spice/Makefile b/cad/ng-spice/Makefile
index 0c751761ba3..0fceb2025ec 100644
--- a/cad/ng-spice/Makefile
+++ b/cad/ng-spice/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.38 2010/02/28 18:00:19 dmcmahill Exp $
+# $NetBSD: Makefile,v 1.39 2011/08/30 12:01:03 dmcmahill Exp $
#
-DISTNAME= ng-spice-rework-20
-PKGNAME= ng-spice-20
+DISTNAME= ngspice-23
+PKGNAME= ng-spice-23
CATEGORIES= cad
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ngspice/}
@@ -12,14 +12,13 @@ COMMENT= Next generation circuit simulation program
PKG_DESTDIR_SUPPORT= user-destdir
-WRKSRC= ${WRKDIR}/ngspice-20
USE_LIBTOOL= YES
USE_TOOLS+= gmake makeinfo
USE_GNU_READLINE= uses rl_* interface
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --disable-debug
-CONFIGURE_ARGS+= --with-readline
+CONFIGURE_ARGS+= --with-readline=yes
LIBS+= ${BUILDLINK_LDADD.getopt}
INFO_FILES= # PLIST
diff --git a/cad/ng-spice/PLIST b/cad/ng-spice/PLIST
index a1477444cd3..b292437e24b 100644
--- a/cad/ng-spice/PLIST
+++ b/cad/ng-spice/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2010/02/28 18:00:19 dmcmahill Exp $
+@comment $NetBSD: PLIST,v 1.12 2011/08/30 12:01:03 dmcmahill Exp $
@comment bin/nghelp
bin/ngmakeidx
bin/ngmultidec
@@ -6,7 +6,6 @@ bin/ngnutmeg
bin/ngproc2mod
bin/ngsconvert
bin/ngspice
-info/ngspice.info
man/man1/ngmultidec.1
man/man1/ngnutmeg.1
man/man1/ngsconvert.1
diff --git a/cad/ng-spice/distinfo b/cad/ng-spice/distinfo
index a6e3ce886dd..2eaa8c576c4 100644
--- a/cad/ng-spice/distinfo
+++ b/cad/ng-spice/distinfo
@@ -1,7 +1,5 @@
-$NetBSD: distinfo,v 1.14 2010/03/17 21:54:58 dmcmahill Exp $
+$NetBSD: distinfo,v 1.15 2011/08/30 12:01:03 dmcmahill Exp $
-SHA1 (ng-spice-rework-20.tar.gz) = 870d69b88d6cc0d83a8a0416a6782a4abd296de0
-RMD160 (ng-spice-rework-20.tar.gz) = 73eff9cd601253523816a7c8a93e88a795ce96bb
-Size (ng-spice-rework-20.tar.gz) = 7167239 bytes
-SHA1 (patch-aa) = 08f84b761ac1cf568af6e5a10475259c39f6ecc3
-SHA1 (patch-ak) = c5c08a75b6d41eaad75ac121566dd1b289579a39
+SHA1 (ngspice-23.tar.gz) = 65fa23d1168cb3af7651b990344f763c77bf6132
+RMD160 (ngspice-23.tar.gz) = 34a5bb0a06e67a9ebe21f7abe8067cd8e793ea9e
+Size (ngspice-23.tar.gz) = 6485536 bytes
diff --git a/cad/ng-spice/patches/patch-aa b/cad/ng-spice/patches/patch-aa
deleted file mode 100644
index 85d00bb77b5..00000000000
--- a/cad/ng-spice/patches/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
-$NetBSD: patch-aa,v 1.7 2010/03/17 21:54:58 dmcmahill Exp $
-
---- src/frontend/com_sysinfo.c.orig 2009-10-04 15:57:10.000000000 +0000
-+++ src/frontend/com_sysinfo.c 2010-03-17 21:53:46.000000000 +0000
-@@ -287,5 +287,5 @@
- // numProcs++;
- strPtr += strlen(matchStrProc);
-- if isblank(*strPtr) numProcs++;
-+ if (isblank(*strPtr)) numProcs++;
- }
- info->numLogicalProcessors = numProcs;
diff --git a/cad/ng-spice/patches/patch-ak b/cad/ng-spice/patches/patch-ak
deleted file mode 100644
index e8c07513530..00000000000
--- a/cad/ng-spice/patches/patch-ak
+++ /dev/null
@@ -1,25 +0,0 @@
-$NetBSD: patch-ak,v 1.2 2010/02/28 18:00:19 dmcmahill Exp $
-
---- src/frontend/aspice.c.orig 2008-05-31 08:38:56.000000000 +0000
-+++ src/frontend/aspice.c
-@@ -177,15 +177,11 @@ sigchild(void)
- * whether the exit was normal or not.
- */
-
--#if defined(__NetBSD__)
-- pid_t status;
--#elif defined(__FreeBSD__) || defined(__APPLE__) || defined(SOLARIS)
-- int status;
--#else
-- union wait status;
--#endif
--
--
-+/*
-+ * On posix systems, wait() is:
-+ * pid_t wait(int *status);
-+ */
-+int status;
-
- void
- ft_checkkids(void)