# $Id: Portfile,v 1.1 2005/08/25 07:30:30 blb Exp $ PortSystem 1.0 name dcraw version 7.53 categories graphics maintainers blb@pobox.com 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 95437b75b4db4313191e8d0b5a62a59e \ dcraw.1 md5 820272f1b98125d473c62abe4a36cc79 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 }