diff options
author | agc <agc@pkgsrc.org> | 1998-02-27 10:30:16 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-02-27 10:30:16 +0000 |
commit | 30c32337884a9ec7db17d8f27a246a62b13ccb08 (patch) | |
tree | acac9370c4b1b654d0f6ceb1ed849cbf7e519b26 /net/zephyr | |
parent | fb4beda1eb10433f3a89adbff3b8c11dd2e0386e (diff) | |
download | pkgsrc-30c32337884a9ec7db17d8f27a246a62b13ccb08.tar.gz |
Use the Makefile from FreeBSD for now.
Diffstat (limited to 'net/zephyr')
-rw-r--r-- | net/zephyr/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net/zephyr/Makefile b/net/zephyr/Makefile new file mode 100644 index 00000000000..4b9b3d9302f --- /dev/null +++ b/net/zephyr/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: zephyr +# Version required: 2.0.4 +# Date created: 1-Aug-1995 +# Whom: pst +# +# FreeBSD Id: Makefile,v 1.7 1997/07/10 15:50:55 pst Exp +# + +DISTNAME= zephyr-2.0.4 +CATEGORIES= athena +MASTER_SITES= ftp://athena-dist.mit.edu/pub/ATHENA/zephyr/dist/ + +MAINTAINER= ports@FreeBSD.org + +.if exists(/usr/lib/libkrb.a) && defined(MAKE_EBONES) +CONFIGURE_ARGS="--with-krb4" +.endif + +HAS_CONFIGURE= yes +MAN1= zephyr.1 xzwrite.1 zaway.1 zctl.1 zleave.1 zlocate.1 \ + zmailnotify.1 znol.1 zwgc.1 zwrite.1 +MAN8= syslogd.8 zpopnotify.8 zshutdown_notify.8 zstat.8 \ + zephyrd.8 zhm.8 + +ZEPHYR_RCDIR= ${PREFIX}/etc/rc.d +ZEPHYR_DOCDIR= ${PREFIX}/share/doc/zephyr +ZEPHYR_DOCS= INSTALL NOTES OPERATING README USING + +post-install: + ${MKDIR} ${ZEPHYR_RCDIR} + ${INSTALL_SCRIPT} ${FILESDIR}/zhm.sh ${ZEPHYR_RCDIR} +.if !defined(NOPORTDOCS) + ${MKDIR} ${ZEPHYR_DOCDIR} + for file in ${ZEPHYR_DOCS} ; do \ + ${INSTALL_DATA} ${WRKSRC}/$$file ${ZEPHYR_DOCDIR} ; \ + done +.endif + +.include <bsd.port.mk> |