diff options
author | root <root@rshg054.dnsready.net> | 2013-08-25 01:38:48 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-25 01:38:48 -0700 |
commit | eed3b2a218be9aa9d9d8256f6b8ccd06d04b8804 (patch) | |
tree | 2404ba9a8a5481c0a2e700ca72d9657f6c393a64 /community/mesa-dri1 | |
parent | 49e0f6ae5dad013852999f497117d6798b2fb085 (diff) |
Sun Aug 25 01:38:43 PDT 2013
Diffstat (limited to 'community/mesa-dri1')
-rw-r--r-- | community/mesa-dri1/LICENSE | 82 | ||||
-rw-r--r-- | community/mesa-dri1/PKGBUILD | 24 |
2 files changed, 103 insertions, 3 deletions
diff --git a/community/mesa-dri1/LICENSE b/community/mesa-dri1/LICENSE new file mode 100644 index 000000000..ae33d2709 --- /dev/null +++ b/community/mesa-dri1/LICENSE @@ -0,0 +1,82 @@ +Disclaimer + +Mesa is a 3-D graphics library with an API which is very similar to +that of OpenGL* +To the extent that Mesa utilizes the OpenGL command syntax or state +machine, it is being used with authorization from Silicon Graphics, +Inc.(SGI). However, the author does not possess an OpenGL license +from SGI, and makes no claim that Mesa is in any way a compatible +replacement for OpenGL or associated with SGI. Those who want a +licensed implementation of OpenGL should contact a licensed +vendor. + +Please do not refer to the library as MesaGL (for legal +reasons). It's just Mesa or The Mesa 3-D graphics +library + +* OpenGL is a trademark of Silicon Graphics Incorporated. + +License / Copyright Information + +The Mesa distribution consists of several components. Different copyrights +and licenses apply to different components. For example, GLUT is copyrighted +by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa +device drivers are copyrighted by their authors. See below for a list of +Mesa's main components and the license for each. + +The core Mesa library is licensed according to the terms of the MIT license. +This allows integration with the XFree86, Xorg and DRI projects. + +The default Mesa license is as follows: + +Copyright (C) 1999-2007 Brian Paul All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Attention, Contributors + +When contributing to the Mesa project you must agree to the licensing terms +of the component to which you're contributing. +The following section lists the primary components of the Mesa distribution +and their respective licenses. + + +Mesa Component Licenses + +Component Location Primary Author License +---------------------------------------------------------------------------- +Main Mesa code src/mesa/ Brian Paul Mesa (MIT) + +Device drivers src/mesa/drivers/* See drivers See drivers + +Ext headers include/GL/glext.h SGI SGI Free B + include/GL/glxext.h + +GLUT src/glut/ Mark Kilgard Mark's copyright + +Mesa GLU library src/glu/mesa/ Brian Paul GNU-LGPL + +SGI GLU library src/glu/sgi/ SGI SGI Free B + +demo programs progs/demos/ various see source files + +X demos progs/xdemos/ Brian Paul see source files + +SGI demos progs/samples/ SGI SGI copyright + +RedBook demos progs/redbook/ SGI SGI copyright diff --git a/community/mesa-dri1/PKGBUILD b/community/mesa-dri1/PKGBUILD index 3fa2266bf..a4bf95a06 100644 --- a/community/mesa-dri1/PKGBUILD +++ b/community/mesa-dri1/PKGBUILD @@ -4,14 +4,16 @@ pkgbase=mesa-dri1 pkgname=('unichrome-dri' 'i810-dri' 'mach64-dri' 'mga-dri' 'r128-dri' 'savage-dri' 'sis-dri' 'tdfx-dri') pkgver=7.11.2 -pkgrel=4 +pkgrel=5 arch=('i686' 'x86_64') makedepends=('glproto>=1.4.14' 'dri2proto' 'libdrm>=2.4.26' 'libxxf86vm>=1.1.1' 'libxdamage>=1.1.3' 'expat>=2.0.1' 'libx11>=1.4.3' 'libxt>=1.1.1' 'gcc-libs>=4.6.1' 'python2' 'libxml2' 'imake' 'llvm' 'udev') url="http://mesa3d.sourceforge.net" license=('custom') -source=("ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2") -md5sums=('0837c52698fe3252369c3fdb5195afcc') +source=("ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2" + LICENSE) +md5sums=('0837c52698fe3252369c3fdb5195afcc' + '5c65a0fe315dd347e09b1f2826a1df5a') build() { cd ${srcdir}/?esa-* @@ -39,6 +41,8 @@ package_unichrome-dri() { pkgdesc="Mesa DRI drivers for S3 Graphics/VIA Unichrome" make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/unichrome DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/unichrome-dri" + install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/unichrome-dri/" } package_i810-dri() { @@ -46,6 +50,8 @@ package_i810-dri() { pkgdesc="Mesa DRI drivers for Intel i810" make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/i810 DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/i810-dri" + install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/i810-dri/" } package_mach64-dri() { @@ -54,6 +60,8 @@ package_mach64-dri() { conflicts=('xf86-video-mach64<6.8.2') make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/mach64 DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/mach64-dri" + install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/mach64-dri/" } package_mga-dri() { @@ -62,6 +70,8 @@ package_mga-dri() { conflicts=('xf86-video-mga<1.4.11') make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/mga DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/mga-dri" + install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/mga-dri/" } package_r128-dri() { @@ -70,6 +80,8 @@ package_r128-dri() { conflicts=('xf86-video-r128<6.8.1') make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/r128 DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/r128-dri" + install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/r128-dri/" } package_savage-dri() { @@ -78,6 +90,8 @@ package_savage-dri() { conflicts=('xf86-video-savage<2.3.1') make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/savage DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/savage-dri" + install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/savage-dri/" } package_sis-dri() { @@ -86,6 +100,8 @@ package_sis-dri() { conflicts=('xf86-video-sis<0.10.2') make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/sis DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/sis-dri" + install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/sis-dri/" } package_tdfx-dri() { @@ -94,4 +110,6 @@ package_tdfx-dri() { conflicts=('xf86-video-tdfx<1.4.3') make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/tdfx DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/tdfx-dri" + install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/tdfx-dri/" } |