diff options
author | trevor <trevor@FreeBSD.org> | 2000-11-03 17:03:33 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2000-11-03 17:03:33 +0000 |
commit | ae32284a6d6d9f82735cf54ae3bcf3f0827cf4ef (patch) | |
tree | 58c4ab0787a5af7d8ca5a137ad2acbffa5cf24f7 /graphics/lcms/Makefile | |
parent | 9f68fcc26f0575ad750d517fcd3ed0578b55a6cd (diff) | |
download | FreeBSD-ports-ae32284a6d6d9f82735cf54ae3bcf3f0827cf4ef.zip FreeBSD-ports-ae32284a6d6d9f82735cf54ae3bcf3f0827cf4ef.tar.gz |
Add new port of LCMS 1.06, the Little Color Management System, a
graphics library. Color management is the process of keeping
"profiles" which describe the response of scanners, cameras,
monitors, printers and such to light, and compensating for the
different response curves as images are transferred from one device
to another.
PR: 22420
Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
Diffstat (limited to 'graphics/lcms/Makefile')
-rw-r--r-- | graphics/lcms/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/graphics/lcms/Makefile b/graphics/lcms/Makefile new file mode 100644 index 0000000..f347486 --- /dev/null +++ b/graphics/lcms/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: lcms +# Date created: October 30, 2000 +# Whom: Mikhail Teterin <mi@aldan.algebra.com> +# +# $FreeBSD$ +# + +PORTNAME= lcms +PORTVERSION= 1.06 +CATEGORIES= graphics +MASTER_SITES= http://www.abaforum.es/martim/ + +MAINTAINER= mi@aldan.algebra.com + +INSTALLS_SHLIB= yes + +GNU_CONFIGURE= yes + +post-build: test + +test: + cd ${WRKSRC}/profiles && ${WRKSRC}/testbed/testcms + +.ifndef NOPORTDOCS +post-install: + ${MKDIR} ${PREFIX}/share/doc/lcms + ${CP} -rp ${WRKSRC}/doc/* ${PREFIX}/share/doc/lcms/ + +PLIST_SUB= DOC="" +.else +PLIST_SUB= DOC="@comment " +.endif + +.include <bsd.port.mk> |