diff options
author | Yoichi NAKAYAMA <yoichi@FreeBSD.org> | 2002-03-01 04:16:14 +0000 |
---|---|---|
committer | Yoichi NAKAYAMA <yoichi@FreeBSD.org> | 2002-03-01 04:16:14 +0000 |
commit | ddcb5293b500b7d82448746c7b1dfcad91c007dd (patch) | |
tree | 32488ca5eaa1b778c56e77299dc5dc8f30c0a281 /textproc/coco/files/patch-lib-src_Makefile.in | |
parent | add gps 0.9.1 (diff) |
Add package includes coco & m2ps.
Those commands are included in mule-2.3 but not integrated in
emacs-2x distribution even after merging MULE feature.
(repo-copied from editors/mule-common)
PR: ports/33287
Submitted by: Teruaki Ata <PFA03027@nifty.ne.jp>
Notes
Notes:
svn path=/head/; revision=55366
Diffstat (limited to 'textproc/coco/files/patch-lib-src_Makefile.in')
-rw-r--r-- | textproc/coco/files/patch-lib-src_Makefile.in | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/textproc/coco/files/patch-lib-src_Makefile.in b/textproc/coco/files/patch-lib-src_Makefile.in new file mode 100644 index 000000000000..b5fc947e7658 --- /dev/null +++ b/textproc/coco/files/patch-lib-src_Makefile.in @@ -0,0 +1,57 @@ +diff -rBbc lib-src/Makefile.in lib-src/Makefile.in +*** lib-src/Makefile.in Tue Aug 18 14:48:25 1998 +--- lib-src/Makefile.in Sat Dec 29 03:49:52 2001 +*************** +*** 92,97 **** +--- 92,100 ---- + # Things that a user might actually run, + # which should be installed in bindir. + INSTALLABLES = etags ctags emacsclient b2m m2ps coco ++ INSTALLABLES_COCO = coco ++ INSTALLABLES_M2PS = m2ps ++ INSTALLABLE_SCRIPTS_M2PS = any2ps + INSTALLABLE_SCRIPTS = rcs-checkin any2ps + + # Things that Emacs runs internally, or during the build process, +*************** +*** 266,276 **** +--- 269,307 ---- + chmod a+rx ${bindir}/$${file}; \ + done + ++ install-coco: all ++ @echo ++ @echo "Installing utility coco for users to run." ++ for file in ${INSTALLABLES_COCO} ; do \ ++ $(INSTALL_PROGRAM) $${file} ${bindir}/$${file} ; \ ++ chmod a+rx ${bindir}/$${file}; \ ++ done ++ ++ install-m2ps: all ++ @echo ++ @echo "Installing utilities, m2ps and any2ps, for users to run." ++ for file in ${INSTALLABLES_M2PS} ; do \ ++ $(INSTALL_PROGRAM) $${file} ${bindir}/$${file} ; \ ++ chmod a+rx ${bindir}/$${file}; \ ++ done ++ for file in ${INSTALLABLE_SCRIPTS_M2PS} ; do \ ++ $(INSTALL) ${srcdir}/$${file} ${bindir}/$${file} ; \ ++ chmod a+rx ${bindir}/$${file}; \ ++ done ++ + uninstall: + (cd ${bindir}; \ + rm -f ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}) + (cd ${archlibdir}; \ + rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}) ++ ++ uninstall-coco: ++ (cd ${bindir}; \ ++ rm -f ${INSTALLABLES_COCO}) ++ ++ uninstall-m2ps: ++ (cd ${bindir}; \ ++ rm -f ${INSTALLABLES_M2PS} ${INSTALLABLE_SCRIPTS_M2PS}) + + mostlyclean: + -rm -f core *.o |