diff options
author | rh <rh> | 2009-04-25 12:07:04 +0000 |
---|---|---|
committer | rh <rh> | 2009-04-25 12:07:04 +0000 |
commit | 88db6d65166961ab24f9ee8e39cb5f0af09b58e7 (patch) | |
tree | 822431b8ba7f7c8e2dd9252a49784e5a385f9f8e /sysutils/burn/patches | |
parent | e8cc8d7bb30f13a19a4ca08179e9cfcd05cd7a35 (diff) | |
download | pkgsrc-88db6d65166961ab24f9ee8e39cb5f0af09b58e7.tar.gz |
Update burn to 0.4.1. Changes include:
- The cdrecord and cdrdao backends are now able to handle ATAPI devices.
This, however, requires fairly recent versions of those tools (see
README).
- Added overburn option for both backends. Currently this must be switched
on manually in the parameters dialog. Maybe in the future we may try to
detect this automatically.
- The cdrdao backend bundle is no longer built and installed by default,
but must be handled separately. This makes things easier for me :-)
- The cdrdao backend now knows the method -availableDrives using cdrdao's
'scanbus' command.
- The 'Burn Tools' panel has now moved to the preferences.
- Split the service 'Burn To CD' into two again: 'Burn To CD' and 'Add To
CD'. This gets us rid of the annoying 'do you want to append or create
new...' message.
- ISO image files may now be opened with a double-click or 'gopen'
(Burn.app registers for suffix .iso).
- The miniwindow for the BurnProgress panel now displays the progress.
- Removed the track types raw-intel and raw-motorola. Noone needs this.
- Add functionality to plug-in audio converters, i.e. bundles that convert
arbitrary audio formats into .wav files.
- Add a converter bundle for MP3 files. This bundle is part of the CVS, but
not of th release package.
Fixed Bugs/Issues:
- Fixed a bug where the 'burnproof' option for cdrecord was was not written
properly to the defaults and thus not used at all.
Diffstat (limited to 'sysutils/burn/patches')
-rw-r--r-- | sysutils/burn/patches/patch-aa | 16 | ||||
-rw-r--r-- | sysutils/burn/patches/patch-ab | 12 | ||||
-rw-r--r-- | sysutils/burn/patches/patch-ac | 13 |
3 files changed, 41 insertions, 0 deletions
diff --git a/sysutils/burn/patches/patch-aa b/sysutils/burn/patches/patch-aa new file mode 100644 index 00000000000..7c466f654f7 --- /dev/null +++ b/sysutils/burn/patches/patch-aa @@ -0,0 +1,16 @@ +$NetBSD: patch-aa,v 1.1 2009/04/25 12:07:04 rh Exp $ + +--- ExtProgressIndicator.m.orig 2005-05-13 01:58:49.000000000 +1000 ++++ ExtProgressIndicator.m +@@ -22,8 +22,11 @@ + */ + + #include <AppKit/NSColor.h> ++#include <AppKit/NSGraphics.h> + #include <AppKit/NSParagraphStyle.h> ++#include <AppKit/NSAttributedString.h> + #include <Foundation/Foundation.h> ++#include <GNUstepGUI/GSTheme.h> + + #include "ExtProgressIndicator.h" + diff --git a/sysutils/burn/patches/patch-ab b/sysutils/burn/patches/patch-ab new file mode 100644 index 00000000000..1ff4d7a4796 --- /dev/null +++ b/sysutils/burn/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.1 2009/04/25 12:07:04 rh Exp $ + +--- WorkInProgress.m.orig 2005-05-13 01:58:49.000000000 +1000 ++++ WorkInProgress.m +@@ -23,6 +23,7 @@ + + #include <Foundation/Foundation.h> + #include <AppKit/AppKit.h> ++#include <GNUstepGUI/GSTheme.h> + + #include "Functions.h" + #include "Constants.h" diff --git a/sysutils/burn/patches/patch-ac b/sysutils/burn/patches/patch-ac new file mode 100644 index 00000000000..edc5373c922 --- /dev/null +++ b/sysutils/burn/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2009/04/25 12:07:04 rh Exp $ + +--- DriversPrefs.m.orig 2005-05-13 01:58:49.000000000 +1000 ++++ DriversPrefs.m +@@ -198,7 +198,7 @@ static DriversPrefs *singleInstance = ni + - (BOOL) outlineView: (NSOutlineView *)outlineView + isItemExpandable: (id) item + { +- if ([availableDrives objectForKey: ((DriversTableItem*)item)->display]) { ++ if (item && [availableDrives objectForKey: ((DriversTableItem*)item)->display]) { + return YES; + } + return NO; |