I had a need to look at some medical DCOM files. I found there was nothing covering my needs in the ports tree, so I ported this software. My special need was to look at a Magnetic Resonance. From the website: AMIDE is a competely free tool for viewing, analyzing, and registering volumetric medical imaging data sets. It's been written on top of GTK+, and runs on any system that supports this toolkit. BTW I plainly commented out a part of the code which I could not adapt to the new version of dcmtk. Suggestions from anyone with more insight about this toolkit are welcome. The commented out part is this (from files/patch-src-dcmtk_interface.cc): #ifdef AMIDE_DEBUG - dcm_dir.enableVerboseMode(TRUE); - dcm_dir.setLogStream(&ofConsole); +// These are not defined in the latest dcmtk and could not find substitutes. +// dcm_dir.enableVerboseMode(TRUE); +// dcm_dir.setLogStream(&ofConsole); #endif
In the Makefile a bogus RUN_DEPENDS line slipped in. The one just before OPTIONS, it can be simply removed. Sorry for the mistake. -- Guido Falsi <mad@madpilot.net>
Responsible Changed From-To: freebsd-ports-bugs->martymac I will take care of it.
Hi, Thanks for your contribution. Find attached an updated version of your .shar file. I've re-written OPTIONS handling to follow the porter's handbook recommendations and explicitly disable options in configure if not selected. I've also reformatted pkg-descr. Do those changes seem reasonable to you ? -- Ganael LAPLANCHE <ganael.laplanche@martymac.org> http://www.martymac.org | http://contribs.martymac.org FreeBSD: martymac <martymac@FreeBSD.org>, http://www.FreeBSD.org
On 03/09/11 09:08, Ganael Laplanche wrote: > Hi, > > Thanks for your contribution. > > Find attached an updated version of your .shar file. I've re-written OPTIONS > handling to follow the porter's handbook recommendations and explicitly > disable options in configure if not selected. I've also reformatted pkg-descr. > > Do those changes seem reasonable to you ? > Yes, They are quite reasonable and I approve them. Thank you for your help! -- Guido Falsi <mad@madpilot.net>
State Changed From-To: open->closed Committed with minor changes, thanks!