diff options
author | nbm <nbm@FreeBSD.org> | 2002-10-08 23:15:54 +0800 |
---|---|---|
committer | nbm <nbm@FreeBSD.org> | 2002-10-08 23:15:54 +0800 |
commit | d28b4cf8432a642c044a9f0f5b53ef393ef35890 (patch) | |
tree | a7feedbac5db897ba78c27062e6875ab16db6553 /mail/qmail-notify/Makefile | |
parent | cbb0859567ae1dd6bdf2e3c19255fbb3a80a919a (diff) | |
download | freebsd-ports-gnome-d28b4cf8432a642c044a9f0f5b53ef393ef35890.tar.gz freebsd-ports-gnome-d28b4cf8432a642c044a9f0f5b53ef393ef35890.tar.zst freebsd-ports-gnome-d28b4cf8432a642c044a9f0f5b53ef393ef35890.zip |
Add qmail-notify 0.93, delayed delivery notification for qmail.
PR: 41957
Submitted by: Sergei Kolobov <sergei@kolobov.com>
Diffstat (limited to 'mail/qmail-notify/Makefile')
-rw-r--r-- | mail/qmail-notify/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mail/qmail-notify/Makefile b/mail/qmail-notify/Makefile new file mode 100644 index 000000000000..8c35673b4c34 --- /dev/null +++ b/mail/qmail-notify/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: qmail-notify +# Date created: 24 Aug 2002 +# Whom: Sergei Kolobov <sergei@kolobov.com> +# +# $FreeBSD$ +# + +PORTNAME= qmail-notify +PORTVERSION= 0.93 +CATEGORIES= mail +MASTER_SITES= http://untroubled.org/qmail-notify/ + +MAINTAINER= sergei@kolobov.com + +EXAMPLES= cron.hourly message.txt +DOCS= ANNOUNCEMENT COPYING NEWS README TODO + +pre-build: + ${ECHO_CMD} ${PREFIX}/bin > ${WRKSRC}/conf-bin + ${ECHO_CMD} ${CC} ${CFLAGS} -DHAVE_SRANDOM > ${WRKSRC}/conf-cc + +do-install: + cd ${WRKSRC} && ./installer + ${MKDIR} ${EXAMPLESDIR} +.for file in ${EXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR} +.endfor +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for file in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |