mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
8795166b2a
Upgrade to version 3.02, featuring: Simplified handling of domain/host/net/address lists. Regex handling bugfixes and improvements. Bugfixes. Logical improvements. Documentation improvements. WARNING: backward compatability issues. See README.UPDATING in the distribution tarball for details. Change maintainer's address.
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
# New ports collection makefile for: exim
|
|
# Version required: 2.12
|
|
# Date created: 23 June 1996
|
|
# Whom: markm@FreeBSD.ORG
|
|
#
|
|
# $Id: Makefile,v 1.29 1999/06/08 23:27:48 steve Exp $
|
|
#
|
|
|
|
DISTNAME= exim-3.02
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.cus.cam.ac.uk/pub/software/programs/exim/ \
|
|
ftp://ftp.quite.net/pub/exim/ \
|
|
http://www.exim.org/ftp/ \
|
|
ftp://ftp.is.co.za/networking/mail/transport/exim/
|
|
DISTFILES= exim-3.02.tar.gz exim-texinfo-3.00.tar.gz
|
|
|
|
MAINTAINER= sheldonh@FreeBSD.ORG
|
|
|
|
# If USE_XLIB is defined, the eximon monitor, which requires X, will be
|
|
# built.
|
|
USE_XLIB= YES
|
|
|
|
USE_PERL5= YES
|
|
|
|
do-configure:
|
|
${MKDIR} ${WRKSRC}/Local
|
|
.if defined(USE_XLIB) && ${USE_XLIB} == YES
|
|
${SED} -e "s#XX_PREFIX_XX#${PREFIX}#" \
|
|
< ${FILESDIR}/Makefile \
|
|
> ${WRKSRC}/Local/Makefile
|
|
.else
|
|
${SED} -e "s#XX_PREFIX_XX#${PREFIX}#" \
|
|
-e "s/^EXIM_MONITOR/#EXIM_MONITOR/" \
|
|
< ${FILESDIR}/Makefile \
|
|
> ${WRKSRC}/Local/Makefile
|
|
.endif
|
|
|
|
${CP} ${FILESDIR}/eximon.conf ${WRKSRC}/Local
|
|
${SED} -e "s#XX_BINOWN_XX#${BINOWN}#" \
|
|
< ${FILESDIR}/configure.default > ${WRKSRC}/src/configure.default
|
|
cd ${WRKSRC}/doc && \
|
|
for i in ../../exim-texinfo-3.00/doc/* ; do \
|
|
ln -sf $$i ; \
|
|
done
|
|
|
|
post-build:
|
|
${INSTALL_SCRIPT} ${FILESDIR}/exim.sh ${WRKSRC}/build-FreeBSD-i386
|
|
${TOUCH} ${WRKSRC}/build-FreeBSD-i386/eximon.bin
|
|
${TOUCH} ${WRKSRC}/build-FreeBSD-i386/eximon
|
|
|
|
.include <bsd.port.mk>
|