Files
spack/var/spack/repos/builtin/packages/libx11/package.py
Geoffrey Oxberry 40f0305bfa glvis@3.3: new package (#7166)
* glvis@3.3: new package

* mesa-glu: now provides 'glu' (GL Utility library)

* openglu: add package, provides glu

* [GLVis] Use MakefilePackage as base. Add 'develop' version.

Small tweaks in the makefile arguments.

* [GLVis] Locate the X11, GL and GLU libraries within their respective
prefixes. Set the C compiler in the makefile arguments.

* [GLVis] Fix a bug: the same variable was used for two different things.

* [libx11] Add the libs property

* [OpenGL] Add the libs property

* [OpenGLU] Add the libs property

* [GLVis] Use the libs properties of libx11, opengl, and openglu
2018-04-17 07:48:48 -05:00

56 lines
2.2 KiB
Python

##############################################################################
# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
# Produced at the Lawrence Livermore National Laboratory.
#
# This file is part of Spack.
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
# LLNL-CODE-647188
#
# For details, see https://github.com/spack/spack
# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License (as
# published by the Free Software Foundation) version 2.1, February 1999.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
# conditions of the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
from spack import *
class Libx11(AutotoolsPackage):
"""libX11 - Core X11 protocol client library."""
homepage = "https://www.x.org/"
url = "https://www.x.org/archive/individual/lib/libX11-1.6.5.tar.gz"
version('1.6.5', '300b5831916ffcc375468431d856917e')
version('1.6.3', '7d16653fe7c36209799175bb3dc1ae46')
depends_on('libxcb@1.1.92:')
depends_on('xproto@7.0.17:', type='build')
depends_on('xextproto', type=('build', 'link'))
depends_on('xtrans', type='build')
depends_on('kbproto', type=('build', 'link'))
depends_on('inputproto', type='build')
depends_on('pkgconfig', type='build')
depends_on('util-macros', type='build')
depends_on('perl', type='build')
@property
def libs(self):
for dir in ['lib64', 'lib']:
libs = find_libraries('libX11', join_path(self.prefix, dir),
shared=True, recursive=False)
if libs:
return libs
return None