diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-12-19 15:36:26 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-12-19 15:36:26 +0000 |
commit | 66ccdf8cbcb7568628c38e26f0e2a268595166ec (patch) | |
tree | 46d2acd82b8de26b0739cb4cd045b578bd853132 /graphics/lcms/Makefile | |
parent | 17c7b97a1869f07e758b578d4f66f01f86198c69 (diff) | |
download | freebsd-ports-66ccdf8cbcb7568628c38e26f0e2a268595166ec.zip |
- Use USE_LIBTOOL;
- move variable definition from rules section of Makefile;
- sort pkg-plist.
Diffstat (limited to 'graphics/lcms/Makefile')
-rw-r--r-- | graphics/lcms/Makefile | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/graphics/lcms/Makefile b/graphics/lcms/Makefile index f347486a9f44..421bde85a220 100644 --- a/graphics/lcms/Makefile +++ b/graphics/lcms/Makefile @@ -12,23 +12,19 @@ MASTER_SITES= http://www.abaforum.es/martim/ MAINTAINER= mi@aldan.algebra.com +USE_LIBTOOL= yes INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes - -post-build: test - -test: - cd ${WRKSRC}/profiles && ${WRKSRC}/testbed/testcms +.ifndef NOPORTDOCS +PLIST_SUB= DOC="" +.else +PLIST_SUB= DOC="@comment " +.endif .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> |