diff options
author | agc <agc@pkgsrc.org> | 2001-07-27 19:52:45 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-07-27 19:52:45 +0000 |
commit | 7cef91d7733eeadcbd84b286a41b5f34cd4f1c40 (patch) | |
tree | aeacc74d89cb3b1e81e06621cf19f05e61d20816 /shells/standalone-tcsh/Makefile | |
parent | 3a3f1919cec93fae5590c7730f5217111dc600c4 (diff) | |
download | pkgsrc-7cef91d7733eeadcbd84b286a41b5f34cd4f1c40.tar.gz |
Add a standalone version of tcsh, which installs a statically-linked
version of tcsh into /bin, but still using most of the standard tcsh
package framework, for ease of maintenance.
Diffstat (limited to 'shells/standalone-tcsh/Makefile')
-rw-r--r-- | shells/standalone-tcsh/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/shells/standalone-tcsh/Makefile b/shells/standalone-tcsh/Makefile new file mode 100644 index 00000000000..b9733243f3a --- /dev/null +++ b/shells/standalone-tcsh/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/07/27 19:52:45 agc Exp $ +# + +NO_MTREE= YES + +.include "../../shells/tcsh/Makefile" + +WRKSRC:= ${WRKDIR}/${PKGNAME} +PKGNAME:= standalone-${PKGNAME} +COMMENT:= Standlone version of the ${COMMENT} + +LDFLAGS+= -static +LOCALBASE= / +NLSDIR= usr/share/nls +CONFIGURE_ARGS= --prefix=${PREFIX} --bindir=/bin +CONFIGURE_ARGS+= --mandir=/usr/share/man + +DISTINFO_FILE= ${.CURDIR}/../../shells/tcsh/distinfo +PATCHDIR= ${.CURDIR}/../../shells/tcsh/patches |