blob: 0eaed99cf3eecc4e5fa6f3c20d1974b7ddd93ab6 (
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
|
# New ports collection makefile for: spamass-milter
# Date created: 29 April 2002
# Whom: Eugene M. Kim <ab@astralblue.net>
#
# $FreeBSD$
#
PORTNAME= spamass-milter
PORTVERSION= 0.1.2
CATEGORIES= mail
MASTER_SITES= http://freesoftware.fsf.org/download/spamass-milt/
MAINTAINER= ab@astralblue.net
BUILD_DEPENDS= spamc:${PORTSDIR}/mail/p5-Mail-SpamAssassin \
autoconf:${PORTSDIR}/devel/autoconf
RUN_DEPENDS= spamc:${PORTSDIR}/mail/p5-Mail-SpamAssassin
.if !exists(/usr/lib/libmilter.a)
IGNORE= requires Sendmail 8.12; upgrade the base system
.endif
USE_AUTOMAKE_VER= 15
AUTOCONF= autoconf
AUTOCONF_DIR= ${LOCALBASE}/share/autoconf
MAN1= spamass-milter.1
post-patch:
.for f in spamass-milter.sh.dist activation.txt
${SED} -e 's|/usr/local|${PREFIX}|g' \
${FILESDIR}/${f} > ${WRKDIR}/${f}
.endfor
post-install:
${INSTALL_DATA} ${WRKDIR}/spamass-milter.sh.dist \
${PREFIX}/etc/rc.d/spamass-milter.sh.dist
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKDIR}/activation.txt ${DOCSDIR}/activation.txt
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|