summaryrefslogtreecommitdiff
path: root/mail/smtpd/Makefile
blob: dd850790edb2a65611a8017c34be2c7e0979cc98 (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
# Ports collection makefile for:  smtpd
# Date created:			06 Feb 1998
# Whom:				Joao Carlos Mendes Luis <jonny@jonny.eng.br>
#
# $FreeBSD$
#

PORTNAME=	smtpd
PORTVERSION= 	2.0
CATEGORIES=    mail security
MASTER_SITES=  ftp://ftp.obtuse.com/pub/smtpd/

PATCH_SITES=   ${MASTER_SITES}
PATCHFILES=    patch-smtpd-2.0-RBL.gz

MAINTAINER=    jonny@jonny.eng.br

#  Directory where smtpd will chroot to, and put the received mail
#  If you change it here, change also patches/patch-aa
SPOOLBASE=	/var/smtpd

post-patch:
	@${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.tmp
	@${SED} s+!!SPOOLBASE!!+${SPOOLBASE}+g < ${WRKSRC}/Makefile.tmp \
	                                    > ${WRKSRC}/Makefile

post-install:
	@${MKDIR} ${PREFIX}/share/doc/smtpd
	@${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/smtpd

	@${ECHO} "Creating spool directories..."
	@${MKDIR} ${SPOOLBASE}
	@${CHOWN} root.uucp ${SPOOLBASE}
	@${CHMOD} 0710 ${SPOOLBASE}

	@${MKDIR} ${SPOOLBASE}/mqueue
	@${CHOWN} uucp.uucp ${SPOOLBASE}/mqueue
	@${CHMOD} 0700 ${SPOOLBASE}/mqueue

	@${MKDIR} ${SPOOLBASE}/etc
	@${CHOWN} root.uucp ${SPOOLBASE}/etc
	@${CHMOD} 0710 ${SPOOLBASE}/etc
.if !defined(BATCH)
	@${CP} -p /etc/resolv.conf ${SPOOLBASE}/etc
	@${CP} -p /etc/localtime ${SPOOLBASE}/etc
.endif

	@${ECHO} "Copying examples..."
	@${INSTALL} ${COPY} -g uucp -o root -m 0640		\
		${WRKSRC}/antirelay_check_rules_example	\
		${SPOOLBASE}/etc/antirelay_check_rules.example
	@${INSTALL} ${COPY} -g uucp -o root -m 0640		\
		${WRKSRC}/antispam_check_rules.example	\
		${SPOOLBASE}/etc
	@${INSTALL} ${COPY} -g uucp -o root -m 0640		\
		${WRKSRC}/smtpd_check_rules.example	\
		${SPOOLBASE}/etc

	@${ECHO} "Creating startup file..."
	@${SED} s+!!PREFIX!!+${PREFIX}+		\
		< ${FILESDIR}/smtpd.sh		\
		> ${PREFIX}/etc/rc.d/smtpd.sh
	@${CHMOD} 0700 ${PREFIX}/etc/rc.d/smtpd.sh
	@${CHOWN} 0.0 ${PREFIX}/etc/rc.d/smtpd.sh

	@${ECHO} "Done!"

	@${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>