diff options
author | marino <marino@pkgsrc.org> | 2012-05-22 08:46:53 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2012-05-22 08:46:53 +0000 |
commit | d57bbcb0a2a7bf83122ffaffb863d3ad4dcba78b (patch) | |
tree | 4ae487d84c9429dd5674f5b1024866822f59efc8 | |
parent | a92ef78580482b0fff00935c53a13e0c1b1a31fc (diff) | |
download | pkgsrc-d57bbcb0a2a7bf83122ffaffb863d3ad4dcba78b.tar.gz |
shells/standalone-tcsh: Mark NOT-FOR-DRAGONFLY
This package will install tcsh in the /bin directory (not ${LOCALBASE}/bin).
DragonFly already has tcsh in the base system, so this package will replace
it with no ability to restore the system version. This is not desired.
shells/tcsh still works should there be any need for a pkgsrc version installed
at ${LOCALBASE}/bin.
-rw-r--r-- | shells/standalone-tcsh/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/shells/standalone-tcsh/Makefile b/shells/standalone-tcsh/Makefile index 8ee8cf66630..121ee8d629f 100644 --- a/shells/standalone-tcsh/Makefile +++ b/shells/standalone-tcsh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2009/04/08 22:43:25 joerg Exp $ +# $NetBSD: Makefile,v 1.23 2012/05/22 08:46:53 marino Exp $ # # FIXME: This is because of PREFIX=/ below. @@ -9,6 +9,11 @@ PKGNAME= standalone-${DISTNAME} WRKSRC= ${WRKDIR}/${DISTNAME} PATCHDIR= ${.CURDIR}/../../shells/tcsh/patches +# DragonFly already has native /bin/tcsh +# This package is not restricted to ${LOCALBASE} and will replace system tcsh +# Instead, see shells/tcsh which installs at ${LOCALBASE}/bin/tcsh +NOT_FOR_PLATFORM+= DragonFly-*-* + .include "../../shells/tcsh/Makefile" INSTALLATION_DIRS+= usr/share/man/man1 |