blob: 2dc9265becdbb9047fd8a2e93ebf6eeca7cd00cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/qmail-notify/qmail-notify-0.93.ebuild,v 1.14 2004/10/26 20:02:14 slarti Exp $
inherit toolchain-funcs
DESCRIPTION="Delayed delivery notification for qmail."
SRC_URI="http://untroubled.org/qmail-notify/${P}.tar.gz"
HOMEPAGE="http://untroubled.org/qmail-notify/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc"
IUSE=""
DEPEND="virtual/libc"
RDEPEND="virtual/cron
mail-mta/qmail"
src_compile() {
cd ${S}
echo "$(tc-getCC) ${CFLAGS}" > conf-cc
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
emake || die
}
src_install () {
exeinto /usr/sbin
doexe qmail-notify
exeinto /etc/cron.hourly
doexe ${FILESDIR}/qmail-notify.cron
dodoc README ANNOUNCEMENT TODO cron.hourly
}
pkg_postinst() {
echo
einfo "Edit qmail-notify.cron in /etc/cron.hourly"
einfo "to activate qmail-notify!"
echo
}
|