1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00

Add Joliet support for long filenames.

Submitted by:	Pav Lucistnik <pav@oook.cz>
This commit is contained in:
Joe Marcus Clarke 2003-10-02 19:22:43 +00:00
parent 6825ecd5f0
commit 3983ef5445
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=90059
2 changed files with 19 additions and 1 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= nautilus-cd-burner
PORTVERSION= 0.5.3
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= sysutils gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.5

View File

@ -0,0 +1,18 @@
--- make-iso.c.orig Mon Sep 8 21:24:07 2003
+++ make-iso.c Thu Oct 2 21:06:43 2003
@@ -545,6 +545,7 @@
argv[i++] = "mkisofs";
argv[i++] = "-r";
argv[i++] = "-J";
+ argv[i++] = "-joliet-long";
argv[i++] = "-graft-points";
argv[i++] = "-path-list";
argv[i++] = filelist;
@@ -598,6 +599,7 @@
argv[i++] = "mkisofs";
argv[i++] = "-r";
argv[i++] = "-J";
+ argv[i++] = "-joliet-long";
argv[i++] = "-graft-points";
argv[i++] = "-path-list";
argv[i++] = filelist;