summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeon Lackey <dlackey@redhat.com>2010-08-11 16:10:13 -0400
committerDeon Lackey <dlackey@redhat.com>2010-08-11 16:10:13 -0400
commitdd7b81d015a27ca50351a8d09bff72d6b80f3488 (patch)
tree27e12a9aa45006a3eda85cd9e20c6ae4814d2d93
parent2966901705261be7077a1a0c57b53511c40003e7 (diff)
downloadrepo-dd7b81d015a27ca50351a8d09bff72d6b80f3488.tar.gz
repo-dd7b81d015a27ca50351a8d09bff72d6b80f3488.tar.xz
repo-dd7b81d015a27ca50351a8d09bff72d6b80f3488.zip
adding Elio's patches
-rw-r--r--b/Makefile29
-rw-r--r--b/date.xml1
2 files changed, 30 insertions, 0 deletions
diff --git a/b/Makefile b/b/Makefile
new file mode 100644
index 0000000..7e77561
--- /dev/null
+++ b/b/Makefile
@@ -0,0 +1,29 @@
+all: example.1 pk12util.1
+
+#
+# The atrgets in section use docbook2nroff.py to convert
+# from xml to nroff
+#
+example.1: example.xml
+ python docbook2nroff.py example.xml > example.1
+
+view-example: example.1
+ man ./example.1
+
+# add more as you get them ready
+
+date.xml:
+ date +"%e %B %Y" | tr -d '\n' > $@
+
+version.xml:
+ echo -n ${VERSION} > $@
+
+#
+# The targets in this section use xmlto to convert
+# from xml to nroff (or groff)
+#
+pk12util.1: pk12util.xml date.xml version.xml
+ xmlto man pk12util.xml
+
+view-pk12util: pk12util.1
+ man ./pk12util.1
diff --git a/b/date.xml b/b/date.xml
new file mode 100644
index 0000000..1177a12
--- /dev/null
+++ b/b/date.xml
@@ -0,0 +1 @@
+14 October 2008 \ No newline at end of file