From owner-freebsd-ports Mon Aug 12 9:20:21 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7478937B400 for ; Mon, 12 Aug 2002 09:20:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACEAF43E70 for ; Mon, 12 Aug 2002 09:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g7CGK3JU056791 for ; Mon, 12 Aug 2002 09:20:03 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g7CGK3ep056790; Mon, 12 Aug 2002 09:20:03 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37E7B37B400 for ; Mon, 12 Aug 2002 09:16:23 -0700 (PDT) Received: from everlund.homeip.net (h74n1c1o1023.bredband.skanova.com [213.64.164.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E0B243E65 for ; Mon, 12 Aug 2002 09:16:21 -0700 (PDT) (envelope-from su_paul@everlund.homeip.net) Received: from everlund.homeip.net (localhost [127.0.0.1]) by everlund.homeip.net (8.12.3/8.12.3) with ESMTP id g7CGHkTQ006216 for ; Mon, 12 Aug 2002 18:17:46 +0200 (CEST) (envelope-from su_paul@everlund.homeip.net) Received: (from root@localhost) by everlund.homeip.net (8.12.3/8.12.3/Submit) id g7CGHjAb006215; Mon, 12 Aug 2002 18:17:45 +0200 (CEST) (envelope-from su_paul) Message-Id: <200208121617.g7CGHjAb006215@everlund.homeip.net> Date: Mon, 12 Aug 2002 18:17:45 +0200 (CEST) From: Paul Everlund Reply-To: Paul Everlund To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/41582: [PORT] (X)MedCon: A medical image conversion utility and library Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 41582 >Category: ports >Synopsis: [PORT] (X)MedCon: A medical image conversion utility and library >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 12 09:20:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Paul Everlund >Release: >Organization: >Environment: System: FreeBSD >Description: This project stands for Medical Image Conversion and is released under the GNU's (L)GPL license. It bundles the C sourcecode, a library, a flexible command-line utility and a graphical front-end based on the amazing Gtk+ toolkit. Its main purpose is image conversioni, while preserving the most valuable medical study information. The currently supported formats are: Acr/Nema 2.0, Analyze (SPM), Concorde/uPET, DICOM 3.0, Ecat/Matrix 6.4, InterFile 3.3 and PNG or annimated Gif87a/89a towards desktop applications. WWW: http://xmedcon.sourceforge.net >How-To-Repeat: >Fix: --- xmedcon-pr begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # xmedcon # xmedcon/distinfo # xmedcon/Makefile # xmedcon/pkg-plist # xmedcon/pkg-descr # xmedcon/pkg-comment # echo c - xmedcon mkdir -p xmedcon > /dev/null 2>&1 echo x - xmedcon/distinfo sed 's/^X//' >xmedcon/distinfo << 'END-of-xmedcon/distinfo' XMD5 (xmedcon-0.7.9.tar.gz) = d8d63786a86cb971d3c23dd6fe1399a2 END-of-xmedcon/distinfo echo x - xmedcon/Makefile sed 's/^X//' >xmedcon/Makefile << 'END-of-xmedcon/Makefile' X# New ports collection makefile for: xmedcon X# Date created: 09 August 2002 X# Whom: Paul Everlund X# X# $FreeBSD$ X# X XPORTNAME= xmedcon XPORTVERSION= 0.7.9 XCATEGORIES= graphics XMASTER_SITES= http://belnet.dl.sourceforge.net/sourceforge/xmedcon/ \ X http://umn.dl.sourceforge.net/sourceforge/xmedcon/ \ X http://telia.dl.sourceforge.net/sourceforge/xmedcon/ \ X http://unc.dl.sourceforge.net/sourceforge/xmedcon/ \ X http://twtelecom.dl.sourceforge.net/sourceforge/xmedcon/ X XMAINTAINER?= tdv94ped@cs.umu.se X XUSE_LIBTOOL= yes XGNU_CONFIGURE= yes XCONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ X LDFLAGS="-L${LOCALBASE}/lib" X X.if defined(NOX11) X CONFIGURE_ARGS+= --disable-gui X.else X LIB_DEPENDS+= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 X GTK_CONFIG?= gtk12-config X CONFIGURE_ARGS+= --with-gtk-config=${GTK_CONFIG} X.endif X.if defined(NOACR) && defined(NODICOM) X CONFIGURE_ARGS+= --disable-acr X.endif X.if defined(NOGIF) X CONFIGURE_ARGS+= --disable-gif X.endif X.if defined(NOINW) X CONFIGURE_ARGS+= --disable-inw X.endif X.if defined(NOANLZ) X CONFIGURE_ARGS+= --disable-anlz X.endif X.if defined(NOCONC) X CONFIGURE_ARGS+= --disable-conc X.endif X.if defined(NOECAT) X CONFIGURE_ARGS+= --disable-ecat X.endif X.if defined(NOINTF) X CONFIGURE_ARGS+= --disable-intf X.endif X.if defined(NODICOM) X CONFIGURE_ARGS+= --disable-dicom X.endif X.if defined(NOPNG) X CONFIGURE_ARGS+= --disable-png X.else X LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png X.endif X XMAN1= medcon.1 xmedcon.1 xmedcon-config.1 XMAN3= medcon.3 XMAN4= m-acr.4 m-anlz.4 m-ecat.4 m-gif.4 m-intf.4 m-inw.4 X X.include END-of-xmedcon/Makefile echo x - xmedcon/pkg-plist sed 's/^X//' >xmedcon/pkg-plist << 'END-of-xmedcon/pkg-plist' Xbin/medcon X@unexec if [ -f bin/xmedcon ]; then rm %D/bin/xmedcon; fi X@exec if [ -f bin/xmedcon ]; then cp bin/xmedcon %D/bin/; fi Xbin/xmedcon-config Xetc/xmedcon.ico Xetc/xmedcon.png Xetc/xmedconrc Xetc/xmedconrc.linux Xetc/xmedconrc.win32 Xinclude/depend.h Xinclude/dicom.h Xinclude/m-acr.h Xinclude/m-algori.h Xinclude/m-anlz.h Xinclude/m-color.h Xinclude/m-conc.h Xinclude/m-config.h Xinclude/m-debug.h Xinclude/m-defs.h Xinclude/m-dicm.h Xinclude/m-ecat64.h Xinclude/m-error.h Xinclude/m-fancy.h Xinclude/m-files.h Xinclude/m-getopt.h Xinclude/m-gif.h Xinclude/m-global.h Xinclude/m-intf.h Xinclude/m-inw.h Xinclude/m-matrix.h Xinclude/m-pixels.h Xinclude/m-png.h Xinclude/m-qmedian.h Xinclude/m-raw.h Xinclude/m-rslice.h Xinclude/m-sigfpe.h Xinclude/m-structs.h Xinclude/m-transf.h Xinclude/m-vifi.h Xinclude/m-xdummy.h Xinclude/m-xtract.h Xinclude/medcon.h Xlib/libmdc.a Xlib/libmdc.la Xlib/libmdc.so Xlib/libmdc.so.2 Xshare/aclocal/xmedcon.m4 END-of-xmedcon/pkg-plist echo x - xmedcon/pkg-descr sed 's/^X//' >xmedcon/pkg-descr << 'END-of-xmedcon/pkg-descr' XThis project stands for Medical Image Conversion and is released under the XGNU's (L)GPL license. It bundles the C sourcecode, a library, a flexible Xcommand-line utility and a grauhical front-end based on the amazing Gtk+ Xtoolkit. X XIts main purpose is image conversioni, while preserving the most valuable Xmedical study information. The currently supported formats are: Acr/Nema 2.0, XAnalyze (SPM), Concorde/uPET, DICOM 3.0, Ecat/Matrix 6.4, InterFile 3.3 Xand PNG or annimated Gif87a/89a towards desktop applications. X XWWW: http://xmedcon.sourceforge.net END-of-xmedcon/pkg-descr echo x - xmedcon/pkg-comment sed 's/^X//' >xmedcon/pkg-comment << 'END-of-xmedcon/pkg-comment' XA medical image conversion utility and library END-of-xmedcon/pkg-comment exit --- xmedcon-pr ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message