mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
31 lines
997 B
Text
31 lines
997 B
Text
--- icmake/install.orig 2010-03-08 20:11:17.000000000 +0100
|
|
+++ icmake/install 2011-11-15 14:32:41.000000000 +0100
|
|
@@ -12,10 +12,6 @@
|
|
printf(" installing the skeleton files\n");
|
|
md(where + SKEL);
|
|
run("cp share/* " + where + SKEL);
|
|
-
|
|
- printf(" installing the information directly in and under $DOC\n");
|
|
- md(where + DOC);
|
|
- run("gzip -9 < changelog > " + where + DOC + "/changelog.gz");
|
|
}
|
|
|
|
if (what == "man")
|
|
@@ -24,14 +20,14 @@
|
|
md(where + MAN);
|
|
run("gzip -9 < tmp/man/bisonc++.1 > " +
|
|
where + MAN + "/bisonc++.1.gz");
|
|
+ }
|
|
|
|
+ if (what == "manual")
|
|
+ {
|
|
printf(" installing the manual page bisonc++man.html\n");
|
|
md(where + DOC + "/man");
|
|
run("cp tmp/manhtml/bisonc++man.html " + where + DOC + "/man");
|
|
- }
|
|
|
|
- if (what == "manual")
|
|
- {
|
|
printf(" installing bison's docs\n");
|
|
md(where + docdoc + "/bison-docs");
|
|
|