ca0fb05796
New in ver 1.16 =============== New features two different types of black preservation on CMYK-> CMYK transforms Ability to set adaptation state of observer on absolute colorimetric transforms. A rather advanced feature. Actually it only allows No adaptation (d=0) and observer fully adapted (d=1) lcms can now "fix" some broken 8-bit profiles that have gray axes misplaced. icctrans can now read CGATS/IT8 files. improved tifficc with tiff Lab8 support icclink now supports colorant table tag. New functions double cmsSetAdaptationState(cmsHTRANSFORM hTransform, double d); void cmsSetHeaderAttributes(cmsHPROFILE hProfile, DWORD Flags); DWORD cmsTakeHeaderAttributes(cmsHPROFILE hProfile); icInt32Number cmsGetTagCount(cmsHPROFILE hProfile); icTagSignature cmsGetTagSignature(cmsHPROFILE hProfile, icInt32Number n); int cmsSetCMYKPreservationStrategy(int n) BOOL cmsIT8SaveToMem(LCMSHANDLE hIT8, void *MemPtr, size_t* BytesNeeded); BOOL _cmsIsMatrixShaper(cmsHPROFILE hProfile); BOOL _cmsAddDateTimeTag(cmsHPROFILE hProfile, icTagSignature sig, struct tm *DateTime); BOOL _cmsAddColorantTableTag(cmsHPROFILE hProfile, icTagSignature sig, LPcmsNAMEDCOLORLIST nc); double cmsEvalLUTreverse(LPLUT Lut, WORD Target[], WORD Result[], LPWORD Hint); LPcmsNAMEDCOLORLIST cmsReadColorantTable(cmsHPROFILE hProfile, icTagSignature sig) LPcmsGAMUTEX cmsReadExtendedGamut(cmsHPROFILE hProfile, int index); void cmsFreeExtendedGamut(LPcmsGAMUTEX gex); New tags supported icSigColorantTableTag LPcmsNAMEDCOLORLIST icSigColorantTableOutTag LPcmsNAMEDCOLORLIST icSigCalibrationDateTimeTag const struct tm* New flags: cmsFLAGS_PRESERVEBLACK cmsFLAGS_GRIDPOINTS(n) And of course some bug fixing.
37 lines
1,011 B
Makefile
37 lines
1,011 B
Makefile
# $NetBSD: Makefile,v 1.23 2007/01/06 21:52:14 wiz Exp $
|
|
|
|
DISTNAME= lcms-1.16
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.littlecms.com/ \
|
|
http://www.abaforum.es/martim/
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= http://www.littlecms.com/
|
|
COMMENT= Light Color Management System -- a color management library
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
TEST_TARGET= check
|
|
|
|
# lcms does not need zlib, but will look for it and link it to tifficc
|
|
# if present. Therefore, we don't enjoin lcms from finding zlib, but
|
|
# don't include it via bl3.
|
|
|
|
# Avoid an ICE in gcc2 on sparc64
|
|
CONFIGURE_ENV+= F77=${FALSE:Q}
|
|
|
|
PKGCONFIG_OVERRIDE= lcms.pc.in
|
|
|
|
INSTALLATION_DIRS+= share/doc/lcms
|
|
|
|
post-install:
|
|
.for _f_ in LCMSAPI.TXT TUTORIAL.TXT
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${_f_} ${DESTDIR}${PREFIX}/share/doc/lcms/${_f_}
|
|
.endfor
|
|
|
|
.include "../../graphics/jpeg/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|