diff options
author | vs <vs@FreeBSD.org> | 2005-02-23 21:30:21 +0800 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2005-02-23 21:30:21 +0800 |
commit | 3bdc2be93d01f9866326df533c3929a4c10a055d (patch) | |
tree | abc4f9920007b1feb217c077c5b4da0e1cd5c0a4 /lang | |
parent | f317b7622015e6ef98c48b40621fb64d205447dc (diff) | |
download | freebsd-ports-gnome-3bdc2be93d01f9866326df533c3929a4c10a055d.tar.gz freebsd-ports-gnome-3bdc2be93d01f9866326df533c3929a4c10a055d.tar.zst freebsd-ports-gnome-3bdc2be93d01f9866326df533c3929a4c10a055d.zip |
Update to 1.0.1
PR: ports/77883
Submitted by: maintainer
Diffstat (limited to 'lang')
-rw-r--r-- | lang/afnix/Makefile | 3 | ||||
-rw-r--r-- | lang/afnix/distinfo | 4 | ||||
-rw-r--r-- | lang/afnix/files/patch-cnf_mak_afnix-defs.mak | 16 | ||||
-rw-r--r-- | lang/afnix/files/patch-src_std_lib_Cons.cpp | 20 |
4 files changed, 30 insertions, 13 deletions
diff --git a/lang/afnix/Makefile b/lang/afnix/Makefile index baffbe4b59f5..13149e13bff9 100644 --- a/lang/afnix/Makefile +++ b/lang/afnix/Makefile @@ -7,7 +7,7 @@ # PORTNAME= afnix -PORTVERSION= 1.0.0 +PORTVERSION= 1.0.1 CATEGORIES= lang MASTER_SITES= http://www.afnix.org/ftp/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTNAME}-${PORTVERSION:S,.,-,g} @@ -28,7 +28,6 @@ MAN1= afnix.1 axc.1 axd.1 axl.1 do-configure: @${WRKSRC}/cnf/bin/${PORTNAME}-setup -o - @rm ${WRKSRC}/src/lib/txt/lib/Digest.[ch]pp post-install: @${STRIP_CMD} ${PREFIX}/bin/${PORTNAME} diff --git a/lang/afnix/distinfo b/lang/afnix/distinfo index 60330a25b230..6ddcb04c039d 100644 --- a/lang/afnix/distinfo +++ b/lang/afnix/distinfo @@ -1,2 +1,2 @@ -MD5 (afnix-src-1-0-0.tgz) = 57260a0d02f64da0d3c6e23e041dcbbf -SIZE (afnix-src-1-0-0.tgz) = 524526 +MD5 (afnix-src-1-0-1.tgz) = aeb777afcb065bf5a73d5a73ec10a9b4 +SIZE (afnix-src-1-0-1.tgz) = 521037 diff --git a/lang/afnix/files/patch-cnf_mak_afnix-defs.mak b/lang/afnix/files/patch-cnf_mak_afnix-defs.mak index 8cc443ae4270..667e04179cac 100644 --- a/lang/afnix/files/patch-cnf_mak_afnix-defs.mak +++ b/lang/afnix/files/patch-cnf_mak_afnix-defs.mak @@ -1,16 +1,14 @@ --- cnf/mak/afnix-defs.mak.orig Wed Feb 16 19:35:18 2005 +++ cnf/mak/afnix-defs.mak Wed Feb 16 19:37:55 2005 -@@ -58,10 +58,10 @@ +@@ -58,9 +58,9 @@ BINDIR = $(PREFIX)/bin LIBDIR = $(PREFIX)/lib - SHARED = $(PREFIX)/share --HDRDIR = $(SHARED)/include/afnix -+HDRDIR = $(PREFIX)/include/afnix - DOCDIR = $(SHARED)/doc/afnix --MANDIR = $(SHARED)/man --ETCDIR = $(SHARED)/etc/afnix -+MANDIR = $(PREFIX)/man -+ETCDIR = $(SHARED)/doc/afnix + HDRDIR = $(SHRDIR)/include/afnix +-DOCDIR = $(SHRDIR)/doc/afnix ++DOCDIR = $(SHRDIR)/share/doc/afnix + MANDIR = $(SHRDIR)/man +-ETCDIR = $(SHRDIR)/etc/afnix ++ETCDIR = $(SHRDIR)/share/doc/afnix # ---------------------------------------------------------------------------- # - other shared commands and scripts - diff --git a/lang/afnix/files/patch-src_std_lib_Cons.cpp b/lang/afnix/files/patch-src_std_lib_Cons.cpp new file mode 100644 index 000000000000..9bdfa9f7f360 --- /dev/null +++ b/lang/afnix/files/patch-src_std_lib_Cons.cpp @@ -0,0 +1,20 @@ +--- src/std/lib/Cons.cpp.orig Thu Feb 17 05:58:04 2005 ++++ src/std/lib/Cons.cpp Mon Feb 21 21:39:54 2005 +@@ -153,7 +153,7 @@ + } + // try to serialize the car + if (p_car == nilp) { +- os.write (Serial::SERIAL_NILP_ID); ++ os.write ((char)Serial::SERIAL_NILP_ID); + } else { + Serial* sobj = dynamic_cast <Serial*> (p_car); + if (sobj == nilp) { +@@ -165,7 +165,7 @@ + } + // try to serialize the cdr + if (p_cdr == nilp) { +- os.write (Serial::SERIAL_NILP_ID); ++ os.write ((char)Serial::SERIAL_NILP_ID); + } else { + Serial* sobj = dynamic_cast <Serial*> (p_cdr); + if (sobj == nilp) { |