eb03298fc4
Released under the GPL licence, it comes with the full C-source code of the library, a flexible command-line utility and a neat graphical front-end using the Gtk+ toolkit. The supported formats are: Acr/Nema 2.0, Analyze (SPM), DICOM 3.0, Ecat/Matrix 6.4, InterFile3.3 and Gif87a/89a. The program also allows to read unsupported files without compression, to print pixel values or to extract/reorder specified images. It is possible to retrieve the raw binary/ascii image arrays or to write annimated GIFs for desktop applications. The library could be used as a framework for your own image formats. From: Tom Knienieder <tom@knienieder.com>
28 lines
662 B
Makefile
28 lines
662 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2000/12/26 12:35:05 reinhard Exp $
|
|
|
|
DISTNAME= xmedcon-0.5.2
|
|
CATEGORIES= graphics
|
|
NEED_VERSION= 1.346
|
|
|
|
MASTER_SITES= http://download.sourceforge.net/xmedcon/
|
|
|
|
HOMEPAGE= http://xmedcon.sourceforge.net
|
|
|
|
MAINTAINER= Tom Knienieder <tom@knienieder.com>
|
|
|
|
LIB_DEPENDS= gdk_pixbuf::graphics/gdk-pixbuf \
|
|
gtk.1.2::x11/gtk+
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --enable-static
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|