freebsd-ports/mail/smail/Makefile

72 lines
2 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: smail
1996-11-18 00:43:03 +01:00
# Version required: 3.2
# Date created: 16 Oct 1994
# Whom: torstenb
#
1999-08-25 08:51:17 +02:00
# $FreeBSD$
#
DISTNAME= smail-3.2.0.111
CATEGORIES= mail
MASTER_SITES= ftp://ftp.uu.net/networking/mail/smail/ \
1998-01-25 21:45:19 +01:00
ftp://ftp.planix.com/pub/Smail/ \
ftp://ftp.fu-berlin.de/unix/mail/smail/
1995-04-11 22:28:32 +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)
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
post-install:
@${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"
1996-11-18 00:43:03 +01:00
replace:
@${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
.include <bsd.port.mk>