diff options
author | mandree <mandree@FreeBSD.org> | 2011-08-09 06:24:23 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2011-08-09 06:24:23 +0800 |
commit | aef7be01ee6ba69ec557db3f2b7a94a4bfd332db (patch) | |
tree | 186c21e5e3efc1f727556409a9ab00c40189e118 /archivers | |
parent | b292e0c489fb3b603449cf13409036ba8b95f40a (diff) | |
download | freebsd-ports-gnome-aef7be01ee6ba69ec557db3f2b7a94a4bfd332db.tar.gz freebsd-ports-gnome-aef7be01ee6ba69ec557db3f2b7a94a4bfd332db.tar.zst freebsd-ports-gnome-aef7be01ee6ba69ec557db3f2b7a94a4bfd332db.zip |
- 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
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/lzo2/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
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}/ |