diff options
author | dirk <dirk@FreeBSD.org> | 1999-03-31 11:17:09 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 1999-03-31 11:17:09 +0000 |
commit | 53d6333ec78487fdc0c2b308caf607b02f3cddea (patch) | |
tree | 0f0582fe21330b3677b04ad858bbf11ecd845c32 /sysutils/mkisofs | |
parent | 200c9327657161ee3239ebb5f710d626aefd02cc (diff) | |
download | FreeBSD-ports-53d6333ec78487fdc0c2b308caf607b02f3cddea.zip FreeBSD-ports-53d6333ec78487fdc0c2b308caf607b02f3cddea.tar.gz |
Upgrade to 1.12b4.
This version has support for Joliet filesystems.
Although this is labeled as "beta" it has proven enough stability
as mkisofs112 in the ports tree. mkisofs112 is going to be deleted now.
Diffstat (limited to 'sysutils/mkisofs')
-rw-r--r-- | sysutils/mkisofs/Makefile | 17 | ||||
-rw-r--r-- | sysutils/mkisofs/distinfo | 2 | ||||
-rw-r--r-- | sysutils/mkisofs/files/patch-ac | 31 |
3 files changed, 10 insertions, 40 deletions
diff --git a/sysutils/mkisofs/Makefile b/sysutils/mkisofs/Makefile index ff33208..2d3420d 100644 --- a/sysutils/mkisofs/Makefile +++ b/sysutils/mkisofs/Makefile @@ -1,15 +1,16 @@ -# New ports collection makefile for: mkisofs -# Version required: 1.11.1 -# Date created: 07 Aug 1996 -# Whom: jkh +# New ports collection makefile for: mkisofs +# Version required: 1.12b4 +# Date created: 07 Aug 1996 +# Whom: jhk # -# $Id: Makefile,v 1.9 1999/02/22 16:09:52 dirk Exp $ +# $Id: Makefile,v 1.10 1999/02/23 16:18:44 dirk Exp $ # -DISTNAME= mkisofs-1.11.3 +DISTNAME= mkisofs-1.12b4 CATEGORIES= sysutils -MASTER_SITES= ftp://ftp.cdrom.com/pub/linux/tsx-11/packages/mkisofs/ \ - ftp://ftp.fokus.gmd.de/pub/unix/cdrecord/mkisofs/ +MASTER_SITES= ftp://ftp.fokus.gmd.de/pub/unix/cdrecord/mkisofs/ \ + ftp://ftp.gwdg.de/pub/linux/misc/cdrecord/mkisofs/ \ + ftp://ftp.cs.tu-berlin.de/pub/misc/cdrecord/mkisofs/ MAINTAINER= dirk@FreeBSD.ORG diff --git a/sysutils/mkisofs/distinfo b/sysutils/mkisofs/distinfo index dc5465d..ad9ea6d 100644 --- a/sysutils/mkisofs/distinfo +++ b/sysutils/mkisofs/distinfo @@ -1 +1 @@ -MD5 (mkisofs-1.11.3.tar.gz) = 6ac09ac298401a900fb37534888c16fb +MD5 (mkisofs-1.12b4.tar.gz) = c6b71ab4d723be532c52e65b6f505995 diff --git a/sysutils/mkisofs/files/patch-ac b/sysutils/mkisofs/files/patch-ac deleted file mode 100644 index b0ca127..0000000 --- a/sysutils/mkisofs/files/patch-ac +++ /dev/null @@ -1,31 +0,0 @@ ---- name.c.orig Sat Mar 15 04:02:46 1997 -+++ name.c Mon Apr 28 11:50:47 1997 -@@ -57,6 +57,7 @@ - const char * pnt; - int priority = 32767; - char * result; -+ char * copy; - int seen_dot = 0; - int seen_semic = 0; - int tildes = 0; -@@ -104,12 +105,17 @@ - last_dot = strrchr (pnt,'.'); - if( (last_dot != NULL) - && ( (last_dot[1] == '~') -- || (last_dot[1] == '\0') - || (last_dot[1] == '\0')) ) - { -+ /* -+ * We gotta copy the string first, to work around its constness. -+ */ -+ copy = alloca (strlen(name) + 1); -+ memcpy (copy, name, strlen(name) + 1); -+ pnt = copy; -+ last_dot = strrchr (pnt,'.'); - c = last_dot; - *c = '\0'; - last_dot = strrchr (pnt,'.'); -- *c = '.'; - } - - while(*pnt) |