freebsd-ports/graphics/lcms/Makefile
Martin Wilke 18fc3eccb1 - Update to 1.15
- Pass maintainership to submitter

Short changelog:
- 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

PR:		ports/101603
Submitted by:	Stanislav Sedov <ssedov(at)mbsd.msk.ru>
Approved by:	krion (mentor)
2006-08-10 20:59:53 +00:00

42 lines
1 KiB
Makefile

# New ports collection makefile for: lcms
# Date created: October 30, 2000
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
#
# $FreeBSD$
#
PORTNAME= lcms
PORTVERSION= 1.15
PORTEPOCH= 1
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
http://www.littlecms.com/
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ssedov@mbsd.msk.ru
COMMENT= Light Color Management System -- a color management library
USE_GNOME= gnomehack gnometarget lthack
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --without-jpeg --without-tiff
USE_LDCONFIG= yes
post-patch:
@${REINPLACE_CMD} -e \
's|^SUBDIRS =.*$$|SUBDIRS = src include|g' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e \
's|-O3||g' ${WRKSRC}/src/Makefile.in
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in doc/LCMSAPI.TXT doc/TUTORIAL.TXT tifficc/tifficc.c \
jpegicc/jpegicc.c jpegicc/iccjpeg.c samples/wtpt.c samples/icctrans.c
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
post-build test:
cd ${WRKSRC}/testbed && ${SETENV} ${MAKE_ENV} ${MAKE} check
.include <bsd.port.mk>