You are not logged in.
Please could someone compile cairo-gl-git wayland-mesa-git for me.
Last edited by rossmcd (2011-07-29 13:39:34)
Offline
If no-one wants to compile it for me, could you give me a few tips on how to stop GIT from freezing up?
Thanks.
Last edited by rossmcd (2011-07-28 18:32:57)
Offline
Is this for a 64 bit system? And if it is, how would you prefer that I get the built apps to you? Sorry I'm not any good at cross-compiling or I'd offer to do that with a 32 bit app.
Last edited by MoonSwan (2011-07-27 20:03:08)
Offline
Oh, sorry I forgot to mention, it is for a 32-bit system.
Offline
If your bandwidth is low, how would you even download a pre-compiled app ? And from where on the net, email? Ftp? Other...?
Offline
I edited my pacman.conf to use wget.I think FTP would be easier.
Offline
I've tryed to compile it for you, but I get this error:
This repository is not valid anymore.
Please use git://gitorious.org/qt/qt.git for Qt4.
For Qt5 git://gitorious.org/qt/qtbase.git.
The qtquick2-integration branch is a merge of the QtQuick2 and Qt 4.8Offline
Doesn't really matter, I don't need QT. Please compile wayland-mesa-git and cairo-gl-git for me, my laptop overheats when I try to compile mesa (from ABS with modified flags). Thank-you for trying!
Last edited by rossmcd (2011-07-29 13:44:08)
Offline
My computer failed building wayland-mesa-git:
configure: error: Package requirements (dri2proto >= 2.6) were not met:
Requested 'dri2proto >= 2.6' but version of DRI2Proto is 2.3Failed too building wayland-dri2proto-git:
2 out of 3 hunks FAILED -- saving rejects to file dri2proto.h.rej
patching file dri2proto.txt
Hunk #1 succeeded at 90 with fuzz 2 (offset -15 lines).
Hunk #2 succeeded at 241 with fuzz 2 (offset -52 lines).
Hunk #3 succeeded at 534 with fuzz 2 (offset -28 lines).
==> ERROR: Se produjo un error en build().
Cancelando...
notice: wayland-dri2proto-git failed while buildingBut I do build you cairo-gl-git:
compiled cairo-gl-git at 2011.07.29
Offline
My computer failed building wayland-mesa-git:
configure: error: Package requirements (dri2proto >= 2.6) were not met: Requested 'dri2proto >= 2.6' but version of DRI2Proto is 2.3Failed too building wayland-dri2proto-git:
2 out of 3 hunks FAILED -- saving rejects to file dri2proto.h.rej patching file dri2proto.txt Hunk #1 succeeded at 90 with fuzz 2 (offset -15 lines). Hunk #2 succeeded at 241 with fuzz 2 (offset -52 lines). Hunk #3 succeeded at 534 with fuzz 2 (offset -28 lines). ==> ERROR: Se produjo un error en build(). Cancelando... notice: wayland-dri2proto-git failed while buildingBut I do build you cairo-gl-git:
compiled cairo-gl-git at 2011.07.29
Thank-you. For wayland-dri2proto-git I edited the PKGBUILD (removed the patch completely). It works after you do that. wayland-mesa-git will compile with wayland-dri2proto-git.
Offline
If you post the edited wayland-mesa-git PKGBUILD, I will compile it for you.
Offline
Just use dri2proto-git.
And the wayland-mesa-git PKGBUILD:
# Maintainer: Tavian Barnes <tavianator@gmail.com>
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Maintainer: Thomas Dziedzic < gostrc at gmail >
# Contributor: Antti "Tera" Oja <antti.bofh@gmail.com>
pkgbase=wayland-mesa-git
pkgname=wayland-mesa-git
pkgver=20110214
pkgrel=1
arch=(i686 x86_64)
makedepends=('git' 'pkgconfig' 'glproto' 'libdrm-git' 'libxxf86vm'
'libxdamage' 'expat' 'libx11' 'libxt' 'gcc-libs'
'dri2proto-git'
'python2' 'talloc' 'libxml2' 'imake' 'libxmu' 'libwayland-git')
url="http://mesa3d.sourceforge.net"
license=('custom')
source=(ftp://ftp.archlinux.org/other/mesa/gl-manpages-1.0.1.tar.bz2
LICENSE)
md5sums=('6ae05158e678f4594343f32c2ca50515'
'5c65a0fe315dd347e09b1f2826a1df5a')
_gitroot='git://anongit.freedesktop.org/git/mesa/mesa'
_gitname='mesa'
build() {
msg 'Connecting to git.freedesktop.org GIT server....'
if [ -d ${_gitname} ] ; then
cd ${_gitname} && git pull origin
else
git clone ${_gitroot}
fi
msg 'GIT checkout done or server timeout'
msg 'Starting make...'
cd ${srcdir}
# Cleanup and prepare the build dir
[ -d build ] && rm -rf build
cp -r ${_gitname} build
cd build
# python2 build fixes
sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" $(find $srcdir -name '*.py')
sed -i -e "s|PYTHON2 = python|PYTHON2 = python2|" "${srcdir}"/build/configs/{default,autoconf.in}
sed -i -e "s|python|python2|" "${srcdir}"/build/src/gallium/auxiliary/Makefile
./autogen.sh --prefix=/usr \
--with-dri-driverdir=/usr/lib/xorg/modules/dri \
--enable-gles2 \
--disable-gallium-egl \
--with-egl-platforms=x11,wayland,drm
make
cd "${srcdir}/gl-manpages-1.0.1"
./configure --prefix=/usr
make
}
package_libgl-git() {
depends=('libdrm-git' 'libxxf86vm' 'libxdamage' 'expat')
conflicts=('libgl')
provides=('libgl=7.9')
pkgdesc="Mesa 3-D graphics library and DRI software rasterizer"
cd "${srcdir}"/build
install -m755 -d "${pkgdir}/usr/lib"
install -m755 -d "${pkgdir}/usr/lib/xorg/modules/extensions"
bin/minstall lib/libGL.so* "${pkgdir}/usr/lib/"
cd src/mesa/drivers/dri
make -C swrast DESTDIR="${pkgdir}" install
ln -s libglx.xorg "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so"
install -m755 -d "${pkgdir}/usr/share/licenses/libgl"
install -m755 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/libgl/"
}
package_intel-dri-git() {
depends=('libgl-git')
conflicts=('intel-dri')
provides=('intel-dri=7.9')
pkgdesc="Mesa DRI drivers for Intel"
cd "${srcdir}/build/src/mesa/drivers/dri"
make -C i810 DESTDIR="${pkgdir}" install
make -C i915 DESTDIR="${pkgdir}" install
make -C i965 DESTDIR="${pkgdir}" install
}
package_wayland-mesa-git() {
depends=('libgl-git' 'libx11' 'libxt' 'gcc-libs'
'wayland-dri2proto-git'
'libdrm-git' 'glproto')
conflicts=('mesa')
provides=('mesa=7.10')
pkgdesc="Mesa 3-D graphics libraries and include files"
cd "${srcdir}"/build
make DESTDIR="${pkgdir}" install
rm -f "${pkgdir}/usr/lib/libGL.so"*
rm -rf "${pkgdir}/usr/lib/xorg"
rm -f "${pkgdir}/usr/include/GL/glew.h"
rm -f "${pkgdir}/usr/include/GL/glut"*
rm -f "${pkgdir}/usr/include/GL/glxew.h"
rm -f "${pkgdir}/usr/include/GL/wglew.h"
rm -f "${pkgdir}/usr/lib/libglut.so.3"
cd "${srcdir}/gl-manpages-1.0.1"
make DESTDIR="${pkgdir}" install
install -m755 -d "${pkgdir}/usr/share/licenses/mesa"
install -m755 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/mesa/"
}Thanks.
Last edited by rossmcd (2011-07-30 15:05:15)
Offline