summaryrefslogtreecommitdiff
path: root/devel/bisoncpp/files/patch-icmake-manpage
diff options
context:
space:
mode:
Diffstat (limited to 'devel/bisoncpp/files/patch-icmake-manpage')
-rw-r--r--devel/bisoncpp/files/patch-icmake-manpage35
1 files changed, 0 insertions, 35 deletions
diff --git a/devel/bisoncpp/files/patch-icmake-manpage b/devel/bisoncpp/files/patch-icmake-manpage
deleted file mode 100644
index 77bf277ef6a0..000000000000
--- a/devel/bisoncpp/files/patch-icmake-manpage
+++ /dev/null
@@ -1,35 +0,0 @@
---- icmake/manpage.orig 2013-06-21 09:16:34 UTC
-+++ icmake/manpage
-@@ -3,14 +3,29 @@
-
- void manpage()
- {
-- md("tmp/man tmp/manhtml");
-+ md("tmp/man");
-
- chdir("documentation/man");
-
- if (PROGRAM ".yo" younger MANPAGE || "release.yo" younger MANPAGE)
- {
-- run("yodl2man -o " MANPAGE " " PROGRAM);
-- run("yodl2html -o " MANHTML " " PROGRAM);
-+ run("yodl2man -l3 -o " MANPAGE " " PROGRAM);
- }
- exit(0);
- }
-+
-+void manhtmlpage()
-+{
-+ md("tmp/manhtml");
-+
-+ special();
-+
-+ chdir("documentation/man");
-+
-+ if (PROGRAM ".yo" younger MANHTML || "release.yo" younger MANHTML)
-+ {
-+ run("yodl2html -l3 -o " MANHTML " " PROGRAM);
-+ }
-+
-+ chdir("../..");
-+}