Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(539)

Unified Diff: docs/linux_open_suse_build_instructions.md

Issue 2544793004: More edits to the linux build instructions. (Closed)
Patch Set: tweak debian, gentoo instructions Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « docs/linux_mandriva_build_instructions.md ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: docs/linux_open_suse_build_instructions.md
diff --git a/docs/linux_open_suse_build_instructions.md b/docs/linux_open_suse_build_instructions.md
deleted file mode 100644
index 89d427b628100a9f6fcf5206740f3c40b03a99db..0000000000000000000000000000000000000000
--- a/docs/linux_open_suse_build_instructions.md
+++ /dev/null
@@ -1,79 +0,0 @@
-# Building Chromium on openSUSE
-
-Generally speaking, follow the [Linux Build Instructions](linux_build_instructions.md).
-However, do the following instead to install the build dependencies:
-
-## Install the build dependencies:
-
-Use `zypper` command to install dependencies:
-
-(openSUSE 11.1 and higher)
-
-```shell
-sudo zypper in subversion pkg-config python perl \
- bison flex gperf mozilla-nss-devel glib2-devel gtk-devel \
- wdiff lighttpd gcc gcc-c++ gconf2-devel mozilla-nspr \
- mozilla-nspr-devel php5-fastcgi alsa-devel libexpat-devel \
- libjpeg-devel libbz2-devel
-```
-
-For 11.0, use `libnspr4-0d` and `libnspr4-dev` instead of `mozilla-nspr` and
-`mozilla-nspr-devel`, and use `php5-cgi` instead of `php5-fastcgi`. And need
-`gtk2-devel`.
-
-(openSUSE 11.0)
-
-```shell
-sudo zypper in subversion pkg-config python perl \
- bison flex gperf mozilla-nss-devel glib2-devel gtk-devel \
- libnspr4-0d libnspr4-dev wdiff lighttpd gcc gcc-c++ libexpat-devel \
- php5-cgi gconf2-devel alsa-devel gtk2-devel jpeg-devel
-```
-
-The Ubuntu package `sun-java6-fonts` contains a subset of Java of the fonts used.
-Since this package requires Java as a prerequisite anyway, we can do the same
-thing by just installing the equivalent openSUSE Sun Java package:
-
-```shell
-sudo zypper in java-1_6_0-sun
-```
-
-WebKit is currently hard-linked to the Microsoft fonts. To install these using `zypper`
-
-```shell
-sudo zypper in fetchmsttfonts pullin-msttf-fonts
-```
-
-To make the fonts installed above work, as the paths are hardcoded for Ubuntu,
-create symlinks to the appropriate locations:
-
-```shell
-sudo mkdir -p /usr/share/fonts/truetype/msttcorefonts
-sudo ln -s /usr/share/fonts/truetype/arial.ttf /usr/share/fonts/truetype/msttcorefonts/Arial.ttf
-sudo ln -s /usr/share/fonts/truetype/arialbd.ttf /usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf
-sudo ln -s /usr/share/fonts/truetype/arialbi.ttf /usr/share/fonts/truetype/msttcorefonts/Arial_Bold_Italic.ttf
-sudo ln -s /usr/share/fonts/truetype/ariali.ttf /usr/share/fonts/truetype/msttcorefonts/Arial_Italic.ttf
-sudo ln -s /usr/share/fonts/truetype/comic.ttf /usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf
-sudo ln -s /usr/share/fonts/truetype/comicbd.ttf /usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS_Bold.ttf
-sudo ln -s /usr/share/fonts/truetype/cour.ttf /usr/share/fonts/truetype/msttcorefonts/Courier_New.ttf
-sudo ln -s /usr/share/fonts/truetype/courbd.ttf /usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold.ttf
-sudo ln -s /usr/share/fonts/truetype/courbi.ttf /usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold_Italic.ttf
-sudo ln -s /usr/share/fonts/truetype/couri.ttf /usr/share/fonts/truetype/msttcorefonts/Courier_New_Italic.ttf
-sudo ln -s /usr/share/fonts/truetype/impact.ttf /usr/share/fonts/truetype/msttcorefonts/Impact.ttf
-sudo ln -s /usr/share/fonts/truetype/times.ttf /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman.ttf
-sudo ln -s /usr/share/fonts/truetype/timesbd.ttf /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold.ttf
-sudo ln -s /usr/share/fonts/truetype/timesbi.ttf /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold_Italic.ttf
-sudo ln -s /usr/share/fonts/truetype/timesi.ttf /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Italic.ttf
-sudo ln -s /usr/share/fonts/truetype/verdana.ttf /usr/share/fonts/truetype/msttcorefonts/Verdana.ttf
-sudo ln -s /usr/share/fonts/truetype/verdanab.ttf /usr/share/fonts/truetype/msttcorefonts/Verdana_Bold.ttf
-sudo ln -s /usr/share/fonts/truetype/verdanai.ttf /usr/share/fonts/truetype/msttcorefonts/Verdana_Italic.ttf
-sudo ln -s /usr/share/fonts/truetype/verdanaz.ttf /usr/share/fonts/truetype/msttcorefonts/Verdana_Bold_Italic.ttf
-```
-
-And then for the Java fonts:
-
-```shell
-sudo mkdir -p /usr/share/fonts/truetype/ttf-lucida
-sudo find /usr/lib*/jvm/java-1.6.*-sun-*/jre/lib -iname '*.ttf' -print \
- -exec ln -s {} /usr/share/fonts/truetype/ttf-lucida \;
-```
« no previous file with comments | « docs/linux_mandriva_build_instructions.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698