summaryrefslogtreecommitdiff
path: root/devel/fam
diff options
context:
space:
mode:
authorAlan Eldridge <alane@FreeBSD.org>2002-09-06 23:26:09 +0000
committerAlan Eldridge <alane@FreeBSD.org>2002-09-06 23:26:09 +0000
commit2414faede061d42a2bd7eacc52cacaa7f4abe482 (patch)
tree13291348fd357b1d27fdd8cfbe4d637e57ab79dd /devel/fam
parentUpdate to bogosort-0.4.1; Ulrik accepted my files/patch-bogosort.c fix, (diff)
Do not support running fam standalone (started from /usr/local/etc/rc.d)
anymore.
Notes
Notes: svn path=/head/; revision=65745
Diffstat (limited to 'devel/fam')
-rw-r--r--devel/fam/Makefile2
-rw-r--r--devel/fam/files/fam.sh.sample21
2 files changed, 1 insertions, 22 deletions
diff --git a/devel/fam/Makefile b/devel/fam/Makefile
index 1fef217cc01b..f51a67ec1912 100644
--- a/devel/fam/Makefile
+++ b/devel/fam/Makefile
@@ -7,6 +7,7 @@
PORTNAME= fam
PORTVERSION= 2.6.9
+PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= ftp://oss.sgi.com/projects/fam/download/
PATCH_SITES= ftp://oss.sgi.com/projects/fam/download/patches/
@@ -30,7 +31,6 @@ pre-configure:
<${WRKSRC}/Makefile.am.orig >${WRKSRC}/Makefile.am
post-install:
- @${INSTALL_SCRIPT} -m 751 ${FILESDIR}/fam.sh.sample ${PREFIX}/etc/rc.d/fam.sh.sample
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
diff --git a/devel/fam/files/fam.sh.sample b/devel/fam/files/fam.sh.sample
deleted file mode 100644
index 3ed1a018563f..000000000000
--- a/devel/fam/files/fam.sh.sample
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
- echo "$0: Cannot determine the PREFIX" >&2
- exit 1
-fi
-
-case "$1" in
-start)
- [ -x ${PREFIX}/bin/fam ] && ( ${PREFIX}/bin/fam -T 0 & ) \
- && echo -n ' fam'
- ;;
-stop)
- killall fam && echo -n ' fam'
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- ;;
-esac
-
-exit 0