diff options
author | vs <vs@FreeBSD.org> | 2006-03-16 23:45:09 +0800 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2006-03-16 23:45:09 +0800 |
commit | 7db4dcfe62cb874e2ea82a3730543ed3bc345fa2 (patch) | |
tree | daaf91e7932c8c2f09e9fa43215ef69401b2af4a | |
parent | da06ffc1c39c4cefeced501cad185623b713df33 (diff) | |
download | freebsd-ports-gnome-7db4dcfe62cb874e2ea82a3730543ed3bc345fa2.tar.gz freebsd-ports-gnome-7db4dcfe62cb874e2ea82a3730543ed3bc345fa2.tar.zst freebsd-ports-gnome-7db4dcfe62cb874e2ea82a3730543ed3bc345fa2.zip |
Do not force dependency on shells/bash2.
-rw-r--r-- | graphics/hpoj/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/graphics/hpoj/Makefile b/graphics/hpoj/Makefile index 8e1db5fadde6..865c560f9fd8 100644 --- a/graphics/hpoj/Makefile +++ b/graphics/hpoj/Makefile @@ -21,10 +21,15 @@ NOT_FOR_ARCHS= sparc64 ia64 LIB_DEPENDS= sane.1:${PORTSDIR}/graphics/sane-backends \ usb:${PORTSDIR}/devel/libusb +.if defined(WITH_BASH2) RUN_DEPENDS= bash:${PORTSDIR}/shells/bash2 +.else +RUN_DEPENDS= bash:${PORTSDIR}/shells/bash +.endif OPTIONS= CUPS "CUPS support" on \ - SNMP "SNMP support (required for JetDirect)" on + SNMP "SNMP support (required for JetDirect)" on \ + BASH2 "Depend on older bash" off .if defined(WITH_X11) USE_QT_VER= 3 |