diff options
author | dinoex <dinoex@FreeBSD.org> | 2002-10-29 20:58:39 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2002-10-29 20:58:39 +0000 |
commit | 70b6b70092d47e1933c56f8e1bba548156b6a65c (patch) | |
tree | 2e71e88e81990f207c126675316e66ee5a19030e /emulators/vice | |
parent | d2581597383638139988acbaf4b5288a5346da7b (diff) | |
download | FreeBSD-ports-70b6b70092d47e1933c56f8e1bba548156b6a65c.zip FreeBSD-ports-70b6b70092d47e1933c56f8e1bba548156b6a65c.tar.gz |
get rid of USE_REINPLACE
Diffstat (limited to 'emulators/vice')
-rw-r--r-- | emulators/vice/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index b5c901d..8236ecc 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -15,7 +15,6 @@ RESTRICTED= ROMs are copyrighted by Commodore Business Machines NO_CDROM= ${RESTRICTED} NO_PACKAGE= ${RESTRICTED} -USE_REINPLACE= yes USE_XPM= yes WANT_GNOME= yes GNU_CONFIGURE= yes @@ -45,7 +44,9 @@ post-extract: @${RM} -f ${WRKSRC}/doc/vice.info* post-patch: - @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/man/vice.1 + @${MV} ${WRKSRC}/man/vice.1 ${WRKSRC}/man/vice.1.sed + ${SED} -e "s=%%PREFIX%%=${PREFIX}=g" \ + ${WRKSRC}/man/vice.1.sed > ${WRKSRC}/man/vice.1 post-install: @${LN} -sf vice_toc.html ${DOCSDIR}/index.html |