diff options
author | edwin <edwin@FreeBSD.org> | 2002-11-21 11:28:31 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-11-21 11:28:31 +0000 |
commit | 03dca5a915e3f1d211ba266707ee240f2764654b (patch) | |
tree | 0c429cc38fb67eb5e2db873d5d1dffd341c569a0 /print | |
parent | ca170616d54aa750215ef3f401a1112c24f7f203 (diff) | |
download | FreeBSD-ports-03dca5a915e3f1d211ba266707ee240f2764654b.zip FreeBSD-ports-03dca5a915e3f1d211ba266707ee240f2764654b.tar.gz |
Disable building on bento because of missing /usr/bin/lp /usr/bin/lpr
Noticed on: bento
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 9e73999..817a98b 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> |