diff options
author | marcus <marcus@FreeBSD.org> | 2003-11-15 18:21:14 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-11-15 18:21:14 +0000 |
commit | 8597e47e4b6614e659f114abd2fcd86aa02b5e3a (patch) | |
tree | abd1b608afdcac786ba3b7af013e69d3b9b8bda6 /editors/gnotepad+ | |
parent | 5383bc5299fdd96d621ca61d863bb4db4615851a (diff) | |
download | FreeBSD-ports-8597e47e4b6614e659f114abd2fcd86aa02b5e3a.zip FreeBSD-ports-8597e47e4b6614e659f114abd2fcd86aa02b5e3a.tar.gz |
unPERLify by using REINPLACE_CMD where appropriate.
PR: 48248
Submitted by: Simon 'portlint' Schubert <corecode@corecode.ath.cx>
Diffstat (limited to 'editors/gnotepad+')
-rw-r--r-- | editors/gnotepad+/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/gnotepad+/Makefile b/editors/gnotepad+/Makefile index 6335fd8..bebb134 100644 --- a/editors/gnotepad+/Makefile +++ b/editors/gnotepad+/Makefile @@ -21,6 +21,7 @@ COMMENT= Simple GTK-based text/HTML editor DOCVERSION= 1.2.0 USE_X_PREFIX= yes +USE_REINPLACE= yes USE_XPM= yes WANT_GNOME= yes USE_GNOME= gtk12 @@ -33,7 +34,7 @@ MAN1= gnp.1 .include <bsd.port.pre.mk> post-patch: - @${PERL} -pi.fbsd -e 's|use_gtkhtml=yes|use_gtkhtml=no|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|\(use_gtkhtml=\)yes|\1no|g' ${WRKSRC}/configure.in .if !defined(NOPORTDOCS) post-extract: |