# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.1.ebuild,v 1.10 2004/10/26 19:54:07 slarti Exp $ inherit eutils toolchain-funcs 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" IUSE="" DEPEND="virtual/libc dev-libs/bglibs" RDEPEND=">=mail-mta/qmail-1.03-r7" src_unpack() { unpack ${A} # This patch fixes a multi-line string issue with gcc-3.3 # Closes Bug #30137 epatch ${FILESDIR}/${P}-gcc33-multiline-string-fix.patch } src_compile() { cd ${S} echo "/usr/lib/bglibs/include" > conf-bgincs echo "/usr/lib/bglibs/lib" > conf-bglibs echo "$(tc-getCC) ${CFLAGS}" > conf-cc echo "$(tc-getLD) ${LDFLAGS}" > conf-ld make || 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 }