blob: a76bce476b6b825ec123b6116210a684c97ada01 (
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
44
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/qmail-autoresponder/qmail-autoresponder-0.95.ebuild,v 1.9 2003/03/23 09:57:41 vladimir Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Rate-limited autoresponder for qmail."
SRC_URI="http://untroubled.org/qmail-autoresponder/${P}.tar.gz"
HOMEPAGE="http://untroubled.org/qmail-autoresponder/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc ppc"
DEPEND="virtual/glibc"
RDEPEND=">=net-mail/qmail-1.03-r7"
src_compile() {
cd ${S}
echo "gcc ${CFLAGS}" > conf-cc
echo "gcc" > conf-ld
emake || die
}
src_install () {
exeinto /usr/bin
doexe qmail-autoresponder
doman qmail-autoresponder.1
dodoc ANNOUNCEMENT FILES NEWS README TARGETS TODO VERSION
}
pkg_postinst() {
echo
einfo "Using qmail-autoresponder ..."
echo
einfo "Put \"|qmail-autoresponder MESSAGE_FILE DIRECTORY\" into your \".qmail\""
einfo "file before other delivery instructions. MESSAGE_FILE is a"
einfo "pre-formatted response, including headers, and DIRECTORY is the"
einfo "directory into which rate-limiting information will be stored. Any"
einfo "instance of "%S" in MESSAGE_FILE will be replaced with the original"
einfo "subject."
echo
}
|