diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-03-10 14:26:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-03-10 14:26:51 +0000 |
commit | 1ceeb07b898dd5abb7f7b6874ac4d80faf57be52 (patch) | |
tree | d1789a6c6102f2c4b6f73c52ed03c336b571542c /net-mail | |
parent | Version bump, patch taken from Flameeyes overlay (diff) | |
download | gentoo-2-1ceeb07b898dd5abb7f7b6874ac4d80faf57be52.tar.gz gentoo-2-1ceeb07b898dd5abb7f7b6874ac4d80faf57be52.tar.bz2 gentoo-2-1ceeb07b898dd5abb7f7b6874ac4d80faf57be52.zip |
stop using $IMAGE
(Portage version: 2.1.2.2)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/perdition/perdition-1.17.ebuild | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/net-mail/perdition/perdition-1.17.ebuild b/net-mail/perdition/perdition-1.17.ebuild index 5e4f7b1d7a5e..a1fb5ad66d09 100644 --- a/net-mail/perdition/perdition-1.17.ebuild +++ b/net-mail/perdition/perdition-1.17.ebuild @@ -1,15 +1,15 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/perdition/perdition-1.17.ebuild,v 1.4 2007/03/04 20:11:31 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/perdition/perdition-1.17.ebuild,v 1.5 2007/03/10 14:26:51 vapier Exp $ inherit eutils -DESCRIPTION="Perdition is a modular and fully featured POP3 and IMAP4 proxy." -SRC_URI="http://www.vergenet.net/linux/${PN}/download/${PV}/${P}.tar.gz" +DESCRIPTION="modular and fully featured POP3 and IMAP4 proxy" HOMEPAGE="http://www.vergenet.net/linux/perdition/" +SRC_URI="http://www.vergenet.net/linux/${PN}/download/${PV}/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="~x86" IUSE="nls pam ssl mysql odbc postgres gdbm ldap" @@ -37,24 +37,23 @@ src_compile() { $(use_enable odbc) \ $(use_enable postgres) \ $(use_enable gdbm) \ - $(use_enable ldap) || die "econf failed" - + $(use_enable ldap) \ + || die "econf failed" emake || die "emake failed" } src_install() { - make DESTDIR=${D} install || die "install failed" + make DESTDIR="${D}" install || die "install failed" dodoc README AUTHORS TODO - newinitd "${FILESDIR}/perdition.initd" perdition - newconfd "${FILESDIR}/perdition.confd" perdition + newinitd "${FILESDIR}"/perdition.initd perdition + newconfd "${FILESDIR}"/perdition.confd perdition keepdir /var/run/perdition } pkg_preinst() { - einfo "Checking for user perdition, creating if missing" enewuser perdition - chown perdition ${IMAGE}/var/run/perdition + chown perdition "${D}"/var/run/perdition } |