diff options
author | tron <tron@pkgsrc.org> | 2000-07-08 12:47:02 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2000-07-08 12:47:02 +0000 |
commit | 160040fd3644b554f6ce043049ab6402a2622a4e (patch) | |
tree | 5e6a45066b4ad79cc55b966c4d3f5c9dba37773e /mail/faces/Makefile | |
parent | 81daed79fc256559a3c9334a69d28070d4ef3720 (diff) | |
download | pkgsrc-160040fd3644b554f6ce043049ab6402a2622a4e.tar.gz |
Replace "/usr/local" by "${LOCALBASE}". Fixes PR pkg/10360, pkg/10465
and pkg/10529.
Diffstat (limited to 'mail/faces/Makefile')
-rw-r--r-- | mail/faces/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mail/faces/Makefile b/mail/faces/Makefile index dff7f9ef002..ae7c3ec8cd1 100644 --- a/mail/faces/Makefile +++ b/mail/faces/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2000/05/24 09:15:57 agc Exp $ +# $NetBSD: Makefile,v 1.15 2000/07/08 12:47:02 tron Exp $ # FreeBSD Id: Makefile,v 1.5 1997/11/17 18:47:53 max Exp # @@ -8,7 +8,7 @@ MASTER_SITES= ftp://ftp.cs.indiana.edu/pub/faces/faces/ \ ftp://odie.physik2.uni-rostock.de/pub/ EXTRACT_SUFX= .tar.Z -MAINTAINER= Lars.Koeller@Uni-Bielefeld.DE +MAINTAINER= packages@netbsd.org WRKSRC= ${WRKDIR}/faces @@ -17,7 +17,9 @@ USE_X11= yes MAKE_ENV+= MKLINT=no post-configure: - @for f in ${WRKSRC}/Makefile ${WRKSRC}/faces.h ${WRKSRC}/x11.c; do \ + @cd ${WRKSRC}; \ + for f in Makefile faces.h x11.c scripts/addxface scripts/facesall \ + scripts/mkfacesindex; do \ ${MV} $$f $$f.in; \ ${SED} -e 's|@localbase@|'${LOCALBASE}'|g' \ -e 's|@x11base@|'${X11BASE}'|g' < $$f.in > $$f; \ |