diff options
author | wiz <wiz@pkgsrc.org> | 2001-02-28 16:44:39 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-02-28 16:44:39 +0000 |
commit | 8ef26e1c4d10d4964d69770932a4afed3fde3957 (patch) | |
tree | a8767364b007dff57693cfaf3b5e40d5b82ac3ea /wm/windowmaker | |
parent | bfb46ee889d70a6aa7e40dd23fb16f8e19104e58 (diff) | |
download | pkgsrc-8ef26e1c4d10d4964d69770932a4afed3fde3957.tar.gz |
Replace some hardwired /usr/local's in some files with ${PREFIX}.
Bump version to 0.62.1nb1. Solves pkg/12021.
Diffstat (limited to 'wm/windowmaker')
-rw-r--r-- | wm/windowmaker/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/wm/windowmaker/Makefile b/wm/windowmaker/Makefile index 471ceca7239..ba7d52516cb 100644 --- a/wm/windowmaker/Makefile +++ b/wm/windowmaker/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2001/02/17 17:21:49 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2001/02/28 16:44:39 wiz Exp $ DISTNAME= WindowMaker-0.62.1 -PKGNAME= windowmaker-0.62.1 +PKGNAME= windowmaker-0.62.1nb1 CATEGORIES= x11 wm MASTER_SITES= ftp://ftp.windowmaker.org/pub/beta/srcs/ \ ftp://ftp.ics.es.osaka-u.ac.jp/pub/mirrors/WindowMaker/beta/srcs/ @@ -66,6 +66,12 @@ post-extract: do \ ${MV} $${manfile} `${ECHO} $${manfile} | ${SED} "s/1x$$/1/"`; \ done; + cd ${WRKSRC} && \ + for f in WINGs/wapplication.c WindowMaker/Defaults/WindowMaker.in \ + WPrefs.app/Paths.c WindowMaker/menu* WindowMaker/plmenu*; do \ + ${SED} "s|/usr/local|${PREFIX}|g" $$f > $$f.new && \ + ${MV} $$f.new $$f; \ + done pre-configure: cd ${WRKSRC}; ${LOCALBASE}/bin/autoconf; \ |