diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2010-10-04 12:40:02 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2010-10-04 12:40:02 +0000 |
commit | a92c3fbfc36e24be26c025effa9ada603b79196a (patch) | |
tree | 5625bba8e7e34e4030850a13a839afd7722a645d /net-mail/vchkuser/vchkuser-0.4.ebuild | |
parent | Respect LDFLAGS. Bug #337241 (diff) | |
download | gentoo-2-a92c3fbfc36e24be26c025effa9ada603b79196a.tar.gz gentoo-2-a92c3fbfc36e24be26c025effa9ada603b79196a.tar.bz2 gentoo-2-a92c3fbfc36e24be26c025effa9ada603b79196a.zip |
version bump
(Portage version: 2.2_rc83/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/vchkuser/vchkuser-0.4.ebuild')
-rw-r--r-- | net-mail/vchkuser/vchkuser-0.4.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/net-mail/vchkuser/vchkuser-0.4.ebuild b/net-mail/vchkuser/vchkuser-0.4.ebuild new file mode 100644 index 000000000000..76a6360d48c5 --- /dev/null +++ b/net-mail/vchkuser/vchkuser-0.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/vchkuser/vchkuser-0.4.ebuild,v 1.1 2010/10/04 12:40:02 hollow Exp $ + +EAPI="3" + +inherit autotools qmail + +DESCRIPTION="qmail-spp plugin to check recipient existance with vpopmail" +HOMEPAGE="http://github.com/hollow/vchkuser" +SRC_URI="http://github.com/hollow/vchkuser/tarball/v${PV} -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND="net-mail/vpopmail + || ( mail-mta/netqmail[qmail-spp] mail-mta/qmail-ldap[qmail-spp] )" +RDEPEND="" + +S="${WORKDIR}/hollow-${PN}-8a048f7" + +src_prepare() { + eautoreconf +} + +src_configure() { + econf \ + $(use_enable debug) \ + --with-vpopuser=vpopmail \ + --with-qmailgroup=nofiles \ + --with-vpopmaildir=/var/vpopmail \ + --with-qmaildir=${QMAIL_HOME} +} + +src_install() { + emake DESTDIR="${D}" install || die "emake failed" + fowners vpopmail:nofiles "${QMAIL_HOME}"/plugins/vchkuser + fperms 4750 "${QMAIL_HOME}"/plugins/vchkuser +} |