pkgsrc/graphics/camlimages/Makefile
jtb 1e1d8355a3 Initial import of camlimages.
CamlImages is an image processing library, which provides

* Basic functions for image processing and loading/saving various image
  file formats (hence providing a translation facility from format to
  format),
* An interface with the Caml graphics library allows to display
  images in the Graphics module screen and to mix them with Caml
  drawings,
* A freetype interface, integrated into the library:
  you can draw texts into images using any truetype fonts.

In addition, the library can handle huge images that cannot be (or can
hardly be) stored into the main memory (the library then automatically
creates swap files and escapes them to reduce the memory usage).
2003-08-31 01:24:36 +00:00

32 lines
997 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2003/08/31 01:24:36 jtb Exp $
DISTNAME= camlimages-2.11
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.inria.fr/INRIA/caml-light/bazar-ocaml/
EXTRACT_SUFX= .tgz
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://pauillac.inria.fr/camlimages/
COMMENT= Image processing library for Objective Caml
USE_BUILDLINK2= yes
USE_PKGLOCALEDIR= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
PLIST_SRC= ${PKGDIR}/PLIST
.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "sparc")
ALL_TARGET+= all.opt
PLIST_SRC+= ${PKGDIR}/PLIST.opt
.endif
.include "../../lang/ocaml/buildlink2.mk"
.include "../../x11/lablgtk/buildlink2.mk"
.include "../../graphics/jpeg/buildlink2.mk"
.include "../../graphics/png/buildlink2.mk"
.include "../../graphics/xpm/buildlink2.mk"
.include "../../graphics/libungif/buildlink2.mk"
.include "../../graphics/gdk-pixbuf/buildlink2.mk"
.include "../../graphics/freetype2/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"