aboutsummaryrefslogtreecommitdiff
path: root/mail/mailagent/Makefile
blob: 6f8a788ac6cc29179ec30ef9fea02a9d6e8a636d (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
# Created by: Masafumi NAKANE <max@FreeBSD.org>
# $FreeBSD$

PORTNAME=		mailagent
PORTVERSION=		3.1.77
CATEGORIES=		mail
MASTER_SITES=		http://eron.info/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	A sophisticated automatic mail-processing tool

USES=		perl5
USE_BZIP2=	yes

NO_PACKAGE=	Correct FQDN needs to be hardcoded
IS_INTERACTIVE=		yes
HAS_CONFIGURE=		yes
CONFIGURE_SCRIPT=	Configure
CONFIGURE_ARGS=		-dres \
			-Dperlpath='${PERL}' \
			-Dccflags='${CFLAGS}' \
			-Dd_flockonly='define' \
			-Dutmp='/var/run/utmp' \
			-Dprefix='${PREFIX}' -Dmansrc='${PREFIX}/man/man1'
MAKE_JOBS_UNSAFE=	yes
MAKE_ENV=	PATH=`dirname ${PERL5}`:${PATH}
INSTALL_TARGET=	install install.man

MAN1=		edusers.1 mailagent.1 package.1 mailhelp.1
MLINKS=		mailhelp.1 maildist.1  mailhelp.1 mailpatch.1 \
		mailhelp.1 maillist.1

NO_STAGE=	yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} > 900006
EXTRA_PATCHES=	${PATCHDIR}/extra-patch-utmpx-agent_pl_utmp_utmp.pl \
		${PATCHDIR}/extra-patch-utmpx-agent_pl_utmp_Makefile.SH
.endif

pre-extract:
	@if [ `${SH} -c umask` != 0022 ]; then \
	  ${ECHO} "Please set umask to 022 before running make,"; \
	  ${ECHO} "or mailagent will not build successfully."; \
	  ${FALSE}; fi
	@if [ `id -u` = 0 ]; then \
	  ${ECHO} "Do not build mailagent as root or it won't pass the sanity tests."; \
	  ${FALSE}; fi

post-patch:
	@(cd ${WRKSRC}; \
	  ${REINPLACE_CMD} -i '' -e 's|exec perl -S|exec ${PERL} -S|' \
	    agent/edusers.SH agent/magent.sh agent/maildist.SH \
	    agent/mailhelp.SH agent/maillist.SH agent/mailpatch.SH \
	    agent/package.SH agent/test/TEST agent/test/atail \
	    bin/perload misc/getcost/getcost misc/mime/unmime \
	    misc/news/newsgate)

post-install:
	@${MKDIR} ${EXAMPLESDIR}/misc
	${CP} -pR ${WRKSRC}/misc/* ${EXAMPLESDIR}/misc
	@${LN} -fs ${PREFIX}/lib/mailagent/examples ${EXAMPLESDIR}/agent

.include <bsd.port.post.mk>