diff options
author | agc <agc@pkgsrc.org> | 2000-09-28 12:41:36 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2000-09-28 12:41:36 +0000 |
commit | 30575e64d74c355526f42d74199391fff58a204b (patch) | |
tree | af8bf37efcd211203362a2ba66e11a93b3d20125 /devel | |
parent | 52f0b762032e7b927a76af5d3a3833c767b231ce (diff) | |
download | pkgsrc-30575e64d74c355526f42d74199391fff58a204b.tar.gz |
Revert previous change, which was tested with the wrong version of
bsd.pkg.mk and bsd.prefs.mk.. Pointed out by Thomas Klausner.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/cscope/Makefile | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/devel/cscope/Makefile b/devel/cscope/Makefile index ce7fd9aa79c..810c1fcf987 100644 --- a/devel/cscope/Makefile +++ b/devel/cscope/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2000/09/27 14:34:12 agc Exp $ +# $NetBSD: Makefile,v 1.11 2000/09/28 12:41:36 agc Exp $ DISTNAME= cscope-15.0bl2 PKGNAME= cscope-15.0.2 @@ -11,17 +11,21 @@ HOMEPAGE= http://cscope.sourceforge.net/ GNU_CONFIGURE= YES USE_CURSES= YES +post-extract: cscope-post-extract + .include "../../mk/bsd.pkg.mk" .if ${NEED_NCURSES} == "YES" CONFIGURE_ARGS+=--with-ncurses=${LOCALBASE} -post-extract: +cscope-post-extract: +.for FILE in command.c display.c edit.c exec.c find.c help.c input.c main.c @cd ${WRKSRC}/src; \ - for f in command.c display.c edit.c exec.c find.c help.c \ - input.c main.c; do \ - ${MV} $$f $$f.orig; \ - ${SED} "s/^#include <curses.h>/#include <ncurses.h>/" \ - $$f.orig > $$f; \ - done + ${MV} ${FILE} ${FILE}.orig; \ + ${SED} "s/^#include <curses.h>/#include <ncurses.h>/" \ + < ${FILE}.orig > ${FILE} +.endfor +.else +cscope-post-extract: + ${TRUE} .endif |