summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2002-04-24 15:52:28 +0000
committerThilo Bangert <bangert@gentoo.org>2002-04-24 15:52:28 +0000
commita4234e550a0b4bdbe32adfbe6d7e3556b1b733d3 (patch)
tree29e2580aa3cb1ab60fa7ee2f4e7c03fc38adc155 /net-mail/qmail-notify
parentadded Wout's descriptions for slp, zope and xface (diff)
downloadhistorical-a4234e550a0b4bdbe32adfbe6d7e3556b1b733d3.tar.gz
historical-a4234e550a0b4bdbe32adfbe6d7e3556b1b733d3.tar.bz2
historical-a4234e550a0b4bdbe32adfbe6d7e3556b1b733d3.zip
qmail-notify - delayed delivery notifier for qmail
Diffstat (limited to 'net-mail/qmail-notify')
-rw-r--r--net-mail/qmail-notify/ChangeLog13
-rw-r--r--net-mail/qmail-notify/files/digest-qmail-notify-0.921
-rw-r--r--net-mail/qmail-notify/qmail-notify-0.92.ebuild43
3 files changed, 57 insertions, 0 deletions
diff --git a/net-mail/qmail-notify/ChangeLog b/net-mail/qmail-notify/ChangeLog
new file mode 100644
index 000000000000..0844a26fec64
--- /dev/null
+++ b/net-mail/qmail-notify/ChangeLog
@@ -0,0 +1,13 @@
+# ChangeLog for net-mail/qmail-notify
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# /space/gentoo/cvsroot/gentoo-x86/skel.ChangeLog,v 1.2 2002/02/05 00:57:47 gbevin Exp
+
+*qmail-notify-0.92 (17 Apr 2002)
+
+ 17 Apr 2002; Thilo Bangert <bangert@gentoo.org> *qmail-notify-0.74:
+
+ added virtual/cron dependancy - installed cron file to /etc/cron.hourly
+
+ 13 Mar 2002; Thilo Bangert <thilo.bangert@gmx.net> ChangeLog:
+
+ initial release
diff --git a/net-mail/qmail-notify/files/digest-qmail-notify-0.92 b/net-mail/qmail-notify/files/digest-qmail-notify-0.92
new file mode 100644
index 000000000000..633f36b080d8
--- /dev/null
+++ b/net-mail/qmail-notify/files/digest-qmail-notify-0.92
@@ -0,0 +1 @@
+MD5 e786c23c0cc79000ad740ba5070fabe0 qmail-notify-0.92.tar.gz 15820
diff --git a/net-mail/qmail-notify/qmail-notify-0.92.ebuild b/net-mail/qmail-notify/qmail-notify-0.92.ebuild
new file mode 100644
index 000000000000..084c70c2df7d
--- /dev/null
+++ b/net-mail/qmail-notify/qmail-notify-0.92.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2
+# Maintainer: Thilo Bangert <bangert@gentoo.org>
+# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.3 2002/02/04 15:46:51 gbevin Exp
+
+S=${WORKDIR}/${P}
+
+DEPEND="virtual/glibc"
+
+RDEPEND="virtual/cron
+ net-mail/qmail"
+
+DESCRIPTION="Delayed delivery notification for qmail."
+SRC_URI="http://untroubled.org/qmail-notify/${P}.tar.gz"
+
+HOMEPAGE="http://untroubled.org/qmail-notify/"
+
+src_compile() {
+ cd ${S}
+ echo "gcc ${CFLAGS}" > conf-cc
+ echo "gcc" > conf-ld
+ emake || die
+}
+
+src_install () {
+ exeinto /usr/bin
+ doexe qmail-notify
+
+ exeinto /etc/cron.hourly
+ newexe cron.hourly qmail-notify.cron
+
+ dodoc README ANNOUNCEMENT TODO cron.hourly
+}
+
+
+pkg_postinst() {
+
+ echo
+ einfo "A qmail-notify.cron was put in /etc/cron.hourly!"
+ echo
+
+
+}