diff options
author | Christian Heim <phreak@gentoo.org> | 2007-12-26 21:42:31 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2007-12-26 21:42:31 +0000 |
commit | 788a2af294213bff6397696079daf9f044c5c141 (patch) | |
tree | 24e52b3600a3aee47257b1c63fe626f99fff6d79 | |
parent | Adjusting RESTRICT=nomirror to be RESTRICT=mirror. (diff) | |
download | gentoo-2-788a2af294213bff6397696079daf9f044c5c141.tar.gz gentoo-2-788a2af294213bff6397696079daf9f044c5c141.tar.bz2 gentoo-2-788a2af294213bff6397696079daf9f044c5c141.zip |
Fixing the useless dodoc of INSTALL and COPYING, fixing the unquoted variables.
(Portage version: 2.1.3.19)
-rw-r--r-- | net-mail/courierpassd/ChangeLog | 5 | ||||
-rw-r--r-- | net-mail/courierpassd/courierpassd-1.1.2.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-mail/courierpassd/ChangeLog b/net-mail/courierpassd/ChangeLog index 7209ac0667d9..4250d561f382 100644 --- a/net-mail/courierpassd/ChangeLog +++ b/net-mail/courierpassd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-mail/courierpassd # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/courierpassd/ChangeLog,v 1.3 2007/12/26 21:39:47 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/courierpassd/ChangeLog,v 1.4 2007/12/26 21:42:31 phreak Exp $ + + 26 Dec 2007; Christian Heim <phreak@gentoo.org> courierpassd-1.1.2.ebuild: + Fixing the useless dodoc of INSTALL and COPYING, fixing the unquoted variables. 26 Dec 2007; Christian Heim <phreak@gentoo.org> courierpassd-1.1.2.ebuild: Adjusting RESTRICT=nomirror to be RESTRICT=mirror. diff --git a/net-mail/courierpassd/courierpassd-1.1.2.ebuild b/net-mail/courierpassd/courierpassd-1.1.2.ebuild index da6e1c5b7962..8533557ba5f0 100644 --- a/net-mail/courierpassd/courierpassd-1.1.2.ebuild +++ b/net-mail/courierpassd/courierpassd-1.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/courierpassd/courierpassd-1.1.2.ebuild,v 1.2 2007/12/26 21:39:47 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/courierpassd/courierpassd-1.1.2.ebuild,v 1.3 2007/12/26 21:42:31 phreak Exp $ inherit eutils DESCRIPTION="Courierpassd is a utility for changing a user's password from across a network" @@ -18,12 +18,12 @@ DEPEND="net-libs/courier-authlib RDEPEND="${DEPEND}" src_install() { - emake DESTDIR=${D} install || die "emake install failed" + emake DESTDIR="${D}" install || die "emake install failed" if use xinetd; then insinto /etc/xinetd.d - doins ${FILESDIR}/courierpassd || die "doins failed" + doins "${FILESDIR}/courierpassd" || die "doins failed" fi - dodoc README AUTHORS COPYING ChangeLog INSTALL NEWS || die "dodoc failed" + dodoc README AUTHORS ChangeLog NEWS || die "dodoc failed" } |