summaryrefslogtreecommitdiff
path: root/sysutils/cdrtools
diff options
context:
space:
mode:
authorwiz <wiz>2010-02-21 13:19:51 +0000
committerwiz <wiz>2010-02-21 13:19:51 +0000
commit7e41fffa7d430a86365a31206ddafa3ac2441f5c (patch)
tree5cdf107f90185d32953e953b0f9827db6d11b55e /sysutils/cdrtools
parent0338d3c84f56144028f866229d64dd2e1875c76e (diff)
downloadpkgsrc-7e41fffa7d430a86365a31206ddafa3ac2441f5c.tar.gz
Update to 2.01.01alpha76:
NEW features of cdrtools-2.01.01a75: Cdrecord: - Hidden Track support is now complete: - Added support for writing Hidden Audio Tracks before Track #1 in the Mtsushita CW-7501 device driver. - Added support for writing Hidden Audio Tracks before Track #1 in the Sony CDU-924 / CDU-948 device driver. - Added support for writing Hidden Audio Tracks in RAW mode. Cdrecord-2.01.01a74 did put "track number 0" into the subchannel data for track 1 index 0. Cdrecord now correctly writes Track #1 into the sub channel data. - Added support for Track #1 having a different number than 1 into the CUE file parser. - The CUE file parser now prints much better error messages in case that a keyword is seen out of the permitted order. - The CUE file parser now supports hidden tracks. - Fixed a bug in the CUE file parser that caused "pregap size 0" (missing INDEX 00) to be replaced by the default pregap size of 150 sectors. Cdda2wav (Maintained/enhanced by J - Hidden Track support is now complete: - Fixed a bug in the cdda2wav track loop control that caused cdda2wav not to write the *.inf file for the last track in case of an audio CD with a hidden track. - Introduced an alias "isrc" and "ISRC" for -vtrackid - Introduced an alias "mcn" and "MCN" for -vcatalog - cdda2wav now emits a "PREGAP" keyword in the CUE file for a CD without hidden track if it starts with a sector number > 0. NEW features of cdrtools-2.01.01a76: Cdrecord: - Added a workaround for a firmware bug in the drive: 'HL-DT-ST' 'BD-RE BH10LS30 ' '1.00' That causes the drive to return zero media size for BluRay media. - cdrecord now aborts if the cuefile= option was specified with a non-CD media in the drive. - CDRWIN CUE files now may refer to several data files where each data file contains less than the whole disk but more than a single track. - The CUE parser now correctly sets the sector size information for the lead-in area. - The CUE parser now by default only accepts CDRWIN CUE compliant files but may be switched into an enhanced mode by introducing a special comment "REM CDRTOOLS" - The CUE parser now supports a FILE command between INDEX 00 and INDEX 01. This is needed in order to write CUE sheets from Exact Audio Copy. Note that cdrecord needs to be switched into the enhanced CUE parser mode by either specifying "REM CDRTOOLS" or by specifying: REM COMMENT "ExactAudioCopy v0.99pb5" Also note that cdrecord currently does not support more than one FILE command per TRACK. For this reason, hidden audio tracks only work if the hidden audio data is in the same file that also contains data for track 1. - New commands "ARRANGER", "COMPOSER" and "MESSAGE" for adding CD-Text information in CUE files. Note that these commands are cdrecord specific extensions that re unknown by CDRWIN and thus need "REM CDRTOOLS" to be enabled. - The CUE file format is now documented in the cdrecord man page. - Fixed a small type bug in cdrecord/fifo.c (introduced a few versions before) that hits if the OS does not support the FIFO. Cdda2wav (Maintained/enhanced by J - New cdda2wav option -vaudio-tracks - Make cdda2wav -q silent again (even with CDs with hidden track) to make it compatible again with scripts. - cdda2ogg and cdda2ogg.1 added to standard install The script cdda2ogg was enhanced to work seamlessly. - cdda2mp3 and cdda2mp3.1 added to standard install The script cdda2mp3 was enhanced to work seamlessly. - the scripts cdda2ogg and cdda2mp3 now allow to forward options to cdda2wav. In order to enable "paranoia mode", call: cdda2ogg -paranoia In order to enable the most proof "paranoia mode", call: cdda2ogg -paraopts=proof - The cdda2ogg man page was completely reworked - The SYSvr4 pkg definition now includes cdda2ogg and cdda2mp3 - Added a workaround for a broken ASPI that hangs with odd transfer counts. Readcd: - Added a workaround for a broken ASPI that hangs with odd transfer counts.
Diffstat (limited to 'sysutils/cdrtools')
-rw-r--r--sysutils/cdrtools/Makefile15
-rw-r--r--sysutils/cdrtools/PLIST6
-rw-r--r--sysutils/cdrtools/distinfo8
3 files changed, 20 insertions, 9 deletions
diff --git a/sysutils/cdrtools/Makefile b/sysutils/cdrtools/Makefile
index 05bbf6b9e07..5dac44ba6d3 100644
--- a/sysutils/cdrtools/Makefile
+++ b/sysutils/cdrtools/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.70 2010/02/03 16:04:26 wiz Exp $
+# $NetBSD: Makefile,v 1.71 2010/02/21 13:19:51 wiz Exp $
-DISTNAME= cdrtools-2.01.01a74
+DISTNAME= cdrtools-2.01.01a76
PKGNAME= ${DISTNAME:S/a/alpha/:S/-pre/pre/}
CATEGORIES= sysutils
MASTER_SITES= ftp://ftp.berlios.de/pub/cdrecord/alpha/ \
@@ -101,13 +101,20 @@ post-build:
done
do-install:
- for program in btcflash cdda2wav cdrecord mkisofs \
+ for program in btcflash cdda2wav cdrecord mkisofs \
readcd scgcheck scgskeleton; do \
cd ${WRKSRC}/$${program}; \
${INSTALL_PROGRAM} OBJ/*/$${program} \
${DESTDIR}${PREFIX}/bin; \
done
- for program in btcflash cdda2wav cdrecord readcd scgcheck; do \
+ for program in cdda2mp3 cdda2ogg; do \
+ ${INSTALL_SCRIPT} ${WRKSRC}/cdda2wav/$${program} \
+ ${DESTDIR}${PREFIX}/bin; \
+ ${INSTALL_MAN} ${WRKSRC}/cdda2wav/$${program}.1 \
+ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1; \
+ done
+ for program in btcflash cdda2wav cdrecord \
+ readcd scgcheck; do \
${INSTALL_MAN} ${WRKSRC}/$${program}/$${program}.1 \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1; \
done
diff --git a/sysutils/cdrtools/PLIST b/sysutils/cdrtools/PLIST
index 60aab5d738a..79e85da0cfb 100644
--- a/sysutils/cdrtools/PLIST
+++ b/sysutils/cdrtools/PLIST
@@ -1,5 +1,7 @@
-@comment $NetBSD: PLIST,v 1.4 2009/06/14 18:16:02 joerg Exp $
+@comment $NetBSD: PLIST,v 1.5 2010/02/21 13:19:51 wiz Exp $
bin/btcflash
+bin/cdda2mp3
+bin/cdda2ogg
bin/cdda2wav
bin/cdrecord
bin/devdump
@@ -60,6 +62,8 @@ lib/siconv/iso8859-9
lib/siconv/koi8-r
lib/siconv/koi8-u
man/man1/btcflash.1
+man/man1/cdda2mp3.1
+man/man1/cdda2ogg.1
man/man1/cdda2wav.1
man/man1/cdrecord.1
man/man1/readcd.1
diff --git a/sysutils/cdrtools/distinfo b/sysutils/cdrtools/distinfo
index 4e2f4e6edba..2efdfe9c67b 100644
--- a/sysutils/cdrtools/distinfo
+++ b/sysutils/cdrtools/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.48 2010/02/03 16:04:26 wiz Exp $
+$NetBSD: distinfo,v 1.49 2010/02/21 13:19:51 wiz Exp $
-SHA1 (cdrtools-2.01.01a74.tar.bz2) = 20a335984d7daa36e80124f1057c3699edb65f8f
-RMD160 (cdrtools-2.01.01a74.tar.bz2) = 16dc812a77bf6c50d5c279bcdc2b8c7b2fb4ba44
-Size (cdrtools-2.01.01a74.tar.bz2) = 1921329 bytes
+SHA1 (cdrtools-2.01.01a76.tar.bz2) = b98df681616483064f235bfac496773be24393d4
+RMD160 (cdrtools-2.01.01a76.tar.bz2) = 991b163f475307321cd37867d278580c9c87de26
+Size (cdrtools-2.01.01a76.tar.bz2) = 1923933 bytes