From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id s6J1VlRY020466 for ; Fri, 18 Jul 2014 21:31:47 -0400 (EDT) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id s6J1Vk8j007218; Fri, 18 Jul 2014 21:31:46 -0400 (EDT) Date: Fri, 18 Jul 2014 21:31:46 -0400 (EDT) Message-Id: <201407190131.s6J1Vk8j007218@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: pod2mdoc: make it easier to override the POD2MAN and POD2MDOC variables X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- make it easier to override the POD2MAN and POD2MDOC variables Modified Files: -------------- pod2mdoc/Regress: Makefile.inc Revision Data ------------- Index: Makefile.inc =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/pod2mdoc/Regress/Makefile.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -LRegress/Makefile.inc -LRegress/Makefile.inc -u -p -r1.2 -r1.3 --- Regress/Makefile.inc +++ Regress/Makefile.inc @@ -1,10 +1,12 @@ # --- utilities --- -POD2MAN = pod2man -c 'OpenBSD Reference Manual' -d 'July 13, 2014' -r 'OpenBSD ports' +TESTDATE = -d 'July 19, 2014' +POD2MAN = pod2man +POD2MANARGS = -c 'OpenBSD Reference Manual' -r 'OpenBSD ports' GROFF = groff -Tascii -P -c MANDOC = mandoc -Tascii DIFF = diff -u -POD2MDOC = /co/pod2mdoc/pod2mdoc -d 'July 13, 2014' +POD2MDOC = /co/pod2mdoc/pod2mdoc # --- lists --- @@ -96,7 +98,7 @@ ${t}:${t}.diff .SUFFIXES: .mdoc .groff_mdoc .mandoc_mdoc .pod.preman: - -${POD2MAN} $< > $@ + -${POD2MAN} ${POD2MANARGS} ${TESTDATE} $< > $@ .preman.man: ../p2m_postproc.pl < $< > $@.part @@ -115,7 +117,7 @@ ${t}:${t}.diff @mv $@.part $@ .pod.mdoc: - ${POD2MDOC} $< > $@.part + ${POD2MDOC} ${TESTDATE} $< > $@.part @mv $@.part $@ .mdoc.groff_mdoc: -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv