diff options
author | johans <johans@FreeBSD.org> | 2007-03-28 04:59:18 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2007-03-28 04:59:18 +0800 |
commit | b726c74509792ec907296bf9d3dc9dd9da88c85f (patch) | |
tree | 8e09f1a8b569154e4837459315606771ba6f9bcd /math/gap | |
parent | 21dd783899cdcbe79406adba30c7808619d049a4 (diff) | |
download | freebsd-ports-gnome-b726c74509792ec907296bf9d3dc9dd9da88c85f.tar.gz freebsd-ports-gnome-b726c74509792ec907296bf9d3dc9dd9da88c85f.tar.zst freebsd-ports-gnome-b726c74509792ec907296bf9d3dc9dd9da88c85f.zip |
- Add patch to use termios.h rather than old sgtty.h
- Update to latest gap packages
Submitted by: Ed Schouten
Diffstat (limited to 'math/gap')
-rw-r--r-- | math/gap/Makefile | 2 | ||||
-rw-r--r-- | math/gap/distinfo | 6 | ||||
-rw-r--r-- | math/gap/files/patch-gap4r4_src_sysfiles.c | 20 |
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 ) |