diff options
-rw-r--r-- | sysutils/brasero3/Makefile | 3 | ||||
-rw-r--r-- | sysutils/brasero3/files/patch-plugins-growisofs-burn-growisofs.c | 24 |
2 files changed, 26 insertions, 1 deletions
diff --git a/sysutils/brasero3/Makefile b/sysutils/brasero3/Makefile index 8d0911ce1..ddd6adcdd 100644 --- a/sysutils/brasero3/Makefile +++ b/sysutils/brasero3/Makefile @@ -3,10 +3,11 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/sysutils/brasero3/Makefile,v 1.9 2011/04/10 19:41:37 mezz Exp $ +# $MCom: ports/sysutils/brasero3/Makefile,v 1.10 2011/04/10 20:50:04 mezz Exp $ PORTNAME= brasero PORTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= sysutils audio multimedia gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 diff --git a/sysutils/brasero3/files/patch-plugins-growisofs-burn-growisofs.c b/sysutils/brasero3/files/patch-plugins-growisofs-burn-growisofs.c new file mode 100644 index 000000000..f7ae2b9e6 --- /dev/null +++ b/sysutils/brasero3/files/patch-plugins-growisofs-burn-growisofs.c @@ -0,0 +1,24 @@ +--- plugins/growisofs/burn-growisofs.c.orig 2011-05-23 20:22:46.000000000 +0700 ++++ plugins/growisofs/burn-growisofs.c 2011-05-23 20:23:15.000000000 +0700 +@@ -502,18 +502,18 @@ + /* FIXME: is it right to mess with it ? + g_ptr_array_add (argv, g_strdup_printf ("-use-the-force-luke=bufsize:%im", 32)); */ + +- if (!g_file_test ("/proc/self/fd/0", G_FILE_TEST_EXISTS)) { ++ if (!g_file_test ("/dev/fd/0", G_FILE_TEST_EXISTS)) { + g_set_error (error, + BRASERO_BURN_ERROR, + BRASERO_BURN_ERROR_FILE_NOT_FOUND, + _("\"%s\" could not be found"), +- "/proc/self/fd/0"); ++ "/dev/fd/0"); + return BRASERO_BURN_ERR; + } + + /* FIXME: should we use DAO ? */ + g_ptr_array_add (argv, g_strdup ("-Z")); +- g_ptr_array_add (argv, g_strdup_printf ("%s=/proc/self/fd/0", device)); ++ g_ptr_array_add (argv, g_strdup_printf ("%s=/dev/fd/0", device)); + g_free (device); + } + else if (BRASERO_IS_TRACK_IMAGE (current)) { |