mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 02:35:23 +03:00
Originally, the patch installed everything to the same file, because I misunderstood how `install` actually works. This commit does it correctly.
113 lines
6.3 KiB
Diff
113 lines
6.3 KiB
Diff
--- tf-50b8/unix/unix.mak
|
|
+++ tf-50b8.new/unix/unix.mak
|
|
@@ -87,57 +87,65 @@
|
|
-test -z "$(STRIP)" || $(STRIP) tf$(X) || true
|
|
|
|
PREFIXDIRS:
|
|
- test -d "$(bindir)" || mkdir $(bindir)
|
|
- test -d "$(datadir)" || mkdir $(datadir)
|
|
|
|
install_TF $(TF): tf$(X) $(BUILDERS)
|
|
- -@rm -f $(TF)
|
|
- cp tf$(X) $(TF)
|
|
- chmod $(MODE) $(TF)
|
|
+ install -Dm755 tf$(X) $(DESTDIR)$(bindir)/tf
|
|
|
|
SYMLINK $(SYMLINK): $(TF)
|
|
- test -z "$(SYMLINK)" || { rm -f $(SYMLINK) && ln -s $(TF) $(SYMLINK); }
|
|
|
|
LIBRARY $(TF_LIBDIR): ../tf-lib/tf-help ../tf-lib/tf-help.idx
|
|
- @echo '## Creating library directory...'
|
|
-# @# Overly simplified shell commands, to avoid problems on ultrix
|
|
- -@test -n "$(TF_LIBDIR)" || echo "TF_LIBDIR is undefined."
|
|
- test -n "$(TF_LIBDIR)"
|
|
- test -d "$(TF_LIBDIR)" || mkdir $(TF_LIBDIR)
|
|
- -@test -d "$(TF_LIBDIR)" || echo "Can't make $(TF_LIBDIR) directory. See if"
|
|
- -@test -d "$(TF_LIBDIR)" || echo "there is already a file with that name."
|
|
- test -d "$(TF_LIBDIR)"
|
|
-#
|
|
-# @#rm -f $(TF_LIBDIR)/*; # wrong: this would remove local.tf, etc.
|
|
- @echo '## Copying library files...'
|
|
- cd ../tf-lib; \
|
|
- for f in *; do test -f $$f && files="$$files $$f"; done; \
|
|
- ( cd $(TF_LIBDIR); rm -f $$files tf.help tf.help.index; ); \
|
|
- cp $$files $(TF_LIBDIR); \
|
|
- cd $(TF_LIBDIR); \
|
|
- chmod $(MODE) $$files; chmod ugo-wx $$files
|
|
- -rm -f $(TF_LIBDIR)/CHANGES
|
|
- cp ../CHANGES $(TF_LIBDIR)
|
|
- chmod $(MODE) $(TF_LIBDIR)/CHANGES; chmod ugo-wx $(TF_LIBDIR)/CHANGES
|
|
- chmod $(MODE) $(TF_LIBDIR)
|
|
- -@cd $(TF_LIBDIR); old=`ls replace.tf 2>/dev/null`; \
|
|
- if [ -n "$$old" ]; then \
|
|
- echo "## WARNING: Obsolete files found in $(TF_LIBDIR): $$old"; \
|
|
- fi
|
|
- @echo '## Creating links so old library names still work...'
|
|
-# @# note: ln -sf isn't portable.
|
|
- @cd $(TF_LIBDIR); \
|
|
- rm -f bind-bash.tf; ln -s kb-bash.tf bind-bash.tf; \
|
|
- rm -f bind-emacs.tf; ln -s kb-emacs.tf bind-emacs.tf; \
|
|
- rm -f completion.tf; ln -s complete.tf completion.tf; \
|
|
- rm -f factorial.tf; ln -s factoral.tf factorial.tf; \
|
|
- rm -f file-xfer.tf; ln -s filexfer.tf file-xfer.tf; \
|
|
- rm -f local.tf.sample; ln -s local-eg.tf local.tf.sample; \
|
|
- rm -f pref-shell.tf; ln -s psh.tf pref-shell.tf; \
|
|
- rm -f space_page.tf; ln -s spc-page.tf space_page.tf; \
|
|
- rm -f speedwalk.tf; ln -s spedwalk.tf speedwalk.tf; \
|
|
- rm -f stack_queue.tf; ln -s stack-q.tf stack_queue.tf; \
|
|
- rm -f worldqueue.tf; ln -s world-q.tf worldqueue.tf;
|
|
+ install -Dm644 ../tf-lib/lisp.tf $(DESTDIR)$(datadir)/tf-lib/lisp.tf
|
|
+ install -Dm644 ../tf-lib/hanoi.tf $(DESTDIR)$(datadir)/tf-lib/hanoi.tf
|
|
+ install -Dm644 ../tf-lib/spell.tf $(DESTDIR)$(datadir)/tf-lib/spell.tf
|
|
+ install -Dm644 ../tf-lib/spedwalk.tf $(DESTDIR)$(datadir)/tf-lib/spedwalk.tf
|
|
+ install -Dm644 ../tf-lib/kb-emacs.tf $(DESTDIR)$(datadir)/tf-lib/kb-emacs.tf
|
|
+ install -Dm644 ../tf-lib/tf-help.idx $(DESTDIR)$(datadir)/tf-lib/tf-help.idx
|
|
+ install -Dm644 ../tf-lib/tools.tf $(DESTDIR)$(datadir)/tf-lib/tools.tf
|
|
+ install -Dm644 ../tf-lib/watch.tf $(DESTDIR)$(datadir)/tf-lib/watch.tf
|
|
+ install -Dm644 ../tf-lib/kb_badterm.tf $(DESTDIR)$(datadir)/tf-lib/kb_badterm.tf
|
|
+ install -Dm644 ../tf-lib/world-q.tf $(DESTDIR)$(datadir)/tf-lib/world-q.tf
|
|
+ install -Dm644 ../tf-lib/changes.tf $(DESTDIR)$(datadir)/tf-lib/changes.tf
|
|
+ install -Dm644 ../tf-lib/stack-q.tf $(DESTDIR)$(datadir)/tf-lib/stack-q.tf
|
|
+ install -Dm644 ../tf-lib/factoral.tf $(DESTDIR)$(datadir)/tf-lib/factoral.tf
|
|
+ install -Dm644 ../tf-lib/cylon.tf $(DESTDIR)$(datadir)/tf-lib/cylon.tf
|
|
+ install -Dm644 ../tf-lib/quoter.tf $(DESTDIR)$(datadir)/tf-lib/quoter.tf
|
|
+ install -Dm644 ../tf-lib/psh.tf $(DESTDIR)$(datadir)/tf-lib/psh.tf
|
|
+ install -Dm644 ../tf-lib/textutil.tf $(DESTDIR)$(datadir)/tf-lib/textutil.tf
|
|
+ install -Dm644 ../tf-lib/finger.tf $(DESTDIR)$(datadir)/tf-lib/finger.tf
|
|
+ install -Dm644 ../tf-lib/savehist.tf $(DESTDIR)$(datadir)/tf-lib/savehist.tf
|
|
+ install -Dm644 ../tf-lib/textencode.tf $(DESTDIR)$(datadir)/tf-lib/textencode.tf
|
|
+ install -Dm644 ../tf-lib/spc-page.tf $(DESTDIR)$(datadir)/tf-lib/spc-page.tf
|
|
+ install -Dm644 ../tf-lib/teraterm.keyboard.cnf $(DESTDIR)$(datadir)/tf-lib/teraterm.keyboard.cnf
|
|
+ install -Dm644 ../tf-lib/testcolor.tf $(DESTDIR)$(datadir)/tf-lib/testcolor.tf
|
|
+ install -Dm644 ../tf-lib/tintin.tf $(DESTDIR)$(datadir)/tf-lib/tintin.tf
|
|
+ install -Dm644 ../tf-lib/grep.tf $(DESTDIR)$(datadir)/tf-lib/grep.tf
|
|
+ install -Dm644 ../tf-lib/tfrc $(DESTDIR)$(datadir)/tf-lib/tfrc
|
|
+ install -Dm644 ../tf-lib/rwho.tf $(DESTDIR)$(datadir)/tf-lib/rwho.tf
|
|
+ install -Dm644 ../tf-lib/alias.tf $(DESTDIR)$(datadir)/tf-lib/alias.tf
|
|
+ install -Dm644 ../tf-lib/kbbind.tf $(DESTDIR)$(datadir)/tf-lib/kbbind.tf
|
|
+ install -Dm644 ../tf-lib/complete.tf $(DESTDIR)$(datadir)/tf-lib/complete.tf
|
|
+ install -Dm644 ../tf-lib/kbregion.tf $(DESTDIR)$(datadir)/tf-lib/kbregion.tf
|
|
+ install -Dm644 ../tf-lib/color.tf $(DESTDIR)$(datadir)/tf-lib/color.tf
|
|
+ install -Dm644 ../tf-lib/kb-bash.tf $(DESTDIR)$(datadir)/tf-lib/kb-bash.tf
|
|
+ install -Dm644 ../tf-lib/kbstack.tf $(DESTDIR)$(datadir)/tf-lib/kbstack.tf
|
|
+ install -Dm644 ../tf-lib/filexfer.tf $(DESTDIR)$(datadir)/tf-lib/filexfer.tf
|
|
+ install -Dm644 ../tf-lib/activity_status.tf $(DESTDIR)$(datadir)/tf-lib/activity_status.tf
|
|
+ install -Dm644 ../tf-lib/tfstatus.tf $(DESTDIR)$(datadir)/tf-lib/tfstatus.tf
|
|
+ install -Dm644 ../tf-lib/relog.tf $(DESTDIR)$(datadir)/tf-lib/relog.tf
|
|
+ install -Dm644 ../tf-lib/local-eg.tf $(DESTDIR)$(datadir)/tf-lib/local-eg.tf
|
|
+ install -Dm644 ../tf-lib/stdlib.tf $(DESTDIR)$(datadir)/tf-lib/stdlib.tf
|
|
+ install -Dm644 ../tf-lib/at.tf $(DESTDIR)$(datadir)/tf-lib/at.tf
|
|
+ install -Dm644 ../tf-lib/tick.tf $(DESTDIR)$(datadir)/tf-lib/tick.tf
|
|
+ install -Dm644 ../tf-lib/kb-os2.tf $(DESTDIR)$(datadir)/tf-lib/kb-os2.tf
|
|
+ install -Dm644 ../tf-lib/kbfunc.tf $(DESTDIR)$(datadir)/tf-lib/kbfunc.tf
|
|
+ install -Dm644 ../tf-lib/pcmd.tf $(DESTDIR)$(datadir)/tf-lib/pcmd.tf
|
|
+ install -Dm644 ../tf-lib/map.tf $(DESTDIR)$(datadir)/tf-lib/map.tf
|
|
+ install -Dm644 ../tf-lib/activity_status2.tf $(DESTDIR)$(datadir)/tf-lib/activity_status2.tf
|
|
+ install -Dm644 ../tf-lib/kb-old.tf $(DESTDIR)$(datadir)/tf-lib/kb-old.tf
|
|
+ install -Dm644 ../tf-lib/tr.tf $(DESTDIR)$(datadir)/tf-lib/tr.tf
|
|
+ install -Dm644 ../CHANGES $(DESTDIR)$(datadir)/tf-lib/CHANGES
|
|
+ install -Dm644 ../README $(DESTDIR)$(datadir)/tf-lib/README
|
|
+ install -Dm644 ../tf-lib/examples.old $(DESTDIR)$(datadir)/tf-lib/examples.old
|
|
|
|
makehelp: makehelp.c
|
|
$(CC) $(CFLAGS) -o makehelp makehelp.c
|