]> git.ipfire.org Git - ipfire-3.x.git/blame - pkgs/cyrus-sasl/cyrus-sasl.nm
avahi: Update to 0.6.30.
[ipfire-3.x.git] / pkgs / cyrus-sasl / cyrus-sasl.nm
CommitLineData
fc5f06da
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
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
25include $(PKGROOT)/Include
26
27PKG_NAME = cyrus-sasl
28PKG_VER = 2.1.23
29PKG_REL = 0
30
31PKG_MAINTAINER =
bb7d617c 32PKG_GROUPS = System/Libraries
fc5f06da
MT
33PKG_URL = http://asg.web.cmu.edu/sasl/sasl-library.html
34PKG_LICENSE = BSD
35PKG_SUMMARY = The Cyrus SASL library.
36
4ea11fef 37PKG_BUILD_DEPS+= db4-devel openssl-devel pam-devel
fc5f06da
MT
38
39define PKG_DESCRIPTION
40 The cyrus-sasl package contains the Cyrus implementation of SASL. \
41 SASL is the Simple Authentication and Security Layer, a method for \
42 adding authentication support to connection-based protocols.
43endef
44
45PKG_TARBALL = $(THISAPP).tar.gz
46
484c71a5
MT
47PKG_PACKAGES += $(PKG_NAME)-devel $(PKG_NAME)-libs
48
522503e1
SS
49CONFIGURE_OPTIONS += \
50 --sysconfdir=/etc \
1913f3ed 51 --with-dbpath=/var/lib/sasl/sasldb2 \
e3f1c924
MT
52 --with-saslauthd=/var/run/saslauthd \
53 --mandir=/usr/share/man
1913f3ed 54
522503e1 55PARALLELISMFLAGS = # Disabled
fc5f06da 56
522503e1 57define STAGE_INSTALL_CMDS
fc5f06da
MT
58 -mkdir -pv $(BUILDROOT)/usr/lib/sasl2
59 cp -vf $(DIR_SOURCE)/smtpd.conf $(BUILDROOT)/usr/lib/sasl2/
60
61 install -v -m700 -d $(BUILDROOT)/var/lib/sasl $(BUILDROOT)/var/run/saslauthd
62endef