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

Side by Side Diff: xvfb/building/install-prereq

Issue 9348009: Add a new tool holding Xvfb bits. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: '' Created 8 years, 10 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 PPATH=/usr/lib/pkgconfig
cmp 2012/02/07 19:52:14 Add #!/bin/sh to the top, add a Chromium license h
Peter Mayo 2012/02/08 05:32:48 Done.
2 LPATH=$(pwd)
cmp 2012/02/07 19:52:14 doublequotes around $(pwd)
Peter Mayo 2012/02/08 05:32:48 Done.
3 export PKG_CONFIG_PATH=${PPATH}
cmp 2012/02/07 19:52:14 doublequotes around ${PPATH}
Peter Mayo 2012/02/08 05:32:48 Done.
4
5 function getxfromy() {
6 [ -f ${PPATH}/$1.pc ] || sudo apt-get install $2
cmp 2012/02/07 19:52:14 indent by 2 spaces use if [ ! -f "${PPATH}/$1.pc"
Peter Mayo 2012/02/08 05:32:48 Done.
7 }
8
9 getxfromy pixman-1 libpixman-1-dev
10 getxfromy fixesproto x11proto-fixes-dev
11 getxfromy damageproto x11proto-damage-dev
12 getxfromy xcmiscproto x11proto-xcmisc-dev
13 getxfromy bigreqsproto x11proto-bigreqs-dev
14 getxfromy randrproto x11proto-randr-dev
15 getxfromy renderproto x11proto-render-dev
16 getxfromy fontsproto x11proto-fonts-dev
17 getxfromy videoproto x11proto-video-dev
18 getxfromy compositeproto x11proto-composite-dev
19 getxfromy scrnsaverproto x11proto-scrnsaver-dev
20 getxfromy resourceproto x11proto-resource-dev
21 getxfromy xineramaproto x11proto-xinerama-dev
22 getxfromy pciaccess libpciaccess-dev
23 getxfromy gl libgl1-mesa-dev
24 getxfromy glproto x11proto-gl-dev
25 getxfromy xf86driproto x11proto-xf86dri-dev
26 getxfromy fontenc libfontenc-dev
27 getxfromy makedepend xutils-dev
28 getxfromy talloc libfontenc-dev
29 getxfromy autoconf autoconf
30 getxfromy libtool libtool
31
32 # These may be required too.
33 # getxfromy ? x11proto-dri2-dev
34 # getxfromy ? libffi-dev
35 # getxfromy ? libpciaccess-dev
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698