diff options
author | pst <pst@FreeBSD.org> | 1996-11-08 01:49:43 +0800 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1996-11-08 01:49:43 +0800 |
commit | 44b1a9523018a792b8e6c76995af45cba9aedfc0 (patch) | |
tree | 001e6fcb98bb2b84f87a2c85a3277c79aff97a99 /net | |
parent | 5a8ec2483db87375bf98b81b9e7b8062922b4088 (diff) | |
download | freebsd-ports-gnome-44b1a9523018a792b8e6c76995af45cba9aedfc0.tar.gz freebsd-ports-gnome-44b1a9523018a792b8e6c76995af45cba9aedfc0.tar.zst freebsd-ports-gnome-44b1a9523018a792b8e6c76995af45cba9aedfc0.zip |
Update to zephyr 2.0.4
Diffstat (limited to 'net')
-rw-r--r-- | net/zephyr/Makefile | 14 | ||||
-rw-r--r-- | net/zephyr/distinfo | 2 | ||||
-rw-r--r-- | net/zephyr/files/zhm.sh | 7 |
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 |