diff options
author | dirk <dirk@FreeBSD.org> | 2000-04-30 00:01:30 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2000-04-30 00:01:30 +0800 |
commit | 5f7bf6e9194a40b871c1aa3d48a336e7b4cb3e9f (patch) | |
tree | 321df1b3331fbae8cf130a8c9c65ca875849ac1d /sysutils/mkisofs | |
parent | acdf949d786bf95aceb685277cff77f009fcf3f0 (diff) | |
download | freebsd-ports-gnome-5f7bf6e9194a40b871c1aa3d48a336e7b4cb3e9f.tar.gz freebsd-ports-gnome-5f7bf6e9194a40b871c1aa3d48a336e7b4cb3e9f.tar.zst freebsd-ports-gnome-5f7bf6e9194a40b871c1aa3d48a336e7b4cb3e9f.zip |
Upgrade to 1.12.1 (included in cdrecord-1.8.1).
Diffstat (limited to 'sysutils/mkisofs')
-rw-r--r-- | sysutils/mkisofs/Makefile | 4 | ||||
-rw-r--r-- | sysutils/mkisofs/distinfo | 2 | ||||
-rw-r--r-- | sysutils/mkisofs/files/patch-bb | 26 |
3 files changed, 16 insertions, 16 deletions
diff --git a/sysutils/mkisofs/Makefile b/sysutils/mkisofs/Makefile index 6b36cc007443..a0e13e271018 100644 --- a/sysutils/mkisofs/Makefile +++ b/sysutils/mkisofs/Makefile @@ -6,12 +6,12 @@ # PORTNAME= mkisofs -PORTVERSION= 1.12 +PORTVERSION= 1.12.1 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.fokus.gmd.de/pub/unix/cdrecord/ \ ftp://ftp.gwdg.de/pub/linux/misc/cdrecord/ \ ftp://ftp.cs.tu-berlin.de/pub/misc/cdrecord/ -DISTNAME= cdrecord-1.8 +DISTNAME= cdrecord-1.8.1 MAINTAINER= dirk@FreeBSD.org diff --git a/sysutils/mkisofs/distinfo b/sysutils/mkisofs/distinfo index ff83565a7754..9a547a364d52 100644 --- a/sysutils/mkisofs/distinfo +++ b/sysutils/mkisofs/distinfo @@ -1 +1 @@ -MD5 (cdrecord-1.8.tar.gz) = ec22b0b1d9a7da2976dee40d2f2cb9e7 +MD5 (cdrecord-1.8.1.tar.gz) = b14fda2dc632b1270cac60a5882f7992 diff --git a/sysutils/mkisofs/files/patch-bb b/sysutils/mkisofs/files/patch-bb index 489189a7c10e..b37ea2f81308 100644 --- a/sysutils/mkisofs/files/patch-bb +++ b/sysutils/mkisofs/files/patch-bb @@ -1,13 +1,13 @@ ---- mkisofs/tree.c.orig Mon Jan 10 23:17:25 2000 -+++ mkisofs/tree.c Sun Feb 13 21:44:15 2000 -@@ -446,8 +446,8 @@ - table->de_flags |= INHIBIT_JOLIET_ENTRY; - /* table->name = strdup("<translation table>");*/ - table->name = strdup(trans_tbl); -- table->table = (char *) e_malloc(ROUND_UP(tablesize)); -- memset(table->table, 0, ROUND_UP(tablesize)); -+ table->table = (char *) e_malloc(ROUND_UP(tablesize+1)); -+ memset(table->table, 0, ROUND_UP(tablesize+1)); - iso9660_file_length (trans_tbl, table, 0); - - if(use_RockRidge) +--- mkisofs/tree.c.orig Thu Apr 27 11:44:57 2000 ++++ mkisofs/tree.c Sat Apr 29 11:34:23 2000 +@@ -538,8 +538,8 @@ + table->de_flags |= INHIBIT_JOLIET_ENTRY; + /* table->name = strdup("<translation table>");*/ + table->name = strdup(trans_tbl); +- table->table = (char *) e_malloc(ISO_ROUND_UP(tablesize)); +- memset(table->table, 0, ISO_ROUND_UP(tablesize)); ++ table->table = (char *) e_malloc(ISO_ROUND_UP(tablesize+1)); ++ memset(table->table, 0, ISO_ROUND_UP(tablesize+1)); + iso9660_file_length(trans_tbl, table, 0); + + if (use_RockRidge) { |