mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
32 lines
997 B
Plaintext
32 lines
997 B
Plaintext
--- icmake/install.orig 2009-07-07 16:12:30.000000000 +0200
|
|
+++ icmake/install 2009-11-02 13:23:44.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");
|
|
|