mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Documentation Update - install docs
- Makefile.am now installs various docs to <prefix>/share/doc/task-1.7.0 (thanks to Federico Hernandez).
This commit is contained in:
parent
a6637db232
commit
ff14f0a28a
4 changed files with 56 additions and 20 deletions
|
@ -27,9 +27,12 @@
|
||||||
other reports.
|
other reports.
|
||||||
+ New "timesheet" command displays tasks completed and started, per week,
|
+ New "timesheet" command displays tasks completed and started, per week,
|
||||||
and can display multiple weeks.
|
and can display multiple weeks.
|
||||||
+ New tab completion script, tab_completion.sh, for bash users (thanks
|
+ New tab completion script, task_completion.sh, for bash users, is installed
|
||||||
to Federico Hernandez).
|
to /usr/local/share/task (thanks to Federico Hernandez).
|
||||||
+ Added patch to allow task to build on Arch Linux (thanks to Johan Friis).
|
+ Applied patch to allow task to build on Arch Linux (thanks to Johan Friis).
|
||||||
|
+ Applied patch to fix a UUID bug on Solaris 8 (thanks to Steven de Brouwer).
|
||||||
|
+ The task man page is now installed. Try "man task" (thanks to Federico
|
||||||
|
Hernandez and P.C. Shyamshankar).
|
||||||
|
|
||||||
------ old releases ------------------------------
|
------ old releases ------------------------------
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
SUBDIRS = src
|
SUBDIRS = src
|
||||||
EXTRA_DIST = DEVELOPERS tab_completion.sh doc/man1/task.1
|
EXTRA_DIST = task_completion.sh doc/man1/task.1
|
||||||
man1_MANS = doc/man1/task.1
|
man1_MANS = doc/man1/task.1
|
||||||
|
otherdir = $(datadir)/doc/task-1.7.0
|
||||||
|
other_DATA = AUTHORS ChangeLog COPYING INSTALL NEWS README task_completion.sh
|
||||||
|
|
53
Makefile.in
53
Makefile.in
|
@ -13,6 +13,7 @@
|
||||||
# PARTICULAR PURPOSE.
|
# PARTICULAR PURPOSE.
|
||||||
|
|
||||||
@SET_MAKE@
|
@SET_MAKE@
|
||||||
|
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@
|
pkgdatadir = $(datadir)/@PACKAGE@
|
||||||
pkglibdir = $(libdir)/@PACKAGE@
|
pkglibdir = $(libdir)/@PACKAGE@
|
||||||
|
@ -53,9 +54,17 @@ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
||||||
installcheck-recursive installdirs-recursive pdf-recursive \
|
installcheck-recursive installdirs-recursive pdf-recursive \
|
||||||
ps-recursive uninstall-recursive
|
ps-recursive uninstall-recursive
|
||||||
man1dir = $(mandir)/man1
|
man1dir = $(mandir)/man1
|
||||||
am__installdirs = "$(DESTDIR)$(man1dir)"
|
am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(otherdir)"
|
||||||
NROFF = nroff
|
NROFF = nroff
|
||||||
MANS = $(man1_MANS)
|
MANS = $(man1_MANS)
|
||||||
|
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||||
|
am__vpath_adj = case $$p in \
|
||||||
|
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||||
|
*) f=$$p;; \
|
||||||
|
esac;
|
||||||
|
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
||||||
|
otherDATA_INSTALL = $(INSTALL_DATA)
|
||||||
|
DATA = $(other_DATA)
|
||||||
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
||||||
distclean-recursive maintainer-clean-recursive
|
distclean-recursive maintainer-clean-recursive
|
||||||
ETAGS = etags
|
ETAGS = etags
|
||||||
|
@ -161,8 +170,10 @@ target_alias = @target_alias@
|
||||||
top_builddir = @top_builddir@
|
top_builddir = @top_builddir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
SUBDIRS = src
|
SUBDIRS = src
|
||||||
EXTRA_DIST = DEVELOPERS tab_completion.sh doc/man1/task.1
|
EXTRA_DIST = task_completion.sh doc/man1/task.1
|
||||||
man1_MANS = doc/man1/task.1
|
man1_MANS = doc/man1/task.1
|
||||||
|
otherdir = $(datadir)/doc/task-1.7.0
|
||||||
|
other_DATA = AUTHORS ChangeLog COPYING INSTALL NEWS README task_completion.sh
|
||||||
all: auto.h
|
all: auto.h
|
||||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||||
|
|
||||||
|
@ -262,6 +273,23 @@ uninstall-man1:
|
||||||
echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \
|
echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \
|
||||||
rm -f "$(DESTDIR)$(man1dir)/$$inst"; \
|
rm -f "$(DESTDIR)$(man1dir)/$$inst"; \
|
||||||
done
|
done
|
||||||
|
install-otherDATA: $(other_DATA)
|
||||||
|
@$(NORMAL_INSTALL)
|
||||||
|
test -z "$(otherdir)" || $(MKDIR_P) "$(DESTDIR)$(otherdir)"
|
||||||
|
@list='$(other_DATA)'; for p in $$list; do \
|
||||||
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||||
|
f=$(am__strip_dir) \
|
||||||
|
echo " $(otherDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(otherdir)/$$f'"; \
|
||||||
|
$(otherDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(otherdir)/$$f"; \
|
||||||
|
done
|
||||||
|
|
||||||
|
uninstall-otherDATA:
|
||||||
|
@$(NORMAL_UNINSTALL)
|
||||||
|
@list='$(other_DATA)'; for p in $$list; do \
|
||||||
|
f=$(am__strip_dir) \
|
||||||
|
echo " rm -f '$(DESTDIR)$(otherdir)/$$f'"; \
|
||||||
|
rm -f "$(DESTDIR)$(otherdir)/$$f"; \
|
||||||
|
done
|
||||||
|
|
||||||
# This directory's subdirectories are mostly independent; you can cd
|
# This directory's subdirectories are mostly independent; you can cd
|
||||||
# into them and run `make' without going through this Makefile.
|
# into them and run `make' without going through this Makefile.
|
||||||
|
@ -538,10 +566,10 @@ distcleancheck: distclean
|
||||||
exit 1; } >&2
|
exit 1; } >&2
|
||||||
check-am: all-am
|
check-am: all-am
|
||||||
check: check-recursive
|
check: check-recursive
|
||||||
all-am: Makefile $(MANS) auto.h
|
all-am: Makefile $(MANS) $(DATA) auto.h
|
||||||
installdirs: installdirs-recursive
|
installdirs: installdirs-recursive
|
||||||
installdirs-am:
|
installdirs-am:
|
||||||
for dir in "$(DESTDIR)$(man1dir)"; do \
|
for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(otherdir)"; do \
|
||||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||||
done
|
done
|
||||||
install: install-recursive
|
install: install-recursive
|
||||||
|
@ -587,7 +615,7 @@ info: info-recursive
|
||||||
|
|
||||||
info-am:
|
info-am:
|
||||||
|
|
||||||
install-data-am: install-man
|
install-data-am: install-man install-otherDATA
|
||||||
|
|
||||||
install-dvi: install-dvi-recursive
|
install-dvi: install-dvi-recursive
|
||||||
|
|
||||||
|
@ -623,7 +651,7 @@ ps: ps-recursive
|
||||||
|
|
||||||
ps-am:
|
ps-am:
|
||||||
|
|
||||||
uninstall-am: uninstall-man
|
uninstall-am: uninstall-man uninstall-otherDATA
|
||||||
|
|
||||||
uninstall-man: uninstall-man1
|
uninstall-man: uninstall-man1
|
||||||
|
|
||||||
|
@ -639,12 +667,13 @@ uninstall-man: uninstall-man1
|
||||||
info-am install install-am install-data install-data-am \
|
info-am install install-am install-data install-data-am \
|
||||||
install-dvi install-dvi-am install-exec install-exec-am \
|
install-dvi install-dvi-am install-exec install-exec-am \
|
||||||
install-html install-html-am install-info install-info-am \
|
install-html install-html-am install-info install-info-am \
|
||||||
install-man install-man1 install-pdf install-pdf-am install-ps \
|
install-man install-man1 install-otherDATA install-pdf \
|
||||||
install-ps-am install-strip installcheck installcheck-am \
|
install-pdf-am install-ps install-ps-am install-strip \
|
||||||
installdirs installdirs-am maintainer-clean \
|
installcheck installcheck-am installdirs installdirs-am \
|
||||||
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
|
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||||
pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
|
mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \
|
||||||
uninstall-man uninstall-man1
|
uninstall uninstall-am uninstall-man uninstall-man1 \
|
||||||
|
uninstall-otherDATA
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
|
|
@ -168,9 +168,12 @@
|
||||||
other reports.
|
other reports.
|
||||||
<li>New "timesheet" command displays tasks completed and started, per week,
|
<li>New "timesheet" command displays tasks completed and started, per week,
|
||||||
and can display multiple weeks.
|
and can display multiple weeks.
|
||||||
<li>New tab completion script, tab_completion.sh, for bash users (thanks
|
<li>New tab completion script, task_completion.sh, for bash users, is installed
|
||||||
to Federico Hernandez).
|
to /usr/local/share/task (thanks to Federico Hernandez).
|
||||||
<li>Added patch to allow task to build on Arch Linux (thanks to Johan Friis).
|
<li>Applied patch to allow task to build on Arch Linux (thanks to Johan Friis).
|
||||||
|
<li>Applied patch to fix a UUID bug on Solaris 8 (thanks to Steven de Brouwer).
|
||||||
|
<li>The task man page is now installed. Try "man task" (thanks to Federico
|
||||||
|
Hernandez and P.C. Shyamshankar).
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue