diff options
author | jlam <jlam> | 2008-02-29 22:23:50 +0000 |
---|---|---|
committer | jlam <jlam> | 2008-02-29 22:23:50 +0000 |
commit | 899a16154abc31ac52cb30dc7d952578f62181e8 (patch) | |
tree | dc79c6a792ee2c8642a174897b9d2670f4376750 /shells | |
parent | dbdaf05b48eef50eb8eb2611e36dc3fc4e675534 (diff) | |
download | pkgsrc-899a16154abc31ac52cb30dc7d952578f62181e8.tar.gz |
+ Teach shells/tcsh to use the terminal library required by pkgsrc
instead of self-detecting what's in the base system.
Bump the PKGREVISION to 1.
Diffstat (limited to 'shells')
-rw-r--r-- | shells/tcsh/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/shells/tcsh/Makefile b/shells/tcsh/Makefile index 0bdd74a72ff..6d10075ac96 100644 --- a/shells/tcsh/Makefile +++ b/shells/tcsh/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.59 2008/01/03 23:21:41 heinz Exp $ +# $NetBSD: Makefile,v 1.60 2008/02/29 22:23:50 jlam Exp $ # DISTNAME= tcsh-6.15.00 +PKGREVISION= 1 CATEGORIES= shells MASTER_SITES= ftp://ftp.astron.com/pub/tcsh/ \ ftp://ftp.gw.com/pub/unix/tcsh/ \ @@ -29,6 +30,8 @@ OS_VER_cmd= ${ECHO} ${OS_VERSION} | ${SED} -e 's|5\.|2.|' LOWER_OPSYS= solaris${OS_VER_cmd:sh} .endif +CONFIGURE_ENV+= ac_cv_search_tgetent=${BUILDLINK_LDADD.termlib:Q} + PKG_SHELL?= bin/tcsh INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 @@ -86,4 +89,5 @@ post-install: done; \ fi +.include "../../mk/termlib.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |