diff options
author | Gabor Pali <pgj@FreeBSD.org> | 2009-03-09 16:23:46 +0000 |
---|---|---|
committer | Gabor Pali <pgj@FreeBSD.org> | 2009-03-09 16:23:46 +0000 |
commit | 9205cdd2b3440b94b678fefd7c366810e08fcb25 (patch) | |
tree | c6f1cd6f512918fede44a1f9d5426d3d77c66995 /devel/bisoncpp/files/patch-icmake-install | |
parent | Bobcat is an acronym of `Brokken's Own Base Classes And Templates'. It (diff) |
The program bisonc++ creates a C++ parser function and -class having a
cleaner setup than the code generated by Alain Coetmeur's bison++.
Furthermore, since bisonc++ more closely follows current-day ideas about
C++ programming its code is easier to read.
WWW: http://bisoncpp.sourceforge.net/
Approved by: tabthorpe
Notes
Notes:
svn path=/head/; revision=229762
Diffstat (limited to 'devel/bisoncpp/files/patch-icmake-install')
-rw-r--r-- | devel/bisoncpp/files/patch-icmake-install | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/devel/bisoncpp/files/patch-icmake-install b/devel/bisoncpp/files/patch-icmake-install new file mode 100644 index 000000000000..cd922abf7cdb --- /dev/null +++ b/devel/bisoncpp/files/patch-icmake-install @@ -0,0 +1,23 @@ +--- icmake/install.orig 2007-03-22 21:28:58.000000000 +0100 ++++ icmake/install 2009-03-05 16:50:49.000000000 +0100 +@@ -8,17 +8,15 @@ + md(where + SKEL); + run("cp share/* " + where + SKEL); + +- if (all) +- { + printf(" installing the manual page bisonc++.1\n"); + md(where + MAN); + run("gzip -9 < tmp/man/bisonc++.1 > " + + where + MAN + "/bisonc++.1.gz"); + +- printf(" installing the manual page bisonc++man.html\n"); +- md(where + DOC + "/man"); +- run("cp tmp/manhtml/bisonc++man.html " + where + DOC + "/man"); ++ if (all) ++ { + ++ md(where + DOC); + printf(" installing the information directly in and under $DOC\n"); + run("gzip -9 < changelog > " + where + DOC + "/changelog.gz"); + |