diff options
Diffstat (limited to 'net/zephyr/Makefile')
-rw-r--r-- | net/zephyr/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/zephyr/Makefile b/net/zephyr/Makefile index 0634cca6a987..8c77b910dd0f 100644 --- a/net/zephyr/Makefile +++ b/net/zephyr/Makefile @@ -3,29 +3,29 @@ # Date created: 1-Aug-1995 # Whom: pst # -# $Id: Makefile,v 1.2 1995/11/27 04:06:01 asami Exp $ +# $Id: Makefile,v 1.3 1996/11/07 17:49:38 pst Exp $ # DISTNAME= zephyr-2.0.4 -CATEGORIES+= net +CATEGORIES= net MASTER_SITES= ftp://athena-dist.mit.edu/pub/ATHENA/zephyr/dist/ -HAS_CONFIGURE= yes .if exists(/usr/lib/libkrb.a) && defined(MAKE_EBONES) CONFIGURE_ARGS="--with-krb4" .endif -ZEPHYR_RCDIR= ${PREFIX}/etc/rc.d +HAS_CONFIGURE= yes +ZEPHYR_RCDIR= ${PREFIX}/etc/rc.d ZEPHYR_DOCDIR= ${PREFIX}/share/doc/zephyr ZEPHYR_DOCS= INSTALL NOTES OPERATING README USING post-install: ${INSTALL} -c -m 755 -o bin -g bin ${FILESDIR}/zhm.sh ${ZEPHYR_RCDIR} - -test -d ${ZEPHYR_DOCDIR} || mkdir -p ${ZEPHYR_DOCDIR} + ${MKDIR} ${ZEPHYR_DOCDIR} for file in ${ZEPHYR_DOCS} ; do \ ${INSTALL} -c ${WRKSRC}/$$file ${ZEPHYR_DOCDIR} ; \ done - -test -d ${ZEPHYR_RCDIR} || mkdir -p ${ZEPHYR_RCDIR} + ${MKDIR} ${ZEPHYR_RCDIR} .include <bsd.port.mk> |