update to qrouter-1.4.74, from maintainer Alessandro De Laurenzis

This commit is contained in:
sthen 2020-02-03 22:21:57 +00:00
parent 698e588b66
commit 55b9571edb
10 changed files with 19 additions and 70 deletions

View File

@ -1,12 +1,12 @@
# $OpenBSD: Makefile,v 1.4 2019/07/12 20:43:45 sthen Exp $ # $OpenBSD: Makefile,v 1.5 2020/02/03 22:21:57 sthen Exp $
COMMENT = multi-level, over-the-cell maze router for VLSI design COMMENT = multi-level, over-the-cell maze router for VLSI design
DISTNAME = qrouter-1.4.50 DISTNAME = qrouter-1.4.74
EXTRACT_SUFX = .tgz EXTRACT_SUFX = .tgz
CATEGORIES = cad CATEGORIES = cad
HOMEPAGE = http://opencircuitdesign.com/qrouter/ HOMEPAGE = http://opencircuitdesign.com/qrouter/
MAINTAINER = Alessandro De Laurenzis <just22@atlantide.t28.net> MAINTAINER = Alessandro De Laurenzis <just22@atlantide.mooo.com>
# GPLv2 only # GPLv2 only
PERMIT_PACKAGE = Yes PERMIT_PACKAGE = Yes
@ -22,8 +22,9 @@ LIB_DEPENDS = ${MODTK_LIB_DEPENDS}
USE_GMAKE = Yes USE_GMAKE = Yes
CONFIGURE_STYLE = autoconf no-autoheader CONFIGURE_STYLE = autoconf no-autoheader
AUTOCONF_VERSION = 2.60 AUTOCONF_VERSION = 2.69
CONFIGURE_ARGS += --with-tcl=${MODTCL_LIBDIR} \ CONFIGURE_ARGS += --with-distdir=${PREFIX} \
--with-tcl=${MODTCL_LIBDIR} \
--with-tk=${MODTK_LIBDIR} --with-tk=${MODTK_LIBDIR}
# Not C99 # Not C99

View File

@ -1,2 +1,2 @@
SHA256 (qrouter-1.4.50.tgz) = IeaHgitIXWB200tTXZWDxBoJnHdND+Z8Ty7tnFnCvkU= SHA256 (qrouter-1.4.74.tgz) = zRGHPREv9HcAMKZGtyfwHZWFUj+0csDabcq+OV9gnPQ=
SIZE (qrouter-1.4.50.tgz) = 332280 SIZE (qrouter-1.4.74.tgz) = 326751

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2018/08/28 15:09:08 bcallah Exp $ $OpenBSD: patch-Makefile_in,v 1.2 2020/02/03 22:21:57 sthen Exp $
Index: Makefile.in Index: Makefile.in
--- Makefile.in.orig --- Makefile.in.orig
+++ Makefile.in +++ Makefile.in
@@ -94,7 +94,8 @@ qrouternullg$(EXEEXT): $(OBJECTS4) @@ -97,7 +97,8 @@ qrouternullg$(EXEEXT): $(OBJECTS4)
$(RM) qrouternullg$(EXEEXT) $(RM) qrouternullg$(EXEEXT)
$(CC) ${CFLAGS} ${CPPFLAGS} ${DEFS} ${EXTRA_DEFS} \ $(CC) ${CFLAGS} ${CPPFLAGS} ${DEFS} ${EXTRA_DEFS} \
${SOURCES4} ${INC_SPECS} -o $@ ${LIB_SPECS_NOSTUB} \ ${SOURCES4} ${INC_SPECS} -o $@ ${LIB_SPECS_NOSTUB} \

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-configure_in,v 1.1.1.1 2018/08/28 15:09:08 bcallah Exp $ $OpenBSD: patch-configure_in,v 1.2 2020/02/03 22:21:57 sthen Exp $
Index: configure.in Index: configure.in
--- configure.in.orig --- configure.in.orig
+++ configure.in +++ configure.in
@@ -847,7 +847,13 @@ if test $usingTcl ; then @@ -861,7 +861,13 @@ if test $usingTcl ; then
CFLAGS="${CFLAGS} -l/usr/X11R6/include" CFLAGS="${CFLAGS} -L/usr/X11R6/include"
;; ;;
- *-netbsd*|*-openbsd*) - *-netbsd*|*-openbsd*)
@ -18,7 +18,7 @@ Index: configure.in
# Not available on all versions: check for include file. # Not available on all versions: check for include file.
AC_CHECK_HEADER(dlfcn.h, test_ok=yes, test_ok=no) AC_CHECK_HEADER(dlfcn.h, test_ok=yes, test_ok=no)
if test "$test_ok" = yes; then if test "$test_ok" = yes; then
@@ -871,7 +877,13 @@ if test $usingTcl ; then @@ -885,7 +891,13 @@ if test $usingTcl ; then
esac esac
fi fi
if test "$with_gnu_ld" = "yes" ; then if test "$with_gnu_ld" = "yes" ; then

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-maze_c,v 1.1.1.1 2018/08/28 15:09:08 bcallah Exp $
Index: maze.c
--- maze.c.orig
+++ maze.c
@@ -11,6 +11,7 @@
#include <stdio.h>
#include <math.h>
+#include <stdarg.h>
#include <stdlib.h>
#define MAZE

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-node_c,v 1.1.1.1 2018/08/28 15:09:08 bcallah Exp $
Index: node.c
--- node.c.orig
+++ node.c
@@ -10,6 +10,7 @@
#include <stdio.h>
#include <math.h>
+#include <stdarg.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-point_c,v 1.1.1.1 2018/08/28 15:09:08 bcallah Exp $
Index: point.c
--- point.c.orig
+++ point.c
@@ -8,6 +8,7 @@
#include <stdio.h>
#include <unistd.h>
+#include <stdarg.h>
#include <stdlib.h>
#include "qrouter.h"

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-qconfig_c,v 1.1.1.1 2018/08/28 15:09:08 bcallah Exp $
Index: qconfig.c
--- qconfig.c.orig
+++ qconfig.c
@@ -16,6 +16,7 @@
#include <ctype.h>
#include <stdio.h>
#include <math.h>
+#include <stdarg.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-qrouter_h,v 1.1.1.1 2018/08/28 15:09:08 bcallah Exp $ $OpenBSD: patch-qrouter_h,v 1.2 2020/02/03 22:21:57 sthen Exp $
Index: qrouter.h Index: qrouter.h
--- qrouter.h.orig --- qrouter.h.orig
@ -7,8 +7,8 @@ Index: qrouter.h
#endif /* _SYS_TYPES_H */ #endif /* _SYS_TYPES_H */
/* Compare functions aren't defined in the Mac's standard library */ /* Compare functions aren't defined in the Mac's standard library */
-#if defined(__APPLE__) -#if defined(__APPLE__) || defined(__FreeBSD__)
+#if defined(__APPLE__) || defined(__OpenBSD__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__)
typedef int (*__compar_fn_t)(const void*, const void*); typedef int (*__compar_fn_t)(const void*, const void*);
#endif #endif

View File

@ -1,8 +1,8 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2018/08/28 15:09:08 bcallah Exp $ @comment $OpenBSD: PLIST,v 1.2 2020/02/03 22:21:57 sthen Exp $
bin/qrouter bin/qrouter
share/qrouter/ share/qrouter/
share/qrouter/console.tcl share/qrouter/console.tcl
share/qrouter/qrouter.so @so share/qrouter/qrouter.so
share/qrouter/qrouter.tcl share/qrouter/qrouter.tcl
@bin share/qrouter/qrouterexec @bin share/qrouter/qrouterexec
@bin share/qrouter/qrouternullg @bin share/qrouter/qrouternullg