]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/cyrus-sasl
suricata: Change midstream policy to "pass-flow"
[ipfire-2.x.git] / lfs / cyrus-sasl
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 SUMMARY = Implementation of Cyrus SASL API
28
29 VER = 2.1.26
30
31 THISAPP = cyrus-sasl-$(VER)
32 DL_FILE = $(THISAPP).tar.gz
33 DL_FROM = $(URL_IPFIRE)
34 DIR_APP = $(DIR_SRC)/$(THISAPP)
35 PROG = cyrus-sasl
36 PAK_VER = 2
37
38 ifeq "$(PASS)" ""
39 TARGET = $(DIR_INFO)/$(THISAPP)
40 else
41 TARGET = $(DIR_INFO)/$(THISAPP)-ldap
42 endif
43
44 DEPS =
45
46 SERVICES = cyrus-sasl
47
48 ###############################################################################
49 # Top-level Rules
50 ###############################################################################
51
52 objects = $(DL_FILE)
53
54 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
55
56 $(DL_FILE)_BLAKE2 = 08fe5c1624e7cccb4b5e562f6987fddd047e1221b671cedbbb684d5a2f39e09a438ad14ffcedb5f398c203ca0b6e23574106c87f43a632028d50a69619c54970
57
58 install : $(TARGET)
59
60 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
61
62 download :$(patsubst %,$(DIR_DL)/%,$(objects))
63
64 b2 : $(subst %,%_BLAKE2,$(objects))
65
66 dist :
67 @$(PAK)
68
69 ###############################################################################
70 # Downloading, checking, b2sum
71 ###############################################################################
72
73 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
74 @$(CHECK)
75
76 $(patsubst %,$(DIR_DL)/%,$(objects)) :
77 @$(LOAD)
78
79 $(subst %,%_BLAKE2,$(objects)) :
80 @$(B2SUM)
81
82 ###############################################################################
83 # Installation Details
84 ###############################################################################
85
86 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
87 @$(PREBUILD)
88 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
89 $(UPDATE_AUTOMAKE)
90 cd $(DIR_APP) && sed -i '/sasl_global/s/^static //' lib/client.c
91 cd $(DIR_APP) && sed -i 's/cat8/man8/' saslauthd/Makefile.am
92 cd $(DIR_APP) && autoconf
93
94 ifeq "$(PASS)" ""
95 cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc \
96 --with-dbpath=/var/lib/sasl/sasldb2 \
97 --with-saslauthd=/var/run/saslauthd \
98 --with-des=no --with-rc4=no \
99 --disable-otp
100 cd $(DIR_APP) && make
101 cd $(DIR_APP) && make install
102 install -v -m700 -d /var/lib/sasl
103 -mkdir /var/run/saslauthd
104 cp -vf $(DIR_SRC)/config/cyrus-sasl/smtpd.conf /usr/lib/sasl2/
105
106 #install initscripts
107 $(call INSTALL_INITSCRIPTS,$(SERVICES))
108
109 else
110 # WITH LDAP SUPPORT AT THIS TIME
111 cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc \
112 --with-dbpath=/var/lib/sasl/sasldb2 \
113 --with-saslauthd=/var/run \
114 --with-ldap --enable-ldapdb
115 cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
116 cd $(DIR_APP) && make -C include
117 cd $(DIR_APP) && make -C sasldb
118 cd $(DIR_APP) && make -C plugins
119 cd $(DIR_APP) && libtool --mode=install install plugins/libldapdb.la /usr/lib/sasl2
120 endif
121 @rm -rf $(DIR_APP)
122 @$(POSTBUILD)