diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2002-10-29 20:58:39 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2002-10-29 20:58:39 +0000 |
commit | 671834320cd4d55b35d706337c19b1c6af94163b (patch) | |
tree | dfd7cff3ae8584d95fc7e9048c0e7fb096806421 /emulators/vice | |
parent | update MASTER_SITES (diff) |
get rid of USE_REINPLACE
Notes
Notes:
svn path=/head/; revision=69126
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 b5c901d107ec..8236ecc54799 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 |