| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- ##
- ## sasl.spec -- OpenPKG RPM Specification
- ## Copyright (c) 2000-2003 Cable & Wireless Deutschland GmbH
- ## Copyright (c) 2000-2003 The OpenPKG Project <http://www.openpkg.org/>
- ## Copyright (c) 2000-2003 Ralf S. Engelschall <rse@engelschall.com>
- ##
- ## Permission to use, copy, modify, and distribute this software for
- ## any purpose with or without fee is hereby granted, provided that
- ## the above copyright notice and this permission notice appear in all
- ## copies.
- ##
- ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
- ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- ## SUCH DAMAGE.
- ##
- # package information
- Name: sasl
- Summary: Simple Authentication and Security Layer
- URL: http://asg.web.cmu.edu/sasl/
- Vendor: Cyrus Project, CMU
- Packager: The OpenPKG Project
- Distribution: OpenPKG [PLUS]
- Group: Cryptography
- License: BSD
- Version: 2.1.12
- Release: 20030312
- # package options
- %option with_fsl no
- %option with_pam no
- %option with_login no
- %option with_ldap no
- %option with_mysql no
- # list of sources
- Source0: ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-%{version}.tar.gz
- Source1: rc.sasl
- Source2: fsl.sasl
- Patch0: sasl.patch
- # build information
- Prefix: %{l_prefix}
- BuildRoot: %{l_buildroot}
- BuildPreReq: OpenPKG, openpkg >= 20030103, db >= 4.1.24, openssl, gcc
- PreReq: OpenPKG, openpkg >= 20030103, db >= 4.1.24
- %if "%{with_fsl}" == "yes"
- BuildPreReq: fsl
- PreReq: fsl
- %endif
- %if "%{with_pam}" == "yes"
- BuildPreReq: PAM
- PreReq: PAM
- %endif
- %if "%{with_ldap}" == "yes"
- BuildPreReq: openldap
- %endif
- %if "%{with_mysql}" == "yes"
- BuildPreReq: MYSQL, zlib
- %endif
- AutoReq: no
- AutoReqProv: no
- %description
- SASL is the Simple Authentication and Security Layer, a method
- for adding authentication support to connection-based protocols.
- To use SASL, a protocol includes a command for identifying and
- authenticating a user to a server and for optionally negotiating
- protection of subsequent protocol interactions. If its use is
- negotiated, a security layer is inserted between the protocol and
- the connection.
- %prep
- %setup -q -n cyrus-sasl-%{version}
- %{l_shtool} subst \
- -e 's;^ *for dbname in ;for dbname in db ;' \
- configure
- %patch -p0
- %build
- %{l_shtool} subst \
- -e "s;javac;javac-xxx;g" \
- -e "s;javah;javah-xxx;g" \
- -e "s;javadoc;javadoc-xxx;g" \
- configure
- cflags="%{l_cflags -O} %{l_cppflags}"
- ldflags="%{l_ldflags}"
- libs="-ldb"
- %if "%{with_fsl}" == "yes"
- ldflags="$ldflags `%{l_prefix}/bin/fsl-config --all --ldflags`"
- libs="$libs `%{l_prefix}/bin/fsl-config --all --libs`"
- %endif
- %if "%{with_ldap}" == "yes"
- ldflags="$ldflags `%{l_prefix}/bin/fsl-config --all --ldflags`"
- libs="$libs `%{l_prefix}/bin/fsl-config --all --libs`"
- %endif
- %if "%{with_mysql}" == "yes"
- libs="$libs -lz -lm"
- %endif
- CC="%{l_cc}" \
- CFLAGS="$cflags" \
- CPPFLAGS="%{l_cppflags}" \
- LDFLAGS="$ldflags" \
- LIBS="$libs" \
- ./configure \
- --prefix=%{l_prefix} \
- --with-plugindir=%{l_prefix}/lib/sasl \
- --with-saslauthd=%{l_prefix}/var/sasl/saslauthd \
- --with-dbpath=%{l_prefix}/var/sasl/sasldb \
- --with-dblib=berkeley \
- --with-bdb-incdir=%{l_prefix}/include \
- --with-bdb-libdir=%{l_prefix}/lib \
- %if "%{with_pam}" == "yes"
- --with-pam \
- %else
- --without-pam \
- %endif
- %if "%{with_login}" == "yes"
- --enable-login \
- %else
- --disable-login \
- %endif
- %if "%{with_ldap}" == "yes"
- --with-ldap=%{l_prefix} \
- %else
- --without-ldap \
- %endif
- %if "%{with_mysql}" == "yes"
- --with-mysql=%{l_prefix} \
- %else
- --without-mysql \
- %endif
- --enable-shared \
- --enable-static \
- --enable-staticdlopen \
- --disable-java \
- --disable-sample \
- --disable-krb4 \
- --disable-gssapi \
- --disable-otp \
- --without-des \
- --without-opie
- # trust me, libtool, I know what I am doing
- %{l_shtool} subst \
- -e 's;^\(deplibs_check_method=\).*;\1"pass_all";' \
- libtool
- # do not reference static plugins
- %{l_shtool} subst \
- -e '58s;.*;#define PIC;' \
- lib/dlopen.c
- # do not pull static plugins into static library
- %{l_shtool} subst \
- -e '/^SASL_STATIC_OBJS/s;\.\./plugins/[^ ]* *;;g' \
- lib/Makefile
- # build utils against static library
- %{l_shtool} subst \
- -e 's;\(\$(CCLD)\);\1 -static;' \
- utils/Makefile
- %{l_make} %{l_mflags}
- cd saslauthd
- %{l_make} %{l_mflags} testsaslauthd
- %install
- rm -rf $RPM_BUILD_ROOT
- %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
- # remove libtool cruft
- rm -f \
- $RPM_BUILD_ROOT%{l_prefix}/lib/*.la \
- $RPM_BUILD_ROOT%{l_prefix}/lib/*.so \
- $RPM_BUILD_ROOT%{l_prefix}/lib/*.so.* \
- $RPM_BUILD_ROOT%{l_prefix}/lib/sasl2/*.la \
- $RPM_BUILD_ROOT%{l_prefix}/lib/sasl2/*.a
- %{l_shtool} mkdir -f -p -m 755 \
- $RPM_BUILD_ROOT%{l_prefix}/man/man8
- %{l_shtool} install -c -m 644 \
- utils/saslpasswd2.8 \
- utils/sasldblistusers2.8 \
- $RPM_BUILD_ROOT%{l_prefix}/man/man8/
- %{l_shtool} mkdir -f -p -m 755 \
- $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/
- %{l_shtool} install -c -m 755 \
- saslauthd/testsaslauthd \
- $RPM_BUILD_ROOT%{l_prefix}/sbin/
- %{l_shtool} install -c -m 755 \
- -e 's;@l_prefix@;%{l_prefix};g' \
- -e 's;@l_susr@;%{l_susr};g' \
- %{SOURCE rc.sasl} \
- $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/
- %if "%{with_pam}" == "yes"
- %{l_shtool} subst -e 's;@authmech@;pam;g' \
- $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/rc.sasl
- %else
- case "%{l_target}" in
- ix86-linux* )
- %{l_shtool} subst -e 's;@authmech@;shadow;g' \
- $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/rc.sasl
- ;;
- *-solaris* )
- %{l_shtool} subst -e 's;@authmech@;shadow;g' \
- $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/rc.sasl
- ;;
- * )
- %{l_shtool} subst -e 's;@authmech@;getpwent;g' \
- $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/rc.sasl
- ;;
- esac
- %endif
- %if "%{with_fsl}" == "yes"
- %{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/etc/fsl/
- %{l_shtool} install -c -m 644 \
- -e 's;@l_prefix@;%{l_prefix};g' \
- %{SOURCE fsl.sasl} \
- $RPM_BUILD_ROOT%{l_prefix}/etc/fsl/
- %endif
- %{l_shtool} mkdir -f -p -m 700 \
- $RPM_BUILD_ROOT%{l_prefix}/var/sasl/log/
- %{l_shtool} mkdir -f -p -m 755 \
- $RPM_BUILD_ROOT%{l_prefix}/var/sasl/saslauthd/
- mv $RPM_BUILD_ROOT%{l_prefix}/lib/sasl2 \
- $RPM_BUILD_ROOT%{l_prefix}/lib/sasl/
- strip $RPM_BUILD_ROOT%{l_prefix}/sbin/* >/dev/null 2>&1 || true
- %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} \
- %if "%{with_fsl}" == "yes"
- '%config %{l_prefix}/etc/fsl/fsl.sasl' \
- '%not %dir %{l_prefix}/etc/fsl' \
- %endif
- '%dir %attr(0750,%{l_musr},%{l_rgrp}) %{l_prefix}/var/sasl' \
- '%dir %attr(-,%{l_susr},%{l_sgrp}) %{l_prefix}/var/sasl/log'
- %files -f files
- %clean
- rm -rf $RPM_BUILD_ROOT
|