From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Wed, 16 Oct 2013 17:25:25 +0200 From: Andrew Lunn Message-ID: <20131016152525.GD32495@lunn.ch> References: <1381936460-2922-1-git-send-email-sven@narfation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1381936460-2922-1-git-send-email-sven@narfation.org> Subject: Re: [B.A.T.M.A.N.] [PATCH] alfred: Add installation of the alfred-gpsd manpage Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: The list for a Better Approach To Mobile Ad-hoc Networking Cc: Sven Eckelmann On Wed, Oct 16, 2013 at 05:14:20PM +0200, Sven Eckelmann wrote: > It is nice to have a manpage somewhere but the user is most likely more > interested in reading it from a familiar place. Installing it together with the > binary seems appropriate because then the user only has to call his/her prefered > manpage reader to get fast and easy access to information about everything the > alfred-gpsd binary provides. > > Signed-off-by: Sven Eckelmann Acked-by: Andrew Lunn Thanks Sven Andrew > --- > Marek: can you create a html manpage for > http://downloads.open-mesh.org/batman/manpages/ ? > > Thanks > > gpsd/Makefile | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/gpsd/Makefile b/gpsd/Makefile > index eaf390b..9b21652 100644 > --- a/gpsd/Makefile > +++ b/gpsd/Makefile > @@ -21,6 +21,7 @@ > # alfred-gpsd build > BINARY_NAME = alfred-gpsd > OBJ = alfred-gpsd.o > +MANPAGE = man/alfred-gpsd.8 > > # alfred flags and options > CFLAGS += -pedantic -Wall -W -std=gnu99 -fno-strict-aliasing -MD -MP > @@ -64,6 +65,7 @@ LINK.o = $(Q_LD)$(CC) $(CFLAGS) $(LDFLAGS) $(TARGET_ARCH) > # standard install paths > PREFIX = /usr/local > SBINDIR = $(PREFIX)/sbin > +MANDIR = $(PREFIX)/share/man > > # try to generate revision > REVISION= $(shell if [ -d ../.git ]; then \ > @@ -89,7 +91,9 @@ clean: > > install: $(BINARY_NAME) > $(MKDIR) $(DESTDIR)$(SBINDIR) > + $(MKDIR) $(DESTDIR)$(MANDIR)/man8 > $(INSTALL) -m 0755 $(BINARY_NAME) $(DESTDIR)$(SBINDIR) > + $(INSTALL) -m 0644 $(MANPAGE) $(DESTDIR)$(MANDIR)/man8 > > # load dependencies > DEP = $(OBJ:.o=.d) > -- > 1.8.4.rc3 >