# $Id: Portfile,v 1.7 2005/12/11 09:12:15 blb Exp $ PortSystem 1.0 name dcraw version 7.93 categories graphics maintainers blb@opendarwin.org description Raw Digital Photo Decoding, supporting 181 cameras long_description ${description} platforms darwin homepage http://www.cybercom.net/~dcoffin/dcraw/ master_sites ${homepage} distfiles dcraw.c dcraw.1 checksums dcraw.c md5 7b830a3dfc1a109c99e3193cd6cb5ef3 \ dcraw.1 md5 9c091d19e6c4cc2d42b1b5624caf9dc5 depends_lib lib:libjpeg:jpeg extract { xinstall -m 755 -d ${worksrcpath} } use_configure no build { cd ${worksrcpath} system "cc -o dcraw -O3 ${distpath}/dcraw.c -ljpeg -I${prefix}/include \ -L${prefix}/lib" } destroot { xinstall -m 755 -d ${destroot}${prefix}/bin \ ${destroot}${prefix}/share/man/man1 xinstall -m 755 -W ${worksrcpath} dcraw ${destroot}${prefix}/bin xinstall -m 644 -W ${distpath} dcraw.1 ${destroot}${prefix}/share/man/man1 }