520b48f4f7
Major changes: * Replace runtime endianess check with the compile time one. * Added support for the new predictor type (floating point predictor), defined at the TIFF Technical Note 3. * Added Support for custom tags, passed by value. Added support for all DNG tags.
32 lines
747 B
Makefile
32 lines
747 B
Makefile
# $OpenBSD: Makefile,v 1.38 2005/07/17 20:54:36 naddy Exp $
|
|
|
|
COMMENT= "tools and library routines for working with TIFF images"
|
|
|
|
DISTNAME= tiff-3.7.3
|
|
CATEGORIES= graphics
|
|
|
|
MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \
|
|
ftp://ftp.remotesensing.org/pub/libtiff/old/
|
|
|
|
HOMEPAGE= http://www.remotesensing.org/libtiff/
|
|
|
|
LIB_DEPENDS= jpeg.62::graphics/jpeg
|
|
WANTLIB= c m z
|
|
FAKE= lib
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= --with-docdir="${PREFIX}/share/doc/tiff" \
|
|
--with-jpeg-include-dir="${DEPBASE}/include" \
|
|
--with-jpeg-lib-dir="${DEPBASE}/lib" \
|
|
--without-x
|
|
SEPARATE_BUILD= simple
|
|
|
|
.include <bsd.port.mk>
|