|
From: James C. <qu...@us...> - 2006-08-17 04:39:32
|
Update of /cvsroot/pptpclient/pptp-linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24057 Modified Files: ChangeLog Makefile NEWS Log Message: add pptpsetup man page Index: ChangeLog =================================================================== RCS file: /cvsroot/pptpclient/pptp-linux/ChangeLog,v retrieving revision 1.108 retrieving revision 1.109 diff -u -d -r1.108 -r1.109 --- ChangeLog 2 Aug 2006 07:02:47 -0000 1.108 +++ ChangeLog 17 Aug 2006 04:39:28 -0000 1.109 @@ -1,3 +1,7 @@ +Thu Aug 17 14:36:18 2006 James Cameron <qu...@us...> + + * Makefile: add pptpsetup man page using pod2man. + Wed Aug 2 16:21:08 2006 James Cameron <qu...@us...> * routing.c, routing.h, pptp_callmgr.c (callmgr_main): add route Index: Makefile =================================================================== RCS file: /cvsroot/pptpclient/pptp-linux/Makefile,v retrieving revision 1.43 retrieving revision 1.44 diff -u -d -r1.43 -r1.44 --- Makefile 2 Aug 2006 07:02:47 -0000 1.43 +++ Makefile 17 Aug 2006 04:39:28 -0000 1.44 @@ -30,11 +30,14 @@ PPTP_DEPS = pptp_callmgr.h pptp_gre.h ppp_fcs.h util.h \ pptp_quirks.h orckit_quirks.h config.h pqueue.h routing.h -all: config.h $(PPTP_BIN) +all: config.h $(PPTP_BIN) pptpsetup.8 $(PPTP_BIN): $(PPTP_OBJS) $(PPTP_DEPS) $(CC) -o $(PPTP_BIN) $(PPTP_OBJS) $(LDFLAGS) $(LIBS) +pptpsetup.8: pptpsetup + pod2man $? > $@ + config.h: echo "/* text added by Makefile target config.h */" > config.h echo "#define PPTP_LINUX_VERSION \"$(VERSION)$(RELEASE)\"" >> config.h @@ -59,6 +62,7 @@ install -o root -m 555 pptpsetup $(BINDIR) mkdir -p $(MANDIR) install -m 644 pptp.8 $(MANDIR) + install -m 644 pptpsetup.8 $(MANDIR) mkdir -p $(PPPDIR) install -m 644 options.pptp $(PPPDIR) Index: NEWS =================================================================== RCS file: /cvsroot/pptpclient/pptp-linux/NEWS,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- NEWS 2 Aug 2006 07:02:47 -0000 1.52 +++ NEWS 17 Aug 2006 04:39:28 -0000 1.53 @@ -1,7 +1,7 @@ - add route to PPTP server [Cameron] - remove non-free reference documentation [Cameron] - fix quoting and pppd options [Lundqvist] -- pptpsetup script (Debian Bug #167216?) [Ferraz] +- pptpsetup script with man page (Debian Bug #167216?) [Ferraz] Release 1.7.1: (13th February 2006) |