mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
4aaab89f57
PR: ports/122674 Submitted by: Philip M. Gollucci <pgollucci@p6m7g8.com> Reworked by: araujo (myself) Approved by: portmgr (pav)
33 lines
758 B
Makefile
33 lines
758 B
Makefile
# New ports collection makefile for: Sendmail::Milter
|
|
# Date created: 25 March 2003
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Sendmail-Milter
|
|
PORTVERSION= 0.18
|
|
CATEGORIES= mail perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= marc@pilgerer.org
|
|
COMMENT= Module to write mail filters in Perl using sendmail's mail filter API
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= Sendmail::Milter.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if exists(${PERL5})
|
|
PERLTHREADS!= ${PERL5} -V:usethreads | ${AWK} '/define/ { print "define"; exit }'
|
|
.if ${PERLTHREADS} != "define"
|
|
IGNORE= requires perl to be built with -DWITH_THREADS
|
|
.endif
|
|
.else
|
|
IGNORE= requires an existing installation of perl, built with -DWITH_THREADS
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|