aboutsummaryrefslogtreecommitdiff
path: root/math/gap
diff options
context:
space:
mode:
authorJohan van Selst <johans@FreeBSD.org>2007-03-27 20:59:18 +0000
committerJohan van Selst <johans@FreeBSD.org>2007-03-27 20:59:18 +0000
commitd874fdb633e381471cfffb667f78f1282968e673 (patch)
tree3711bc3a56e1696482dc4c9a8143b082e633c479 /math/gap
parent521b82188c177be7b74217daf769897046bb9cab (diff)
downloadports-d874fdb633e381471cfffb667f78f1282968e673.tar.gz
ports-d874fdb633e381471cfffb667f78f1282968e673.zip
Notes
Diffstat (limited to 'math/gap')
-rw-r--r--math/gap/Makefile2
-rw-r--r--math/gap/distinfo6
-rw-r--r--math/gap/files/patch-gap4r4_src_sysfiles.c20
3 files changed, 24 insertions, 4 deletions
diff --git a/math/gap/Makefile b/math/gap/Makefile
index 4a1dd5cea93c..1f94ecf51120 100644
--- a/math/gap/Makefile
+++ b/math/gap/Makefile
@@ -34,7 +34,7 @@ OPTIONS= COMPRESSED_TOMLIB "Compress tomlib files" On \
.include <bsd.port.pre.mk>
GAP_VERSION= gap4r4
-GAP_PKGTIME= 2007_02_10-17_06_UTC
+GAP_PKGTIME= 2007_03_23-17_35_UTC
GAP_PKGDATE= ${GAP_PKGTIME:C/-.*//:S/_//g}
GAP_WRKSRC= ${WRKSRC}/${GAP_VERSION}
GAP_LIBDIR= ${PREFIX}/lib/${GAP_VERSION}
diff --git a/math/gap/distinfo b/math/gap/distinfo
index 436a1770a66a..634024a1499c 100644
--- a/math/gap/distinfo
+++ b/math/gap/distinfo
@@ -1,6 +1,6 @@
-MD5 (gap/packages-2007_02_10-17_06_UTC.tar.bz2) = 874005e443ef75ac0bfa8f82c17932f4
-SHA256 (gap/packages-2007_02_10-17_06_UTC.tar.bz2) = 55e82207f3ec54e2d93770f6dbe934026f3c473956c9ca446618cd760b4f5cfa
-SIZE (gap/packages-2007_02_10-17_06_UTC.tar.bz2) = 55289349
+MD5 (gap/packages-2007_03_23-17_35_UTC.tar.bz2) = 174f8ecac202caea3894d95967a45ca3
+SHA256 (gap/packages-2007_03_23-17_35_UTC.tar.bz2) = 305a75acb9cf9d5759127206a87a42e6af001a72510d9cc6b44132c94cfbf77e
+SIZE (gap/packages-2007_03_23-17_35_UTC.tar.bz2) = 55476333
MD5 (gap/gap4r4p9.tar.bz2) = 3b7b5f77114acf89c561644285c141e5
SHA256 (gap/gap4r4p9.tar.bz2) = ebf271db244b75dd344e6714cd8d4b985a0594c18b3fad3c8c5d4f7a443a96a7
SIZE (gap/gap4r4p9.tar.bz2) = 43676284
diff --git a/math/gap/files/patch-gap4r4_src_sysfiles.c b/math/gap/files/patch-gap4r4_src_sysfiles.c
new file mode 100644
index 000000000000..2accfc204b37
--- /dev/null
+++ b/math/gap/files/patch-gap4r4_src_sysfiles.c
@@ -0,0 +1,20 @@
+--- gap4r4/src/sysfiles.c Mon Oct 23 01:20:54 2006
++++ gap4r4/src/sysfiles.c Mon Mar 26 18:28:38 2007
+@@ -1522,7 +1522,7 @@
+ ** to cooked mode before stopping GAP and back to raw mode when continueing.
+ */
+
+-#if SYS_BSD || SYS_MACH || HAVE_SGTTY_H
++#if (SYS_BSD || SYS_MACH || HAVE_SGTTY_H) && !HAVE_TERMIOS_H
+
+ #ifndef SYS_SGTTY_H /* terminal control functions */
+ # include <sgtty.h>
+@@ -2072,7 +2072,7 @@
+ **
+ *f syStopraw( <fid> ) . . . . . . . . . . . . . . . . . . . . . . BSD/MACH
+ */
+-#if SYS_BSD || SYS_MACH || HAVE_SGTTY_H
++#if (SYS_BSD || SYS_MACH || HAVE_SGTTY_H) && !HAVE_TERMIOS_H
+
+ void syStopraw (
+ Int fid )