summaryrefslogtreecommitdiff
path: root/net/zephyr
diff options
context:
space:
mode:
authorPaul Traina <pst@FreeBSD.org>1996-11-07 17:49:43 +0000
committerPaul Traina <pst@FreeBSD.org>1996-11-07 17:49:43 +0000
commit8e121723dd33769db2e202e62c1defcd4cd3fb77 (patch)
treec6df0df7a543c92f0c005c2081d2bc557854894f /net/zephyr
parentOn system without ptex2 and platex, after doing ``make install'' in (diff)
Update to zephyr 2.0.4
Notes
Notes: svn path=/head/; revision=4340
Diffstat (limited to 'net/zephyr')
-rw-r--r--net/zephyr/Makefile14
-rw-r--r--net/zephyr/distinfo2
-rw-r--r--net/zephyr/files/zhm.sh7
3 files changed, 17 insertions, 6 deletions
diff --git a/net/zephyr/Makefile b/net/zephyr/Makefile
index f1c06ce52e80..0634cca6a987 100644
--- a/net/zephyr/Makefile
+++ b/net/zephyr/Makefile
@@ -1,12 +1,12 @@
# New ports collection makefile for: zephry
-# Version required: 2.0.2
+# Version required: 2.0.4
# Date created: 1-Aug-1995
# Whom: pst
#
-# $Id: Makefile,v 1.1.1.1 1995/08/02 05:20:33 pst Exp $
+# $Id: Makefile,v 1.2 1995/11/27 04:06:01 asami Exp $
#
-DISTNAME= zephyr-2.0.2
+DISTNAME= zephyr-2.0.4
CATEGORIES+= net
MASTER_SITES= ftp://athena-dist.mit.edu/pub/ATHENA/zephyr/dist/
HAS_CONFIGURE= yes
@@ -15,13 +15,17 @@ HAS_CONFIGURE= yes
CONFIGURE_ARGS="--with-krb4"
.endif
-ZEPHYR_DOCDIR= ${PREFIX}/etc/zephyr/doc
+ZEPHYR_RCDIR= ${PREFIX}/etc/rc.d
+
+ZEPHYR_DOCDIR= ${PREFIX}/share/doc/zephyr
ZEPHYR_DOCS= INSTALL NOTES OPERATING README USING
post-install:
- -test -d ${ZEPHYR_DOCDIR} || mkdir ${ZEPHYR_DOCDIR}
+ ${INSTALL} -c -m 755 -o bin -g bin ${FILESDIR}/zhm.sh ${ZEPHYR_RCDIR}
+ -test -d ${ZEPHYR_DOCDIR} || mkdir -p ${ZEPHYR_DOCDIR}
for file in ${ZEPHYR_DOCS} ; do \
${INSTALL} -c ${WRKSRC}/$$file ${ZEPHYR_DOCDIR} ; \
done
+ -test -d ${ZEPHYR_RCDIR} || mkdir -p ${ZEPHYR_RCDIR}
.include <bsd.port.mk>
diff --git a/net/zephyr/distinfo b/net/zephyr/distinfo
index bbe50a49f97b..1de9ac3bb3ea 100644
--- a/net/zephyr/distinfo
+++ b/net/zephyr/distinfo
@@ -1 +1 @@
-MD5 (zephyr-2.0.2.tar.gz) = 21500bf20bc9e371b7202615efcfaad8
+MD5 (zephyr-2.0.4.tar.gz) = 866c287c45da2fa353484297ad570cf4
diff --git a/net/zephyr/files/zhm.sh b/net/zephyr/files/zhm.sh
new file mode 100644
index 000000000000..155eefc2f349
--- /dev/null
+++ b/net/zephyr/files/zhm.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+PREFIX=${PREFIX-/usr/local}
+
+if [ -x ${PREFIX}/sbin/zhm -a -f ${PREFIX}/etc/zephyr/server.list ] ; then
+ PATH=${PREFIX}/sbin:${PREFIX}/bin:$PATH ; export PATH
+ zhm `cat ${PREFIX}/etc/zephyr/server.list` && echo -n ' zhm'
+fi