Changeset 10
- Timestamp:
- 12/10/07 12:58:55 (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
compile-all.sh (modified) (3 diffs)
-
setup-repos.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/compile-all.sh
r9 r10 3 3 # xinit post 1.0.7 4 4 # lndir post 1.0.1 5 # libX11-1.1.3 needs libX11-apple.patch applied - see git-diff 4b91ed099554626f1ec17d5bdf7bd77ce1a70037 b57129ef324c73ee91c2a796b800c4b45f4d4855 5 6 6 7 export CFLAGS="-Wall -O2 -arch i386 -arch ppc -pipe -DNO_ALLOCA" … … 42 43 } 43 44 45 fetch_source() { 46 local d=$1 47 local s 48 cd ${rootdir} || die "Could not change to ${rootdir}" 49 # for d in app data doc driver font lib proto testdir util xserver 50 for s in lib proto app data doc driver font testdir util xserver ; do 51 curl -LO ftp://ftp.x.org/pub/individual/${s}/${d}.tar.bz2 && break 52 done 53 54 if [[ -f ${d}.tar.bz2 ]] ; then 55 tar -xjvf ${d}.tar.bz2 || die "Failed to extract ${d}.tar.bz2" 56 return 0 57 fi 58 59 for s in lib proto app data doc driver font testdir util xserver ; do 60 git-clone git://anongit.freedesktop.org/git/xorg/${s}/${d} && break 61 done 62 } 63 44 64 doinst() { 45 65 local d=$1 46 66 shift 67 [[ -d "${rootdir}/${d}" ]] || fetch_source ${d} 47 68 cd ${rootdir}/${d} || die "unable to find source for ${d}" 48 69 ${MAKE} clean … … 68 89 69 90 doinst pixman-0.9.6 --disable-static 70 71 # libX11-1.1.3 has libX11-apple.patch applied - see git-diff 4b91ed099554626f1ec17d5bdf7bd77ce1a70037 b57129ef324c73ee91c2a796b800c4b45f4d485572 91 doinst libX11-1.1.3 --disable-xf86bigfont --disable-xcb --disable-static -
trunk/setup-repos.sh
r2 r10 1 #GIT_BASE="git://anongit.freedesktop.org/git /xorg/util/lndir"1 #GIT_BASE="git://anongit.freedesktop.org/git" 2 2 GIT_BASE="ssh://git.freedesktop.org/git" 3 3 … … 7 7 mkdir src 8 8 cd src 9 curl -LO http://superb-west.dl.sourceforge.net/sourceforge/mesa3d/MesaLib-6.5.2.tar.bz2 10 tar -xjvf Mesa-6.5.2.tar.bz2 11 curl -LO http://superb-west.dl.sourceforge.net/sourceforge/mesa3d/MesaLib-7.0.2.tar.bz2 12 tar -xjvf Mesa-7.0.2.tar.bz2 9 13 git-clone ${GIT_BASE}/xorg/app/xauth.git 10 14 git-clone ${GIT_BASE}/xorg/app/xinit.git
Note: See TracChangeset
for help on using the changeset viewer.
