diff options
author | edwin <edwin@FreeBSD.org> | 2002-11-21 19:28:31 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-11-21 19:28:31 +0800 |
commit | 03dca5a915e3f1d211ba266707ee240f2764654b (patch) | |
tree | 0c429cc38fb67eb5e2db873d5d1dffd341c569a0 /print | |
parent | ca170616d54aa750215ef3f401a1112c24f7f203 (diff) | |
download | freebsd-ports-gnome-03dca5a915e3f1d211ba266707ee240f2764654b.tar.gz freebsd-ports-gnome-03dca5a915e3f1d211ba266707ee240f2764654b.tar.zst freebsd-ports-gnome-03dca5a915e3f1d211ba266707ee240f2764654b.zip |
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 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> |