[74247] trunk/dports/sysutils/cdrdao

jmr at macports.org jmr at macports.org
Wed Dec 8 17:18:58 PST 2010


Revision: 74247
          http://trac.macports.org/changeset/74247
Author:   jmr at macports.org
Date:     2010-12-08 17:18:54 -0800 (Wed, 08 Dec 2010)
Log Message:
-----------
cdrdao: update to 1.2.3 (also fixes #21508)

Modified Paths:
--------------
    trunk/dports/sysutils/cdrdao/Portfile

Added Paths:
-----------
    trunk/dports/sysutils/cdrdao/files/patch-dao_ScsiIf-osx.cc.diff

Modified: trunk/dports/sysutils/cdrdao/Portfile
===================================================================
--- trunk/dports/sysutils/cdrdao/Portfile	2010-12-09 00:40:06 UTC (rev 74246)
+++ trunk/dports/sysutils/cdrdao/Portfile	2010-12-09 01:18:54 UTC (rev 74247)
@@ -4,8 +4,7 @@
 PortSystem      1.0
 
 name            cdrdao
-version         1.2.2
-revision        2
+version         1.2.3
 description     Disk-At-Once Recording of Audio and Data CD-Rs/CD-RWs
 long_description \
         Cdrdao records audio or data CD-Rs in disk-at-once (DAO) mode \
@@ -16,28 +15,17 @@
 maintainers     nomaintainer
 platforms       darwin
 master_sites    sourceforge
-checksums       sha1 2699e56e00342c1fa2a3815ed02418fe964b276b
+checksums       md5 8d15ba6280bb7ba2f4d6be31d28b3c0c \
+                sha1 70d6547795a1342631c7ab56709fd1940c2aff9f \
+                rmd160 a162bdf2bc4d65581816d3a9e3c0d3ba66bb6523
 use_bzip2       yes
 
-depends_build   port:pccts port:pkgconfig
+depends_build   port:pkgconfig
 
-patchfiles      patch-libscg__scsi-mac-iokit.c
+patchfiles      patch-libscg__scsi-mac-iokit.c \
+                patch-dao_ScsiIf-osx.cc.diff
 
-post-patch {
-        reinplace "s|#ifndef linux|#ifdef linux|g" ${worksrcpath}/dao/ScsiIf-lib.cc
-
-        reinplace "s|-L\$\(top_builddir\)/paranoia -lcdda_paranoia|\$\(top_builddir\)/paranoia/libcdda_paranoia.a|" ${worksrcpath}/dao/Makefile.in
-
-        if {[variant_isset universal]} {
-                reinplace "s|COPTS=|COPTS=    ${configure.universal_cflags}|g" ${worksrcpath}/scsilib/RULES/power-macintosh-darwin-cc.rul
-        } else {
-                reinplace "s|COPTS=|COPTS=    -arch ${build_arch}|g" ${worksrcpath}/scsilib/RULES/power-macintosh-darwin-cc.rul
-        }
-        file copy "${worksrcpath}/scsilib/RULES/power-macintosh-darwin-cc.rul" "${worksrcpath}/scsilib/RULES/i386-darwin-cc.rul"
-}
-
-configure.args  --with-pcctsbin=${prefix}/bin --with-pcctsinc=${prefix}/include/pccts \
-                --mandir=${prefix}/share/man \
+configure.args  --mandir=${prefix}/share/man \
                 --without-lame --without-xdao --without-ogg-support --without-mp3-support --disable-dependency-tracking
 
 variant lame description {Use LAME encoder} {

Added: trunk/dports/sysutils/cdrdao/files/patch-dao_ScsiIf-osx.cc.diff
===================================================================
--- trunk/dports/sysutils/cdrdao/files/patch-dao_ScsiIf-osx.cc.diff	                        (rev 0)
+++ trunk/dports/sysutils/cdrdao/files/patch-dao_ScsiIf-osx.cc.diff	2010-12-09 01:18:54 UTC (rev 74247)
@@ -0,0 +1,202 @@
+--- dao/ScsiIf-osx.cc.orig	2009-02-22 21:47:01.000000000 +1100
++++ dao/ScsiIf-osx.cc	2010-12-09 12:11:48.000000000 +1100
+@@ -18,7 +18,7 @@
+ /* cdrdao specific includes and prototype */
+ #include "ScsiIf.h"
+ #include "trackdb/util.h"
+-extern void message(int level, const char *fmt, ...);
++#include "log.h"
+ #include "decodeSense.cc"
+ 
+ /* Mac OS X specific includes */
+@@ -120,7 +120,7 @@ int ScsiIf::init()
+ 		                          CFSTR(kIOPropertySCSITaskAuthoringDevice));
+ 		CFDictionarySetValue(dict, CFSTR(kIOPropertyMatchKey), sub);
+ 		IOServiceGetMatchingServices(kIOMasterPortDefault, dict, &iterator);
+-		if (!iterator) message(-2, "init: no iterator");
++		if (!iterator) log_message(-2, "init: no iterator");
+ 		if (iterator) {
+ 			i = impl_->num_;
+ 			do {
+@@ -134,16 +134,16 @@ int ScsiIf::init()
+ 		impl_->object_ = IORegistryEntryFromPath(kIOMasterPortDefault, impl_->path_);
+ 	}
+ 	/* Strange if (!x) ... if (x) style so you can #ifdef out the !x part */
+-	if (!impl_->object_) message(-2, "init: no object");
++	if (!impl_->object_) log_message(-2, "init: no object");
+ 	if (impl_->object_) {
+ 		/* Get intermediate (IOCFPlugIn) plug-in for MMC device */
+ 		err = IOCreatePlugInInterfaceForService(impl_->object_,
+ 		       kIOMMCDeviceUserClientTypeID, kIOCFPlugInInterfaceID,
+ 		       &impl_->plugin_, &score);
+ 		if (err  != noErr)
+-			message(-2, "init: IOCreatePlugInInterfaceForService failed: %d", err);
++			log_message(-2, "init: IOCreatePlugInInterfaceForService failed: %d", err);
+ 	}
+-	if (!impl_->plugin_) message(-2, "init: no plugin");
++	if (!impl_->plugin_) log_message(-2, "init: no plugin");
+ 	if (impl_->plugin_) {
+ 		/* Get the MMC interface (MMCDeviceInterface) */
+ 		herr = (*impl_->plugin_)->QueryInterface(impl_->plugin_,
+@@ -154,29 +154,29 @@ int ScsiIf::init()
+ 			 */
+ 		        (LPVOID *)&impl_->mmc_);
+ 		if (herr != S_OK)
+-			message(-2, "init: QueryInterface failed: %d", herr);
++			log_message(-2, "init: QueryInterface failed: %d", herr);
+ 	}
+-	if (!impl_->mmc_) message(-2, "init: no mmc");
++	if (!impl_->mmc_) log_message(-2, "init: no mmc");
+ 	if (impl_->mmc_) {
+ 		/* Get the SCSI interface */
+ 		impl_->scsi_ = (*impl_->mmc_)->GetSCSITaskDeviceInterface(impl_->mmc_);
+ 	}
+-	if (!impl_->scsi_) message(-2, "init: no scsi");
++	if (!impl_->scsi_) log_message(-2, "init: no scsi");
+ 	if (impl_->scsi_) {
+ 		/* Obtain exclusive access to device */
+ 		err = (*impl_->scsi_)->ObtainExclusiveAccess(impl_->scsi_);
+ 		if (err != noErr)
+-			message(-2, "init: ObtainExclusiveAccess failed: %d", err);
++			log_message(-2, "init: ObtainExclusiveAccess failed: %d", err);
+ 		if (err == noErr) {
+ 			impl_->exclusive_ = 1;
+ 			/* Send SCSI inquiry command */
+ 			i = inquiry();
+ 			if (i != 0)
+-				message(-2, "init: inquiry failed: %d", i);
++				log_message(-2, "init: inquiry failed: %d", i);
+ 			return (i == 0) ? 0 : 2;
+ 		}
+ 	}
+-	message(-2, "init: failed");
++	log_message(-2, "init: failed");
+ 	return 1;
+ }
+ 
+@@ -311,7 +311,7 @@ void ScsiIf::printError()
+ 		default:
+ 			s = "unknown response"; break;
+ 	}
+-	if (s) message(-2, s);
++	if (s) log_message(-2, s);
+ }
+ 
+ /*
+@@ -334,7 +334,7 @@ int inq(SCSITaskDeviceInterface **scsi,
+ 
+ 	task = (*scsi)->CreateSCSITask(scsi);
+ 	if (!task) {
+-		message(-2, "inq: no task");
++		log_message(-2, "inq: no task");
+ 		return 1;
+ 	}
+ 	bzero(cdb, sizeof(cdb));
+@@ -342,7 +342,7 @@ int inq(SCSITaskDeviceInterface **scsi,
+ 	cdb[4] = sizeof(inq_data);
+ 	ret = (*task)->SetCommandDescriptorBlock(task, cdb, kSCSICDBSize_6Byte);
+ 	if (ret != kIOReturnSuccess) {
+-		message(-2, "inq: SetCommandDescriptorBlock failed: %d", ret);
++		log_message(-2, "inq: SetCommandDescriptorBlock failed: %d", ret);
+ 		(*task)->Release(task);
+ 		return 1;
+ 	}
+@@ -351,35 +351,35 @@ int inq(SCSITaskDeviceInterface **scsi,
+ 	ret = (*task)->SetScatterGatherEntries(task, &range, 1,
+ 	      sizeof(inq_data), kSCSIDataTransfer_FromTargetToInitiator);
+ 	if (ret != kIOReturnSuccess) {
+-		message(-2, "inq: SetScatterGatherEntries failed: %d", ret);
++		log_message(-2, "inq: SetScatterGatherEntries failed: %d", ret);
+ 		(*task)->Release(task);
+ 		return 1;
+ 	}
+ 	ret = (*task)->SetTimeoutDuration(task, 1000);
+ 	if (ret != kIOReturnSuccess) {
+-		message(-2, "inq: SetTimeoutDuration failed: %d", ret);
++		log_message(-2, "inq: SetTimeoutDuration failed: %d", ret);
+ 		(*task)->Release(task);
+ 		return 1;
+ 	}
+ 	ret = (*task)->ExecuteTaskSync(task, sense, status, &len);
+ 	if (ret != kIOReturnSuccess) {
+-		message(-2, "inq: ExecuteTaskSync failed: %d", ret);
++		log_message(-2, "inq: ExecuteTaskSync failed: %d", ret);
+ 		(*task)->Release(task);
+ 		return 1;
+ 	}
+ 	ret = (*task)->GetSCSIServiceResponse(task, response);
+ 	if (ret != kIOReturnSuccess) {
+-		message(-2, "inq: GetSCSIServiceResponse failed: %d", ret);
++		log_message(-2, "inq: GetSCSIServiceResponse failed: %d", ret);
+ 		(*task)->Release(task);
+ 		return 1;
+ 	}
+ 	if (*response != kSCSIServiceResponse_TASK_COMPLETE) {
+-		message(-2, "inq: response=%d", *response);
++		log_message(-2, "inq: response=%d", *response);
+ 		(*task)->Release(task);
+ 		return 1;
+ 	}
+ 	if (*status != kSCSITaskStatus_GOOD) {
+-		message(-2, "inq: status=%d", *status);
++		log_message(-2, "inq: status=%d", *status);
+ 		(*task)->Release(task);
+ 		return 1;
+ 	}
+@@ -437,7 +437,7 @@ ScsiIf::ScanData *ScsiIf::scan(int *len,
+ 	CFDictionarySetValue(dict, CFSTR(kIOPropertyMatchKey), sub);
+ 	IOServiceGetMatchingServices(kIOMasterPortDefault, dict, &iterator);
+ 	if (!iterator) {
+-		message(-2, "scan: no iterator");
++		log_message(-2, "scan: no iterator");
+ 		*len = 0;
+ 		return NULL;
+ 	}
+@@ -456,32 +456,32 @@ ScsiIf::ScanData *ScsiIf::scan(int *len,
+ 		       kIOMMCDeviceUserClientTypeID, kIOCFPlugInInterfaceID,
+ 		       &plugin, &score);
+ 		if (err != noErr) {
+-			message(-2, "scan: IOCreatePlugInInterfaceForService failed: %d", err);
++			log_message(-2, "scan: IOCreatePlugInInterfaceForService failed: %d", err);
+ 			goto clean;
+ 		}
+ 		if (!plugin) {
+-			message(-2, "scan: no plugin");
++			log_message(-2, "scan: no plugin");
+ 			goto clean;
+ 		}
+ 		herr = (*plugin)->QueryInterface(plugin,
+ 		        CFUUIDGetUUIDBytes(kIOMMCDeviceInterfaceID),
+ 		        (LPVOID *)&mmc);
+ 		if (herr != S_OK) {
+-			message(-2, "scan: QueryInterface failed: %d", herr);
++			log_message(-2, "scan: QueryInterface failed: %d", herr);
+ 			goto clean;
+ 		}
+ 		if (!mmc) {
+-			message(-2, "scan: no mmc");
++			log_message(-2, "scan: no mmc");
+ 			goto clean;
+ 		}
+ 		scsi = (*mmc)->GetSCSITaskDeviceInterface(mmc);
+ 		if (!scsi) {
+-			message(-2, "scan: no scsi");
++			log_message(-2, "scan: no scsi");
+ 			goto clean;
+ 		}
+ 		err = (*scsi)->ObtainExclusiveAccess(scsi);
+ 		if (err != noErr) {
+-			message(-2, "scan: ObtainExclusiveAccess failed: %d", err);
++			log_message(-2, "scan: ObtainExclusiveAccess failed: %d", err);
+ 			goto clean;
+ 		}
+ 		ret = inq(scsi, &response, &status, NULL,
+@@ -489,7 +489,7 @@ ScsiIf::ScanData *ScsiIf::scan(int *len,
+ 		          scanData[*len].product,
+ 		          scanData[*len].revision);
+ 		if (ret != 0) {
+-			message(-2, "scan: inq failed: %d", ret);
++			log_message(-2, "scan: inq failed: %d", ret);
+ 			goto clean;
+ 		}
+ 		(*len)++;
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20101208/f34c4692/attachment.html>


More information about the macports-changes mailing list