summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/openldap/package.py
blob: 7591a3d4b69002e2ddcce73f81547d31822f14e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Copyright 2013-2021 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)

from spack import *


class Openldap(AutotoolsPackage):
    """
    OpenLDAP Software is an open source implementation of the Lightweight
    Directory Access Protocol. The suite includes:

    slapd - stand-alone LDAP daemon (server)
    libraries implementing the LDAP protocol, and
    utilities, tools, and sample clients.
    """

    homepage = "https://www.openldap.org/"
    url      = "ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.4.48.tgz"

    version('2.4.49', sha256='e3b117944b4180f23befe87d0dcf47f29de775befbc469dcf4ac3dab3311e56e')
    version('2.4.48', sha256='d9523ffcab5cd14b709fcf3cb4d04e8bc76bb8970113255f372bc74954c6074d')

    variant('client_only', default=True, description='Client only installation')
    variant('icu', default=False, description='Build with unicode support')
    # Below, tls=none is not an option from programming point of view
    # If +client_only, configure arguments for tls won't be enabled
    variant('tls', default='gnutls', description='Build with TLS support',
            values=('gnutls', 'openssl'), multi=False)

    variant('perl', default=False, description='Perl backend to Slapd')

    depends_on('icu4c', when='+icu')
    depends_on('gnutls', when='~client_only tls=gnutls')
    depends_on('openssl', when='~client_only tls=openssl')
    depends_on('unixodbc', when='~client_only')
    depends_on('postgresql', when='~client_only')
    depends_on('berkeley-db', when='~client_only')  # for slapd
    # Recommended dependencies by Linux From Scratch
    # depends_on('cyrus-sasl', when='~client_only') # not avail. in spack yet
    # depends_on('openslp', when='~client_only') # not avail. in spack yet
    # depends_on('Pth', when='~client_only') # not avail. in spack yet
    depends_on('perl', when='~client_only+perl')  # for slapd

    # Ref: https://www.linuxfromscratch.org/blfs/view/svn/server/openldap.html
    @when('+client_only')
    def configure_args(self):
        return ['CPPFLAGS=-D_GNU_SOURCE',
                '--enable-static',
                '--enable-dynamic',
                '--disable-debug',
                '--disable-slapd',
                ]

    @when('~client_only')
    def configure_args(self):
        # Ref: https://www.openldap.org/lists/openldap-technical/201009/msg00304.html
        args = ['CPPFLAGS=-D_GNU_SOURCE',  # fixes a build error, see Ref above
                '--enable-static',
                '--disable-debug',
                '--with-cyrus-sasl',
                '--enable-dynamic',
                '--enable-crypt',
                '--enable-spasswd',
                '--enable-slapd',
                '--enable-modules',
                '--enable-rlookups',
                '--enable-backends=mod',
                '--disable-ndb',
                '--disable-sql',
                '--disable-shell',
                '--disable-bdb',
                '--disable-hdb',
                '--enable-overlays=mod',
                ]

        if '~client_only' in self.spec:
            if 'tls=gnutls' in self.spec:
                args.append('--with-tls=gnutls')
            if 'tls=openssl' in self.spec:
                args.append('--with-tls=openssl')

        if '+perl' in self.spec:
            args.append('--enable-perl')
        else:
            args.append('--disable-perl')

        return args

    def build(self, spec, prefix):
        make('depend')
        make()