diff options
Diffstat (limited to 'print')
-rw-r--r-- | print/trueprint/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/print/trueprint/Makefile b/print/trueprint/Makefile index 9e739991cfc9..817a98b16622 100644 --- a/print/trueprint/Makefile +++ b/print/trueprint/Makefile @@ -14,9 +14,13 @@ MASTER_SITE_SUBDIR= trueprint MAINTAINER= demon@FreeBSD.org USE_GMAKE= yes - GNU_CONFIGURE= yes +# Doesn't configure on bento because of this +.if !exists(/usr/bin/lpr) || !exists(/usr/bin/lp) +IGNORE= "missing /usr/bin/lp or /usr/bin/lpr (hi bento)" +.endif + MAN1= trueprint.1 .include <bsd.port.mk> |