summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-05-18 13:20:02 +0100
committerRicardo Signes <rjbs@cpan.org>2013-05-18 15:24:51 -0400
commitad68f4fd1e830cd81d634b6798dbe8a0e4f5f570 (patch)
treec972482593434b5d88d0e5c2a950aee0f1505f3a /pod
parentbdbd6dd7316e4a2ffd5d4028356dfea16d279d9e (diff)
downloadperl-ad68f4fd1e830cd81d634b6798dbe8a0e4f5f570.tar.gz
Remove cpan/Pod-LaTeX and pod2latex utility
Diffstat (limited to 'pod')
-rw-r--r--pod/.gitignore2
-rw-r--r--pod/Makefile.SH11
-rw-r--r--pod/perlutil.pod7
3 files changed, 3 insertions, 17 deletions
diff --git a/pod/.gitignore b/pod/.gitignore
index 289d5b4da8..8c0e27c574 100644
--- a/pod/.gitignore
+++ b/pod/.gitignore
@@ -44,8 +44,6 @@
# scripts etc
/pod2html
/pod2html.bat
-/pod2latex
-/pod2latex.bat
/pod2man
/pod2man.bat
/pod2text
diff --git a/pod/Makefile.SH b/pod/Makefile.SH
index 331e15c9f8..28ea35fccb 100644
--- a/pod/Makefile.SH
+++ b/pod/Makefile.SH
@@ -58,7 +58,6 @@ HTMLROOT = / # Change this to fix cross-references in HTML
POD2HTML_ARGS = --htmlroot=$(HTMLROOT) --podroot=.. --podpath=pod:lib:ext:vms
POD2HTML = ../ext/Pod-Html/pod2html
POD2MAN = ../cpan/podlators/pod2man
-POD2LATEX = ../cpan/Pod-LaTeX/pod2latex
PODCHECKER = ../cpan/Pod-Parser/podchecker
PERL = ../miniperl
@@ -71,8 +70,6 @@ man: $(POD2MAN) $(MAN)
html: $(POD2HTML) $(HTML)
-tex: $(POD2LATEX) $(TEX)
-
toc perltoc.pod: buildtoc
$(PERLILIB) buildtoc
@@ -94,14 +91,6 @@ toc perltoc.pod: buildtoc
.pod.html: $(POD2HTML)
$(PERL) -I../lib $(POD2HTML) $(POD2HTML_ARGS) --infile=$*.pod --outfile=$*.html
-.SUFFIXES: .tex
-
-.pm.tex: $(POD2LATEX)
- $(PERL) -I../lib $(POD2LATEX) $*.pm
-
-.pod.tex: $(POD2LATEX)
- $(PERL) -I../lib $(POD2LATEX) $*.pod
-
clean:
rm -f $(MAN)
rm -f $(HTML)
diff --git a/pod/perlutil.pod b/pod/perlutil.pod
index 3d2b276a7c..55bfd5c7d5 100644
--- a/pod/perlutil.pod
+++ b/pod/perlutil.pod
@@ -35,11 +35,10 @@ explanation) into a manpage, and then run F<man> to display it; if
F<man> isn't available, F<pod2text> will be used instead and the output
piped through your favourite pager.
-=item L<pod2html|pod2html> and L<pod2latex|pod2latex>
+=item L<pod2html|pod2html>
-As well as these two, there are two other converters: F<pod2html> will
-produce HTML pages from POD, and F<pod2latex>, which produces LaTeX
-files.
+As well as these two, there is another converter: F<pod2html> will
+produce HTML pages from POD.
=item L<pod2usage|pod2usage>