From 3e734c1dd46d3f32bbd1e4a85e55c093af847ea6 Mon Sep 17 00:00:00 2001 From: david <> Date: Sun, 5 May 2002 22:26:42 +0000 Subject: [PATCH] releasing version 0.4 --- LDP/texi2db/Changelog | 4 +++ LDP/texi2db/INSTALL | 14 ++++++++ LDP/texi2db/Makefile.PL | 28 ++++++++++++++++ LDP/texi2db/doc/texi2db.pod | 67 +++++++++++++++++++++++++++++++++++++ LDP/texi2db/texi2db | 8 ++--- 5 files changed, 117 insertions(+), 4 deletions(-) create mode 100644 LDP/texi2db/Changelog create mode 100644 LDP/texi2db/INSTALL create mode 100644 LDP/texi2db/Makefile.PL create mode 100644 LDP/texi2db/doc/texi2db.pod diff --git a/LDP/texi2db/Changelog b/LDP/texi2db/Changelog new file mode 100644 index 00000000..bd5189dd --- /dev/null +++ b/LDP/texi2db/Changelog @@ -0,0 +1,4 @@ +2002-05-05 0.3 Initial public release +2002-05-05 0.3 Added Makefile.PL, INSTALL, man page, Changelog + Added -V, same as --version + diff --git a/LDP/texi2db/INSTALL b/LDP/texi2db/INSTALL new file mode 100644 index 00000000..f8ad285c --- /dev/null +++ b/LDP/texi2db/INSTALL @@ -0,0 +1,14 @@ +To install texi2db, run: + + perl Makefile.PL + +That will generate a Makefile. Then, run: + + make + +to build the package, and run: + + make install + +as root to copy the files to the appropriate locations. + diff --git a/LDP/texi2db/Makefile.PL b/LDP/texi2db/Makefile.PL new file mode 100644 index 00000000..1138a048 --- /dev/null +++ b/LDP/texi2db/Makefile.PL @@ -0,0 +1,28 @@ +#!/usr/bin/perl -sw +## +## Makefile for the texi2db utility. +## +## Copyright (c) 2002, David Merrill. All rights reserved. +## This code is Free Software; you can redistribute it and/or modify +## it under the GNU General Public License. See COPYING for details. +## + +use ExtUtils::MakeMaker; + +WriteMakefile( + + NAME => 'texi2db', + AUTHOR => 'David Merrill ', + ABSTRACT => 'Converts Texinfo documents into DocBook XML.', + NOECHO => '', + VERSION_FROM => 'texi2db', + EXE_FILES => [ qw( texi2db ) ], + PREREQ_PM => { + 'File::Basename' => 0, + 'HTML::Entities' => 0, + 'FileHandle' => 0, + }, + MAN1PODS => { + "doc/texi2db.pod" => 'blib/man1/texi2db.1', + }, +); diff --git a/LDP/texi2db/doc/texi2db.pod b/LDP/texi2db/doc/texi2db.pod new file mode 100644 index 00000000..f2da4a36 --- /dev/null +++ b/LDP/texi2db/doc/texi2db.pod @@ -0,0 +1,67 @@ +=head1 NAME + +B - utility to convert Texinfo documents into DocBook XML. + +=head1 SYNOPSIS + +B [I