| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- ##
- ## imapd.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: imapd
- Summary: Cyrus IMAP Server
- URL: http://asg.web.cmu.edu/cyrus/imapd/
- Vendor: Carnegie Mellon University
- Packager: The OpenPKG Project
- Distribution: OpenPKG [EVAL]
- Group: Mail
- License: BSD
- Version: 2.1.12
- Release: 20030502
- # package options
- %option with_vhost_hack no
- # list of sources
- Source0: ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-imapd-%{version}.tar.gz
- Source1: rc.imapd
- Source2: cyrus.conf
- Source3: imapd.conf
- Source4: fsl.imapd
- Patch0: imapd.patch
- Patch1: vhosthack.patch
- # build information
- Prefix: %{l_prefix}
- BuildRoot: %{l_buildroot}
- BuildPreReq: OpenPKG, openpkg >= 20020206, sasl, db >= 4.1.24, openssl, make, perl, perl-openpkg, fsl
- PreReq: OpenPKG, openpkg >= 20020206, sasl, openssl, perl, MTA, fsl
- AutoReq: no
- AutoReqProv: no
- Provides: IMAP
- %description
- The Cyrus IMAP server is an IMAP4 and POP3 daemon that differs from
- other IMAP server implementations in that it is generally intended to
- be run on sealed servers, where normal users are not permitted to log
- in. The mailbox database is stored in parts of the filesystem that are
- private to the Cyrus IMAP system. All user access to mail is through
- the IMAP, POP3, or KPOP protocols.
- %prep
- %setup -q -n cyrus-imapd-%{version}
- %patch -p0
- %{l_shtool} subst \
- -e 's;db-4.1;db;g' \
- configure
- # ensure linking of Berkeley DB
- %{l_shtool} subst \
- -e 's;^\( *.LIBS..*\)\(\"\],.*\)$;\1 -ldb\2;' \
- perl/imap/Makefile.PL
- # ensure invocation of correct perl in cyradm
- %{l_shtool} subst \
- -e 's;^\(.) exec\) \(perl .*\)$;\1 %{l_prefix}/bin/\2;' \
- perl/imap/cyradm.sh
- # adjust hard-coded location of sieve
- %{l_shtool} subst \
- -e 's;"/usr/sieve";"%{l_prefix}/var/imapd/sieve";g' \
- imap/lmtpd.c \
- imap/mbdump.c \
- imap/user.c \
- man/imapd.conf.5 \
- timsieved/actions.c
- # adjust default config to install environment for use in mkimap install helper script
- %{l_shtool} install -c -m 644 \
- -e "s;@l_prefix@;$RPM_BUILD_ROOT%{l_prefix};g" \
- -e "s;@l_rusr@;%{l_rusr};g" \
- %{SOURCE imapd.conf} \
- imapd.conf-mkimap
- %{l_shtool} subst \
- -e 's;^exec perl ;exec %{l_prefix}/bin/perl ;' \
- -e "s;/etc/imapd.conf;%{l_prefix}/etc/imapd/imapd.conf;" \
- -e "s;^\(\$sievedir = \).*$;\1 shift || \"%{l_prefix}/var/imapd/sieve\"\;;" \
- tools/mkimap
- # ajdust syslog ident of deliver program
- %{l_shtool} subst \
- -e '/config_init/s;"deliver";"cyrdeliver";' \
- imap/deliver.c
- %if "%{with_vhost_hack}" == "yes"
- # allow @ in LMTP mailbox names
- %{l_patch} -p0 <%{SOURCE vhosthack.patch}
- %endif
- %build
- cflags="-I%{l_prefix}/include `%{l_prefix}/bin/fsl-config --all --cflags`"
- ldflags="-L%{l_prefix}/lib `%{l_prefix}/bin/fsl-config --all --ldflags`"
- case "%{l_target}" in
- *-solaris* ) ldflags="$ldflags -lsocket -lnsl" ;;
- esac
- CC="%{l_cc}" \
- CPPFLAGS="$cflags" \
- CFLAGS="%{l_cflags -O} $cflags" \
- LDFLAGS="$ldflags" \
- LIBS="`%{l_prefix}/bin/fsl-config --all --libs`" \
- ./configure \
- --cache-file=./cache.config \
- --prefix=%{l_prefix} \
- --with-openssl=%{l_prefix} \
- --with-dbdir=%{l_prefix} \
- --with-sasl=%{l_prefix} \
- --with-statedir=%{l_prefix}/var/imapd \
- --with-auth=unix \
- --without-libwrap \
- --without-perl \
- --without-ucdsnmp \
- --with-cyrus-prefix=%{l_prefix} \
- --with-cyrus-user=%{l_rusr} \
- --with-cyrus-group=%{l_rgrp}
- # redirect the hard-coded file paths
- %{l_shtool} subst -e "s;/etc/\(.*\).conf;%{l_prefix}/etc/imapd/\\1.conf;" \
- imap/*.c imap/*.h master/*.c master/*.h
- %{l_make} %{l_mflags}
- # build (and install) Perl-based administration stuff
- %{l_prefix}/bin/perl-openpkg prolog
- ( cd perl/imap
- export SASL_INC="%{l_cppflags}"
- export SASL_LIB="%{l_ldflags} -lsasl2"
- export OPENSSL_INC="%{l_cppflags}"
- export OPENSSL_LIB="%{l_ldflags} -lssl -lcrypto"
- %{l_prefix}/bin/perl-openpkg install )
- %install
- # FIXME: clean up disabled due to 'perl-openpkg install'
- # rm -rf $RPM_BUILD_ROOT
- %{l_make} %{l_mflags} install \
- prefix=$RPM_BUILD_ROOT%{l_prefix} \
- exec_prefix=$RPM_BUILD_ROOT%{l_prefix} \
- cyrus_prefix=$RPM_BUILD_ROOT%{l_prefix}
- %{l_shtool} mkdir -f -p -m 755 \
- $RPM_BUILD_ROOT%{l_prefix}/etc/imapd \
- $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d \
- $RPM_BUILD_ROOT%{l_prefix}/etc/fsl \
- $RPM_BUILD_ROOT%{l_prefix}/var/imapd/spool \
- $RPM_BUILD_ROOT%{l_prefix}/bin
- # offer a sane configuration
- l_hostname=`%{l_shtool} echo -e %h`
- l_domainname=`%{l_shtool} echo -e %d | cut -c2-`
- %{l_shtool} install -c -m 644 \
- -e 's;@l_prefix@;%{l_prefix};g' \
- -e 's;@l_rusr@;%{l_rusr};g' \
- -e "s;@l_hostname@;$l_hostname;g" \
- -e "s;@l_domainname@;$l_domainname;g" \
- %{SOURCE cyrus.conf} \
- %{SOURCE imapd.conf} \
- $RPM_BUILD_ROOT%{l_prefix}/etc/imapd/
- # install the run command file
- %{l_shtool} install -c -m 755 -e 's;@l_prefix@;%{l_prefix};g' \
- -e 's;@l_susr@;%{l_susr};g' -e 's;@l_sgrp@;%{l_sgrp};g' \
- %{SOURCE rc.imapd} $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/
- # install fsl configuration
- %{l_shtool} install -c -m 644 -e 's;@l_prefix@;%{l_prefix};g' \
- %{SOURCE fsl.imapd} $RPM_BUILD_ROOT%{l_prefix}/etc/fsl/
- # use mkimap to create many directories for us
- tools/mkimap imapd.conf-mkimap $RPM_BUILD_ROOT%{l_prefix}/var/imapd/sieve
- # rename files which are likely to cause namespace conflicts
- ( cd $RPM_BUILD_ROOT%{l_prefix}
- for i in deliver master quota reconstruct; do
- mv bin/$i bin/cyr$i
- mv man/man8/$i.8 man/man8/cyr$i.8
- done )
- # install from tools
- %{l_shtool} install -c -m 755 \
- tools/mkimap \
- $RPM_BUILD_ROOT%{l_prefix}/bin/
- # strip binaries
- strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true
- # determine files
- %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
- %{l_files_std} \
- '%config %{l_prefix}/etc/imapd/imapd.conf' \
- '%config %{l_prefix}/etc/imapd/cyrus.conf' \
- '%config %{l_prefix}/etc/fsl/fsl.imapd' \
- '%not %dir %{l_prefix}/etc/fsl' \
- '%dir %attr(0750,%{l_rusr},%{l_mgrp}) %{l_prefix}/var/imapd' \
- '%dir %attr(0750,%{l_rusr},%{l_rgrp}) %{l_prefix}/var/imapd/*' \
- '%dir %attr(0770,%{l_rusr},%{l_rgrp}) %{l_prefix}/var/imapd/*/*' \
- '%dir %attr(0770,%{l_musr},%{l_rgrp}) %{l_prefix}/var/imapd/socket'
- %files -f files
- %clean
- rm -rf $RPM_BUILD_ROOT
|