
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
77 lines
2.8 KiB
Python
77 lines
2.8 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
import os
|
|
import sys
|
|
from spack import *
|
|
|
|
|
|
class Ftgl(AutotoolsPackage):
|
|
"""Library to use arbitrary fonts in OpenGL applications."""
|
|
|
|
homepage = "http://ftgl.sourceforge.net/docs/html/"
|
|
url = "https://sourceforge.net/projects/ftgl/files/FTGL%20Source/2.1.2/ftgl-2.1.2.tar.gz/download"
|
|
list_url = "https://sourceforge.net/projects/ftgl/files/FTGL%20Source/"
|
|
list_depth = 1
|
|
|
|
version('2.1.3-rc5', sha256='5458d62122454869572d39f8aa85745fc05d5518001bcefa63bd6cbb8d26565b')
|
|
version('2.1.2', sha256='2759cbd5fac0b631e8b012923cd0d2add320f6e541b399a7cda37163ad034075')
|
|
|
|
variant('doc', default=False, description='Build docs')
|
|
conflicts('+doc', when='@2.1.3-rc5')
|
|
|
|
# Ftgl does not come with a configure script
|
|
depends_on('autoconf', type='build')
|
|
depends_on('automake', type='build')
|
|
depends_on('libtool', type='build')
|
|
depends_on('m4', type='build')
|
|
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('gl')
|
|
depends_on('glu')
|
|
depends_on('freetype@2.0.9:')
|
|
depends_on('doxygen', type='build', when='+doc')
|
|
|
|
# Fix unnecessary qualifier in 2.1.2.
|
|
patch('remove-extra-qualifier.diff', when='@2.1.2')
|
|
# Add missing GL libraries to LDFLAGS.
|
|
patch('ftgl-2.1.3-rc5-ldflags.patch', when='@2.1.3-rc5')
|
|
|
|
# Deactivate docs if we're not building them.
|
|
@when('@2.1.2~doc')
|
|
def patch(self):
|
|
filter_file('SUBDIRS = src demo docs',
|
|
'SUBDIRS = src demo', os.path.join('unix', 'Makefile'))
|
|
|
|
@when('@2.1.3-rc5~doc')
|
|
def patch(self):
|
|
filter_file('SUBDIRS = src test demo docs',
|
|
'SUBDIRS = src test demo', 'Makefile.am')
|
|
filter_file('SUBDIRS = src test demo docs',
|
|
'SUBDIRS = src test demo', 'Makefile.in')
|
|
|
|
@property
|
|
def configure_directory(self):
|
|
if self.spec.satisfies('@2.1.2'):
|
|
subdir = 'mac' if sys.platform == 'darwin' else 'unix'
|
|
return os.path.join(self.stage.source_path, subdir)
|
|
else:
|
|
return self.stage.source_path
|
|
|
|
def configure_args(self):
|
|
args = ['--enable-shared', '--disable-static',
|
|
'--with-gl-inc={0}'.format(
|
|
self.spec['gl'].prefix.include),
|
|
'--with-gl-lib={0}'.format(
|
|
self.spec['gl'].prefix.lib),
|
|
'--with-freetype={0}'.format(
|
|
self.spec['freetype'].prefix),
|
|
'--with-glut-inc={0}'.format(
|
|
self.spec['glu'].prefix.include),
|
|
'--with-glut-lib={0}'.format(
|
|
self.spec['glu'].prefix.lib),
|
|
'--with-x']
|
|
return args
|