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.
This commit is contained in:
parent
5c50c0063f
commit
2a5081cf28
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=17488
6 changed files with 20 additions and 80 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (mkisofs-1.11.3.tar.gz) = 6ac09ac298401a900fb37534888c16fb
|
||||
MD5 (mkisofs-1.12b4.tar.gz) = c6b71ab4d723be532c52e65b6f505995
|
||||
|
|
|
@ -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)
|
|
@ -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
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (mkisofs-1.11.3.tar.gz) = 6ac09ac298401a900fb37534888c16fb
|
||||
MD5 (mkisofs-1.12b4.tar.gz) = c6b71ab4d723be532c52e65b6f505995
|
||||
|
|
|
@ -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)
|
Loading…
Reference in a new issue