diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-04 17:11:03 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-04 17:11:03 +0000 |
commit | 7f1244e58cb0c7ea562a022a8f4d55967b9f3bea (patch) | |
tree | 7768f36606f904f67ef728962b4b4ecd9caff1ad /editors/lpe | |
parent | 5e6b211c6f2a4146474ba77ccfd3ea873bf16059 (diff) | |
download | pkgsrc-7f1244e58cb0c7ea562a022a8f4d55967b9f3bea.tar.gz |
Unbreak by switching from post-patch sed with FILES_SUBST_SED to
SUBST framework, only one substitution here.
Diffstat (limited to 'editors/lpe')
-rw-r--r-- | editors/lpe/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/editors/lpe/Makefile b/editors/lpe/Makefile index c707c956a13..afe7dbc762a 100644 --- a/editors/lpe/Makefile +++ b/editors/lpe/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2005/12/29 06:21:38 jlam Exp $ +# $NetBSD: Makefile,v 1.16 2006/01/04 17:11:03 joerg Exp $ # DISTNAME= lpe-1.2.6 @@ -26,12 +26,10 @@ CONFIGURE_ENV= EXPORT_SYMBOLS_LDFLAGS="${EXPORT_SYMBOLS_LDFLAGS}" MAKE_ENV= EXPORT_SYMBOLS_LDFLAGS="${EXPORT_SYMBOLS_LDFLAGS}" CFLAGS= -DPREFIX="\"${PREFIX}\"" -post-patch: - @cd ${WRKSRC}/man && \ - for f in cs de en es; do \ - ${MV} lpe.1.$${f} lpe.1.$${f}.orig; \ - ${SED} ${FILES_SUBST_SED} lpe.1.$${f}.orig > lpe.1.$${f}; \ - done +SUBST_CLASSES+= paths +SUBST_STAGE.paths= post-patch +SUBST_FILES.paths= man/lpe.1.cs man/lpe.1.de man/lpe.1.en man/lpe.1.es +SUBST_SED.paths= -e 's,@PREFIX@,${PREFIX},' .include "../../devel/libslang/buildlink3.mk" |