diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-03-20 18:19:47 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-03-20 18:19:47 +0800 |
commit | 73d0871c8f34d0f802d6398cddc72e5fbba72ecb (patch) | |
tree | abdaf7f3052048ccc68981fbbe42271625c3f6b2 /misc/instant-server | |
parent | e19c8c884e166918ab854de95b2a6b83e6ae46bf (diff) | |
download | freebsd-ports-gnome-73d0871c8f34d0f802d6398cddc72e5fbba72ecb.tar.gz freebsd-ports-gnome-73d0871c8f34d0f802d6398cddc72e5fbba72ecb.tar.zst freebsd-ports-gnome-73d0871c8f34d0f802d6398cddc72e5fbba72ecb.zip |
This time try harder to fix *all* incorrect RUN_DEPENDS:
1. A user (bento for example) may not have ${LOCALBASE}/sbin in his PATH, so
use explicit path to the dependency instead of just executable name;
2. isc-dhcp3 port installs executable called dhcpd, not isc-dhcp3;
3. samba port installs executable called smbd, not samba;
4. cnews port installs executable called cnewsdo, not cnews;
5. apache13 port installs executable called httpd, not apache13;
6. squid23 port installs executable called squid, not squid23.
Submitted by: bento
Diffstat (limited to 'misc/instant-server')
-rw-r--r-- | misc/instant-server/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/misc/instant-server/Makefile b/misc/instant-server/Makefile index 9e8b06b4ea7d..51ccc954e454 100644 --- a/misc/instant-server/Makefile +++ b/misc/instant-server/Makefile @@ -14,13 +14,13 @@ MASTER_SITE_SUBDIR= pub/instant-server MAINTAINER= grog@lemis.com RUN_DEPENDS= ${LOCALBASE}/sbin/postfix:${PORTSDIR}/mail/postfix \ - cvsupd:${PORTSDIR}/net/cvsupd-bin \ - isc-dhcp3:${PORTSDIR}/net/isc-dhcp3 \ - samba:${PORTSDIR}/net/samba \ - traceroute:${PORTSDIR}/net/traceroute \ - cnews:${PORTSDIR}/news/cnews \ - apache13:${PORTSDIR}/www/apache13 \ - squid23:${PORTSDIR}/www/squid23 + ${LOCALBASE}/sbin/cvsupd:${PORTSDIR}/net/cvsupd-bin \ + ${LOCALBASE}/sbin/dhcpd:${PORTSDIR}/net/isc-dhcp3 \ + ${LOCALBASE}/sbin/smbd:${PORTSDIR}/net/samba \ + ${LOCALBASE}/sbin/traceroute:${PORTSDIR}/net/traceroute \ + cnewsdo:${PORTSDIR}/news/cnews \ + ${LOCALBASE}/sbin/httpd:${PORTSDIR}/www/apache13 \ + ${LOCALBASE}/sbin/squid:${PORTSDIR}/www/squid23 # Don't let stupid programs ask for configuration. |