diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2003-07-11 10:03:02 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2003-07-11 10:03:02 +0000 |
commit | 2c0a632ba8f7b1c015de57f201a8cd0734c6273e (patch) | |
tree | 11c3ae8f6d74eaa5847a108611063e5bcec35c96 | |
parent | d32ebd314144b77e0e2580b8560830feb0ff4ba0 (diff) | |
download | ports-2c0a632ba8f7b1c015de57f201a8cd0734c6273e.tar.gz ports-2c0a632ba8f7b1c015de57f201a8cd0734c6273e.zip |
Notes
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/mini_sendmail/Makefile | 26 | ||||
-rw-r--r-- | mail/mini_sendmail/distinfo | 1 | ||||
-rw-r--r-- | mail/mini_sendmail/pkg-descr | 6 | ||||
-rw-r--r-- | mail/mini_sendmail/pkg-plist | 1 |
5 files changed, 35 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index e23e78e10899..cdfb517d1e6a 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -149,6 +149,7 @@ SUBDIR += mew2-xemacs21 SUBDIR += mew2-xemacs21-mule SUBDIR += mimedefang + SUBDIR += mini_sendmail SUBDIR += minimalist SUBDIR += ml SUBDIR += mmc diff --git a/mail/mini_sendmail/Makefile b/mail/mini_sendmail/Makefile new file mode 100644 index 000000000000..4034944a5f33 --- /dev/null +++ b/mail/mini_sendmail/Makefile @@ -0,0 +1,26 @@ +# 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> diff --git a/mail/mini_sendmail/distinfo b/mail/mini_sendmail/distinfo new file mode 100644 index 000000000000..846a9261f76a --- /dev/null +++ b/mail/mini_sendmail/distinfo @@ -0,0 +1 @@ +MD5 (mini_sendmail-1.3.2.tar.gz) = f705a89b0b9aeaf28dbffbedee4cb1d3 diff --git a/mail/mini_sendmail/pkg-descr b/mail/mini_sendmail/pkg-descr new file mode 100644 index 000000000000..7980635160b3 --- /dev/null +++ b/mail/mini_sendmail/pkg-descr @@ -0,0 +1,6 @@ +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. + +WWW: http://www.acme.com/software/mini_sendmail/ diff --git a/mail/mini_sendmail/pkg-plist b/mail/mini_sendmail/pkg-plist new file mode 100644 index 000000000000..43487b0808d5 --- /dev/null +++ b/mail/mini_sendmail/pkg-plist @@ -0,0 +1 @@ +bin/mini_sendmail |