From 38fb6e378f153ceec01b9570a01ec4b7a029661d Mon Sep 17 00:00:00 2001 From: Dieter Plaetinck Date: Mon, 26 Dec 2011 00:46:44 +0100 Subject: Add manpage(5) for rc.conf [tomegun: fixed whitespace error] Signed-off-by: Tom Gundersen --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e98c550..bb115f0 100644 --- a/Makefile +++ b/Makefile @@ -37,10 +37,13 @@ install: installdirs doc rc.d.8: rc.d.8.txt a2x -d manpage -f manpage rc.d.8.txt -doc: rc.d.8 +rc.conf.5: rc.conf.5.txt + a2x -d manpage -f manpage rc.conf.5.txt + +doc: rc.d.8 rc.conf.5 clean: - rm -f rc.d.8 + rm -f rc.d.8 rc.conf.5 tar: git archive HEAD --prefix=initscripts-$(VER)/ | xz > initscripts-$(VER).tar.xz -- cgit v1.2.2 From b132946541e0a49d1168d5e2f65999cc8151a8de Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Fri, 30 Dec 2011 16:31:55 +0100 Subject: man: install rc.conf.5 The manpage was not being installed. Signed-off-by: Tom Gundersen --- Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index bb115f0..d7dc3f0 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ install: installdirs doc install -m755 -t $(DESTDIR)/etc/profile.d locale.sh install -m755 -t $(DESTDIR)/usr/sbin rc.d install -m644 -t ${DESTDIR}/usr/share/man/man8 rc.d.8 + install -m644 -t ${DESTDIR}/usr/share/man/man5 rc.conf.5 install -m755 -t $(DESTDIR)/usr/lib/initscripts arch-tmpfiles arch-sysctl install -m644 tmpfiles.conf $(DESTDIR)/usr/lib/tmpfiles.d/arch.conf install -m644 -T bash-completion $(DESTDIR)/etc/bash_completion.d/rc.d -- cgit v1.2.2 From f26c97b536b0d4d3462cac5fac7d0aff513a4267 Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Sat, 31 Dec 2011 01:06:01 +0100 Subject: man: add Arch-specific man page for locale.conf and vconsole.conf Taken from systemd, but adapted to be Arch-specific. Some things left commented out as we might want to implement them. Signed-off-by: Tom Gundersen --- Makefile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d7dc3f0..4570a54 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ install: installdirs doc install -m755 -t $(DESTDIR)/etc/profile.d locale.sh install -m755 -t $(DESTDIR)/usr/sbin rc.d install -m644 -t ${DESTDIR}/usr/share/man/man8 rc.d.8 - install -m644 -t ${DESTDIR}/usr/share/man/man5 rc.conf.5 + install -m644 -t ${DESTDIR}/usr/share/man/man5 rc.conf.5 locale.conf vconsole.conf install -m755 -t $(DESTDIR)/usr/lib/initscripts arch-tmpfiles arch-sysctl install -m644 tmpfiles.conf $(DESTDIR)/usr/lib/tmpfiles.d/arch.conf install -m644 -T bash-completion $(DESTDIR)/etc/bash_completion.d/rc.d @@ -41,10 +41,16 @@ rc.d.8: rc.d.8.txt rc.conf.5: rc.conf.5.txt a2x -d manpage -f manpage rc.conf.5.txt -doc: rc.d.8 rc.conf.5 +locale.conf.5: locale.conf.5.txt + a2x -d manpage -f manpage locale.conf.5.txt + +vconsole.conf.5: vconsole.conf.5.txt + a2x -d manpage -f manpage vconsole.conf.5.txt + +doc: rc.d.8 rc.conf.5 locale.conf.5 vconsole.conf.5 clean: - rm -f rc.d.8 rc.conf.5 + rm -f rc.d.8 rc.conf.5 locale.conf.5 vconsole.conf.5 tar: git archive HEAD --prefix=initscripts-$(VER)/ | xz > initscripts-$(VER).tar.xz -- cgit v1.2.2 From d129fef076e6dd4ba1b12717880cfa4f4f6ef1bf Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Sat, 31 Dec 2011 01:40:57 +0100 Subject: man: add hostname(5) Also fix typo in Makefile making the install of the other manpages fail. Signed-off-by: Tom Gundersen --- Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4570a54..3e83e58 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ DIRS := \ /usr/lib/initscripts \ /etc/bash_completion.d \ /usr/share/zsh/site-functions \ + /usr/share/man/man5 \ /usr/share/man/man8 all: doc @@ -29,7 +30,7 @@ install: installdirs doc install -m755 -t $(DESTDIR)/etc/profile.d locale.sh install -m755 -t $(DESTDIR)/usr/sbin rc.d install -m644 -t ${DESTDIR}/usr/share/man/man8 rc.d.8 - install -m644 -t ${DESTDIR}/usr/share/man/man5 rc.conf.5 locale.conf vconsole.conf + install -m644 -t ${DESTDIR}/usr/share/man/man5 rc.conf.5 locale.conf.5 vconsole.conf.5 hostname.5 install -m755 -t $(DESTDIR)/usr/lib/initscripts arch-tmpfiles arch-sysctl install -m644 tmpfiles.conf $(DESTDIR)/usr/lib/tmpfiles.d/arch.conf install -m644 -T bash-completion $(DESTDIR)/etc/bash_completion.d/rc.d @@ -47,10 +48,13 @@ locale.conf.5: locale.conf.5.txt vconsole.conf.5: vconsole.conf.5.txt a2x -d manpage -f manpage vconsole.conf.5.txt -doc: rc.d.8 rc.conf.5 locale.conf.5 vconsole.conf.5 +hostname.5: hostname.5.txt + a2x -d manpage -f manpage hostname.5.txt + +doc: rc.d.8 rc.conf.5 locale.conf.5 vconsole.conf.5 hostname.5 clean: - rm -f rc.d.8 rc.conf.5 locale.conf.5 vconsole.conf.5 + rm -f rc.d.8 rc.conf.5 locale.conf.5 vconsole.conf.5 hostname.5 tar: git archive HEAD --prefix=initscripts-$(VER)/ | xz > initscripts-$(VER).tar.xz -- cgit v1.2.2