# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="" HOMEPAGE="http://wiki.dovecot.org/LDA#head-124160fcd4386aa01a03b637f27db14d9adad06c" SRC_URI="http://gentoo.thev0id.net/distfiles/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="" DEPEND=">=net-mail/dovecot-1.0_rc2-r1" RDEPEND=">=net-mail/dovecot-1.0_rc2-r1" pkg_setup() { if ( ! built_with_use net-mail/dovecot plugin-libs ) ; then eerror "You need net-mail/dovecot compiled with the 'plugin-libs'" eerror "USE flag to be able to install this Dovecot plugin." die "need net-mail/dovecot with plugin-libs" fi } src_compile() { econf --with-dovecot=/usr/lib/dovecot/pluginlibs \ --with-ioloop=best \ --with-poll=best || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" }