1994-10-23 02:24:26 +01:00
|
|
|
# New ports collection makefile for: smail
|
|
|
|
# Date created: 16 Oct 1994
|
|
|
|
# Whom: torstenb
|
|
|
|
#
|
1999-08-25 08:51:17 +02:00
|
|
|
# $FreeBSD$
|
1994-10-23 02:24:26 +01:00
|
|
|
#
|
|
|
|
|
2000-04-13 22:01:08 +02:00
|
|
|
PORTNAME= smail
|
2001-02-05 16:11:27 +01:00
|
|
|
PORTVERSION= 3.2.0.111
|
1996-11-10 22:32:56 +01:00
|
|
|
CATEGORIES= mail
|
1997-10-15 11:16:07 +02:00
|
|
|
MASTER_SITES= ftp://ftp.uu.net/networking/mail/smail/ \
|
1998-01-25 21:45:19 +01:00
|
|
|
ftp://ftp.planix.com/pub/Smail/ \
|
1997-10-15 11:16:07 +02:00
|
|
|
ftp://ftp.fu-berlin.de/unix/mail/smail/
|
1995-04-11 22:28:32 +02:00
|
|
|
|
1999-08-31 08:53:31 +02:00
|
|
|
MAINTAINER= torstenb@FreeBSD.org
|
1995-05-05 23:44:54 +02:00
|
|
|
|
2000-02-27 11:41:56 +01:00
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libident.a:${PORTSDIR}/security/libident
|
1999-08-22 21:01:07 +02:00
|
|
|
.if !exists(/usr/include/tcpd.h)
|
1998-09-17 12:53:31 +02:00
|
|
|
LIB_DEPENDS= wrap.7:${PORTSDIR}/security/tcp_wrapper
|
1999-08-22 21:01:07 +02:00
|
|
|
.endif
|
1996-11-18 00:43:03 +01:00
|
|
|
|
|
|
|
INSTALL_TARGET= install installman
|
1995-04-11 22:28:32 +02:00
|
|
|
|
1996-11-17 08:42:58 +01:00
|
|
|
MAN1= pathto.1 uuwho.1 uupath.1
|
1996-11-18 00:43:03 +01:00
|
|
|
MAN5= smailconf.5 smail.5 smaildrct.5 smailmeth.5 smailqual.5 \
|
1999-05-02 22:27:15 +02:00
|
|
|
smailrtrs.5 smailrtry.5 smailtrns.5
|
1996-11-17 08:42:58 +01:00
|
|
|
MAN8= pathalias.8 mkdbm.8 mkline.8 mksort.8 mkaliases.8 smail.8 \
|
|
|
|
mkpath.8 pathmerge.8 checkerr.8 getmap.8 mkhpath.8 savelog.8 \
|
1999-09-10 13:44:40 +02:00
|
|
|
mkuuwho.8 mailq.8 sendmail.8 runq.8 rmail.8 rsmtp.8 smtpd.8 \
|
|
|
|
newaliases.8 smailbug.8
|
1994-10-23 02:24:26 +01:00
|
|
|
|
1995-05-05 23:38:16 +02:00
|
|
|
post-install:
|
1999-08-28 00:30:39 +02:00
|
|
|
@${ECHO_MSG} "If you want to replace sendmail with links to smail, type"
|
|
|
|
@${ECHO_MSG} "the following command as \"root\":"
|
|
|
|
@${ECHO_MSG} ""
|
|
|
|
@${ECHO_MSG} " make replace"
|
1994-10-23 02:24:26 +01:00
|
|
|
|
1996-11-18 00:43:03 +01:00
|
|
|
replace:
|
1999-08-28 00:30:39 +02:00
|
|
|
@${ECHO_MSG} "===> Replacing sendmail"
|
1996-11-30 02:03:24 +01:00
|
|
|
if [ -e /usr/sbin/sendmail ]; then \
|
1999-05-02 22:27:15 +02:00
|
|
|
${MV} -f /usr/sbin/sendmail /usr/sbin/sendmail.BAK; \
|
1996-11-30 02:03:24 +01:00
|
|
|
if [ -f /usr/sbin/sendmail.BAK ]; then \
|
1999-08-22 21:01:07 +02:00
|
|
|
${CHMOD} 0 /usr/sbin/sendmail.BAK; \
|
1996-11-30 02:03:24 +01:00
|
|
|
fi;\
|
|
|
|
fi
|
1999-05-02 22:27:15 +02:00
|
|
|
if [ -e ${PREFIX}/bin/smail ]; then \
|
1999-08-22 21:01:07 +02:00
|
|
|
${CP} -fp ${PREFIX}/bin/smail /usr/sbin/sendmail; \
|
1996-11-30 02:03:24 +01:00
|
|
|
fi
|
|
|
|
if [ -f /usr/sbin/mailstats ]; then \
|
1999-08-22 21:01:07 +02:00
|
|
|
${CHMOD} 0 /usr/sbin/mailstats; \
|
1996-11-30 02:03:24 +01:00
|
|
|
fi
|
|
|
|
if [ -e /usr/bin/newaliases ]; then \
|
1999-05-02 22:27:15 +02:00
|
|
|
${MV} -f /usr/bin/newaliases /usr/bin/newaliases.BAK; \
|
1996-11-30 02:03:24 +01:00
|
|
|
if [ -f /usr/bin/newaliases.BAK ]; then \
|
1999-08-22 21:01:07 +02:00
|
|
|
${CHMOD} 0 /usr/bin/newaliases.BAK; \
|
1996-11-30 02:03:24 +01:00
|
|
|
fi;\
|
|
|
|
fi
|
1999-05-02 22:27:15 +02:00
|
|
|
if [ -e ${PREFIX}/bin/newaliases ]; then \
|
1999-08-22 21:01:07 +02:00
|
|
|
${CP} -fp ${PREFIX}/bin/newaliases /usr/bin/newaliases; \
|
1996-11-30 02:03:24 +01:00
|
|
|
fi
|
|
|
|
if [ -e /usr/bin/mailq ]; then \
|
1999-05-02 22:27:15 +02:00
|
|
|
${MV} -f /usr/bin/mailq /usr/bin/mailq.BAK; \
|
1996-11-30 02:03:24 +01:00
|
|
|
if [ -f /usr/bin/mailq.BAK ]; then \
|
1999-08-22 21:01:07 +02:00
|
|
|
${CHMOD} 0 /usr/bin/mailq.BAK; \
|
1996-11-30 02:03:24 +01:00
|
|
|
fi;\
|
|
|
|
fi
|
1999-05-02 22:27:15 +02:00
|
|
|
if [ -e ${PREFIX}/bin/mailq ]; then \
|
|
|
|
${CP} -fp ${PREFIX}/bin/mailq /usr/bin/mailq; \
|
1996-11-30 02:03:24 +01:00
|
|
|
fi
|
1998-09-17 12:53:31 +02:00
|
|
|
|
1994-10-23 02:24:26 +01:00
|
|
|
.include <bsd.port.mk>
|