# $Id: Portfile,v 1.6 2005/12/06 21:52:04 blb Exp $ PortSystem 1.0 name dcraw version 7.90 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 a4f9796703a45ac93af92afc78229772 \ 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 }