Deprecated functions to be replaced
===================================

A couple of deprecated functions are being used in makeicns which stem from IconFamily itself.
It turns out that they started to be deprecated for different versions of OS X, which is why
it could be necessary to supply patches depending on the currently installed OS X version
when installing this port via MacPorts on older systems.

Actually there are only two functions which need patching if one wants to avoid compile
warnings. The other three functions are of no concern at this stage, since Brad commented
them out of the current code during his last two commits. We'll keep it this way, unless
the author of IconFamily comes back to us and supplies an update to his original code.

(First tag called "needed" means that the function is necessary for building makeicns.)

IconFamily.m:927: warning: ‘removeFileAtPath:handler:’ is deprecated (declared at /System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:174)
	needed:      yes
	deprecated:  10.5
	replacement: removeItemAtPath:iconrPath error:NULL
	status:      OK


IconFamily.m:1143: warning: ‘bestRepresentationForDevice:’ is deprecated (declared at /System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:128)
	needed:      yes
	deprecated:  10.6
	replacement: For information on how the "best" representation is chosen, see the “Images” chapter of Cocoa Drawing Guide.
	status:      NOT YET RESOLVED


NSString+CarbonFSRefCreation.m:26: warning: ‘writeToFile:atomically:’ is deprecated (declared at /System/Library/Frameworks/Foundation.framework/Headers/NSString.h:374)
	needed:      yes
	deprecated:  10.6
	replacement: writeToURL:self options:NSFileWrapperWritingAtomic originalContentsURL:nil error:NULL
	status:      NOT 100% OK -> ‘NSString’ may not respond to ‘-writeToURL:options:originalContentsURL:error:’


IconFamily.m:709: warning: ‘fileAttributesAtPath:traverseLink:’ is deprecated (declared at /System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:162)
	needed:      no
	deprecated:  10.5
	replacement: attributesOfItemAtPath:path error:NULL
	status:      OK


IconFamily.m:824: warning: ‘changeFileAttributes:atPath:’ is deprecated (declared at /System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:163)
	needed:      no
	deprecated:  10.5
	replacement: setAttributes:attributes ofItemAtPath:path
	status:      NOT 100% OK -> ‘NSFileManager’ may not respond to ‘-setAttributes:ofItemAtPath:’
