freebsd-ports/mail/mini_sendmail/Makefile
Dmitry Sivachenko 2c0a632ba8 New port: mini_sendmail.
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.
2003-07-11 10:03:02 +00:00

26 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>