0b0e7ff81a
http://bugs.hylafax.org/bugzilla/show_bug.cgi?id=500 http://bugzilla.remotesensing.org/show_bug.cgi?id=483 Thanks to Uwe Dippel <udippel at uniten dot edu dot my> for bringing this to my attention.
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.29 2004/05/18 23:35:35 brad Exp $
|
|
|
|
COMMENT= "tools and library routines for working with TIFF images"
|
|
|
|
VERSION= 3.6.1
|
|
DISTNAME= tiff-v${VERSION}
|
|
PKGNAME= tiff-${VERSION}p1
|
|
CATEGORIES= graphics
|
|
|
|
MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/
|
|
|
|
HOMEPAGE= http://www.libtiff.org/
|
|
|
|
LIB_DEPENDS= jpeg.62::graphics/jpeg
|
|
|
|
MAINTAINER= Brad Smith <brad@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= simple
|
|
CONFIGURE_ARGS= --prefix="${PREFIX}" --with-ZIP --with-JPEG \
|
|
--with-CC="${CC}" --with-GCOPTS="${CFLAGS}" \
|
|
--with-DIRS_LIBINC="${LOCALBASE}/include" \
|
|
--with-OPTIMIZER="" --with-DIR_GZLIB="/usr/lib" \
|
|
--with-DIR_JPEGLIB="${LOCALBASE}/lib" \
|
|
--with-LIBGL="no" --with-LIBIMAGE="no" \
|
|
--with-INSTALL="sh ${WRKSRC}/port/install.sh" \
|
|
--noninteractive
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/tiff
|
|
|
|
post-extract:
|
|
@cp -f ${PORTSDIR}/infrastructure/db/{config.guess,config.sub} ${WRKSRC}
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}/images
|
|
${INSTALL_DATA} ${WRKSRC}/html/*.html ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/html/images/*.gif ${DOCDIR}/images
|
|
${INSTALL_DATA} ${WRKSRC}/html/images/*.jpg ${DOCDIR}/images
|
|
|
|
.include <bsd.port.mk>
|