diff options
author | knu <knu@FreeBSD.org> | 2001-09-01 13:38:28 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-09-01 13:38:28 +0800 |
commit | 0a1b20794871bb33fc2a7e51973226d98f36d3f1 (patch) | |
tree | d0c2b2300315681f7e3fbda7a0f6c67e46f35631 /lang | |
parent | 245c7e40a1d5e5e81fee2cfc3074501350b09ad3 (diff) | |
download | freebsd-ports-gnome-0a1b20794871bb33fc2a7e51973226d98f36d3f1.tar.gz freebsd-ports-gnome-0a1b20794871bb33fc2a7e51973226d98f36d3f1.tar.zst freebsd-ports-gnome-0a1b20794871bb33fc2a7e51973226d98f36d3f1.zip |
Update to 2.27.
PR: ports/30138
Submitted by: Jeff Brown <jabrown@ipn.caida.org> (MAINTAINER)
Since both of the two master sites were unreachable, I added
MASTER_SITE_SOURCEFORGE to the MASTER_SITES, which sites had the
distfile fortunately.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/clisp/Makefile | 12 | ||||
-rw-r--r-- | lang/clisp/distinfo | 2 | ||||
-rw-r--r-- | lang/clisp/files/patch-aa | 6 | ||||
-rw-r--r-- | lang/clisp/files/patch-ab | 20 |
4 files changed, 11 insertions, 29 deletions
diff --git a/lang/clisp/Makefile b/lang/clisp/Makefile index 0a0641b77fef..145154562844 100644 --- a/lang/clisp/Makefile +++ b/lang/clisp/Makefile @@ -6,10 +6,12 @@ # PORTNAME= clisp -PORTVERSION= 2.25.1 +PORTVERSION= 2.27 CATEGORIES= lang -MASTER_SITES= ftp://clisp.cons.org/pub/lisp/clisp/source/ -DISTNAME= ${PORTNAME}-${PORTVERSION} +MASTER_SITES= ftp://clisp.cons.org/pub/clisp/${PORTVERSION}/ \ + ftp://clisp.sourceforge.net/pub/clisp/${PORTVERSION}/ \ + ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= jabrown@caida.org @@ -26,7 +28,7 @@ CONFIGURE_ENV+= INSTALL=${CP} INSTALL_DATA=${CP} INSTALL_PROGRAM=${CP} \ # Build subdirectory BUILD_DIRNAME=${CONFIGURE_TARGET} -# These came from clisp-2.25.1's "configure" on my 4.1.1-R system. +# These came from clisp-2.27's "configure" on my 4.1.1-R system. MAKEMAKE_ARGS=--prefix=${PREFIX} --with-readline --with-gettext \ --with-dynamic-ffi @@ -52,7 +54,7 @@ post-extract: # The 'configure' script stops short of doing this for us. post-configure: - @cd ${WRKSRC}/${BUILD_DIRNAME} && \ + cd ${WRKSRC}/${BUILD_DIRNAME} && \ ./makemake ${MAKEMAKE_ARGS} > Makefile && \ make config.lisp diff --git a/lang/clisp/distinfo b/lang/clisp/distinfo index e4217dbcf73b..366442041f78 100644 --- a/lang/clisp/distinfo +++ b/lang/clisp/distinfo @@ -1 +1 @@ -MD5 (clisp-2.25.1.tar.bz2) = 3806df44a0e77c63788ad0bb9186f1f6 +MD5 (clisp-2.27.tar.bz2) = d4939d1dbc1d4625dadc9e619d78eccc diff --git a/lang/clisp/files/patch-aa b/lang/clisp/files/patch-aa index ad18cfa10c4a..de3ccadb0a59 100644 --- a/lang/clisp/files/patch-aa +++ b/lang/clisp/files/patch-aa @@ -1,6 +1,6 @@ ---- src/makemake.in.orig Tue Jul 20 12:03:11 1999 -+++ src/makemake.in Sun Feb 6 11:12:23 2000 -@@ -1619,7 +1619,14 @@ +--- src/makemake.in.orig Mon Jun 25 07:54:46 2001 ++++ src/makemake.in Sun Aug 26 23:41:48 2001 +@@ -1634,7 +1634,14 @@ echol "mandir = \$(exec_prefix)${NEXT_}man" echol "htmldir = \$(exec_prefix)${NEXT_}share${NEXT_}html" echol "dvidir = \$(exec_prefix)${NEXT_}share${NEXT_}dvi" diff --git a/lang/clisp/files/patch-ab b/lang/clisp/files/patch-ab deleted file mode 100644 index 6b3ea1d74f24..000000000000 --- a/lang/clisp/files/patch-ab +++ /dev/null @@ -1,20 +0,0 @@ ---- src/socket.d.orig Mon Mar 19 11:13:09 2001 -+++ src/socket.d Tue May 15 13:35:22 2001 -@@ -304,7 +304,7 @@ - #ifdef HAVE_INET_PTON - #ifdef HAVE_IPV6 - { -- var struct sockaddr_in6 inaddr; -+ var struct sockaddr_in6 inaddr = {0}; - if (inet_pton(AF_INET6,host,&inaddr.sin6_addr) > 0) { - inaddr.sin6_family = AF_INET6; - inaddr.sin6_port = htons(port); -@@ -313,7 +313,7 @@ - } - #endif - { -- var struct sockaddr_in inaddr; -+ var struct sockaddr_in inaddr = {0}; - if (inet_pton(AF_INET,host,&inaddr.sin_addr) > 0) { - inaddr.sin_family = AF_INET; - inaddr.sin_port = htons(port); |