mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
2c0a632ba8
mini_sendmail reads its standard input up to an end-of-file and sends a copy of the message found there to all of the addresses listed. The message is sent by connecting to a local SMTP server. This means mini_sendmail can be used to send email from inside a chroot(2) area.
27 lines
618 B
Makefile
27 lines
618 B
Makefile
# Ports collection makefile for: mini_sendmail
|
|
# Date created: 11 July 2003
|
|
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mini_sendmail
|
|
PORTVERSION= 1.3.2
|
|
CATEGORIES+= mail ipv6
|
|
MASTER_SITES= http://www.acme.com/software/mini_sendmail/
|
|
|
|
MAINTAINER= demon@FreeBSD.org
|
|
COMMENT= Tiny MTA with only smart relay capability
|
|
|
|
MAN8= mini_sendmail.8
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && \
|
|
${CC} ${CFLAGS} -static -o ${PORTNAME} ${PORTNAME}.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${MAN8PREFIX}/man/man8/
|
|
|
|
.include <bsd.port.mk>
|