From aef7be01ee6ba69ec557db3f2b7a94a4bfd332db Mon Sep 17 00:00:00 2001 From: mandree Date: Mon, 8 Aug 2011 22:24:23 +0000 Subject: - Fix NOPORTDOCS support. [1] (using a different approach than suggested by Philip). - Support WITHOUT_CHECKS to skip the self-tests. - Remove two excess blank lines from Makefile, making portlint happier. The part marked with [1] was Reported by: pgollucci PR: ports/159609 --- archivers/lzo2/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'archivers') diff --git a/archivers/lzo2/Makefile b/archivers/lzo2/Makefile index 81b17a9f5df2..414083a6b308 100644 --- a/archivers/lzo2/Makefile +++ b/archivers/lzo2/Makefile @@ -10,7 +10,6 @@ PORTVERSION= 2.05 CATEGORIES= archivers devel MASTER_SITES= http://www.oberhumer.com/opensource/lzo/download/ \ LOCAL/mandree - DISTNAME= lzo-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} MAINTAINER= mandree@FreeBSD.org @@ -23,10 +22,16 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-shared --docdir=${DOCSDIR} USE_LDCONFIG= yes +.if defined(NOPORTDOCS) +INSTALL_TARGET= install-exec install-pkgincludeHEADERS +.endif + post-build: +.if !defined(WITHOUT_CHECKS) @${ECHO_MSG} "===> Running self-tests for ${PKGNAME} (can take a few minutes)" @#: override MALLOC_OPTIONS, else tests take excessively long cd ${WRKSRC} && ${SETENV} MALLOC_OPTIONS=jz ${MAKE} check test SHELL="${SH} -x" +.endif post-install: .if !defined(NOPORTDOCS) @@ -37,7 +42,6 @@ post-install: .endfor ${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}/ .endif - .if !defined(NOPORTEXAMPLES) ${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/[a-z]*.[ch] ${EXAMPLESDIR}/ -- cgit