Should fix CVE-2014-8127, CVE-2014-8128, CVE-2014-8129, CVE-2014-8130, CVE-2014-9655, CVE-2015-1547.
35 lines
830 B
Makefile
35 lines
830 B
Makefile
# $OpenBSD: Makefile,v 1.72 2015/03/29 17:39:22 naddy Exp $
|
|
|
|
COMMENT= tools and library routines for working with TIFF images
|
|
|
|
DISTNAME= tiff-4.0.4beta
|
|
SHARED_LIBS= tiff 39.2 # 7.1
|
|
SHARED_LIBS+= tiffxx 40.1 # 7.1
|
|
CATEGORIES= graphics
|
|
|
|
MASTER_SITES= http://download.osgeo.org/libtiff/
|
|
|
|
HOMEPAGE= http://www.remotesensing.org/libtiff/
|
|
|
|
LIB_DEPENDS= graphics/jpeg
|
|
WANTLIB= c m stdc++ z jpeg
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--disable-jbig \
|
|
--disable-lzma \
|
|
--with-docdir="${PREFIX}/share/doc/tiff" \
|
|
--with-jpeg-include-dir="${LOCALBASE}/include" \
|
|
--with-jpeg-lib-dir="${LOCALBASE}/lib" \
|
|
--without-x
|
|
SEPARATE_BUILD= Yes
|
|
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/config
|
|
|
|
post-install:
|
|
cd ${PREFIX}/share/doc/tiff && mv html/* . && rmdir html
|
|
|
|
.include <bsd.port.mk>
|