diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2002-01-05 23:43:13 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2002-01-05 23:43:13 +0000 |
commit | 2025ba84eedefaef90a7e7d9eaee3f6f03181f8f (patch) | |
tree | 701fd40b4de20d4b4b0bb2d2c9b977933243c1a2 /emulators/frodo | |
parent | Update to 2.8 (diff) |
- make portlint happier
- use DOCSDIR or EXAMPLESDIR
- get rid of some INTERACTIVE scrips in news/ifmail
Notes
Notes:
svn path=/head/; revision=52636
Diffstat (limited to 'emulators/frodo')
-rw-r--r-- | emulators/frodo/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/emulators/frodo/Makefile b/emulators/frodo/Makefile index e73478d45897..f74a58c663db 100644 --- a/emulators/frodo/Makefile +++ b/emulators/frodo/Makefile @@ -40,15 +40,16 @@ do-install: ${INSTALL_DATA} "${WRKDIR}/Frodo/Frodo Logo" ${PREFIX}/libexec/frodo ${CP} "${WRKDIR}/Frodo/TkGui.tcl" ${PREFIX}/libexec/frodo ${MKDIR} ${PREFIX}/libexec/frodo/64prgs - @(${TAR} -C ${WRKDIR}/Frodo/64prgs -cf - . | ${TAR} -C ${PREFIX}/libexec/frodo/64prgs -xf -) + @${TAR} -C ${WRKDIR}/Frodo/64prgs -cf - . | \ + ${TAR} -C ${PREFIX}/libexec/frodo/64prgs -xf - post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/frodo + ${MKDIR} ${DOCSDIR} .for i in CHANGES - ${INSTALL_DATA} ${WRKDIR}/Frodo/${i} ${PREFIX}/share/doc/frodo + ${INSTALL_DATA} ${WRKDIR}/Frodo/${i} ${DOCSDIR}/ .endfor - @(${TAR} -C ${WRKDIR}/Frodo/Docs -cf - . | ${TAR} -C ${PREFIX}/share/doc/frodo -xf -) + @${TAR} -C ${WRKDIR}/Frodo/Docs -cf - . | ${TAR} -C ${DOCSDIR} -xf - .endif .include <bsd.port.mk> |