summaryrefslogtreecommitdiff
path: root/mail/smail/Makefile
blob: 7d3ba0ecb164cd25b3b521f570bff531f2074951 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# New ports collection makefile for:	smail
# Version required:	3.2
# Date created:		16 Oct 1994
# Whom:			torstenb
#
# $Id: Makefile,v 1.22 1999/05/02 20:27:11 torstenb Exp $
#

DISTNAME=	smail-3.2.0.106
CATEGORIES=	mail
MASTER_SITES=	ftp://ftp.uu.net/networking/mail/smail/ \
		ftp://ftp.planix.com/pub/Smail/ \
		ftp://ftp.fu-berlin.de/unix/mail/smail/

MAINTAINER=	torstenb@FreeBSD.ORG

BUILD_DEPENDS=	${PREFIX}/lib/libident.a:${PORTSDIR}/security/libident
.if !exists(/usr/include/tcpd.h)
LIB_DEPENDS=	wrap.7:${PORTSDIR}/security/tcp_wrapper
.endif

INSTALL_TARGET=	install installman

MAN1=		pathto.1 uuwho.1 uupath.1
MAN5=		smailconf.5 smail.5 smaildrct.5 smailmeth.5 smailqual.5 \
		smailrtrs.5 smailrtry.5 smailtrns.5
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 \
		mkuuwho.8 mailq.8 sendmail.8 runq.8 rmail.8 rsmtp.8 smtpd.8

post-install:
	@echo "If you want to replace sendmail with links to smail, type"
	@echo "the following command as \"root\":"
	@echo ""
	@echo "      make replace"

replace:
	@echo "===> Replacing sendmail"
	if [ -e /usr/sbin/sendmail ]; then \
		${MV} -f /usr/sbin/sendmail /usr/sbin/sendmail.BAK; \
		if [ -f /usr/sbin/sendmail.BAK ]; then \
			${CHMOD} 0 /usr/sbin/sendmail.BAK; \
		fi;\
	fi
	if [ -e ${PREFIX}/bin/smail ]; then \
		${CP} -fp ${PREFIX}/bin/smail /usr/sbin/sendmail; \
	fi
	if [ -f /usr/sbin/mailstats ]; then \
		${CHMOD} 0 /usr/sbin/mailstats; \
	fi
	if [ -e /usr/bin/newaliases ]; then \
		${MV} -f /usr/bin/newaliases /usr/bin/newaliases.BAK; \
		if [ -f /usr/bin/newaliases.BAK ]; then \
			${CHMOD} 0 /usr/bin/newaliases.BAK; \
		fi;\
	fi
	if [ -e ${PREFIX}/bin/newaliases ]; then \
		${CP} -fp ${PREFIX}/bin/newaliases /usr/bin/newaliases; \
	fi
	if [ -e /usr/bin/mailq ]; then \
		${MV} -f /usr/bin/mailq /usr/bin/mailq.BAK; \
		if [ -f /usr/bin/mailq.BAK ]; then \
			${CHMOD} 0 /usr/bin/mailq.BAK; \
		fi;\
	fi
	if [ -e ${PREFIX}/bin/mailq ]; then \
		${CP} -fp ${PREFIX}/bin/mailq /usr/bin/mailq; \
	fi

.include <bsd.port.mk>