92c06a896a
maintain without access to machines of various architectures. Kris has such access, but would not share it and gets tired too quickly.
38 lines
956 B
Makefile
38 lines
956 B
Makefile
# New ports collection makefile for: lcms
|
|
# Date created: October 30, 2000
|
|
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lcms
|
|
PORTVERSION= 1.09
|
|
PORTEPOCH= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
http://www.littlecms.com/
|
|
MASTER_SITE_SUBDIR=${PORTNAME}
|
|
|
|
MAINTAINER= kris@obsecurity.org
|
|
COMMENT= Light Color Management System -- a color management library
|
|
|
|
INSTALLS_SHLIB= yes
|
|
MAKEFILE= ${FILESDIR}/Makefile.bsd
|
|
MAKE_ARGS+= -j2
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
|
|
|
.ifndef NOPORTDOCS
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/share/doc/lcms
|
|
${CP} -rp ${WRKSRC}/../doc/* ${WRKSRC}/../tifficc/tifficc.c \
|
|
${WRKSRC}/../jpegicc/jpegicc.c ${WRKSRC}/../jpegicc/iccjpeg.c \
|
|
${WRKSRC}/../samples/wtpt.c ${WRKSRC}/../samples/icctrans.c \
|
|
${PREFIX}/share/doc/lcms/
|
|
.endif
|
|
|
|
post-build test:
|
|
cd ${WRKSRC}/../testbed && \
|
|
${SETENV} CFLAGS="${CFLAGS} -I../include" ${MAKE} -E CFLAGS test
|
|
|
|
.include <bsd.port.mk>
|