diff options
author | Tom Martin <slarti@gentoo.org> | 2005-04-25 18:55:56 +0000 |
---|---|---|
committer | Tom Martin <slarti@gentoo.org> | 2005-04-25 18:55:56 +0000 |
commit | ef1ad80d8409d57e191da6549b9d82bd7a0e19f0 (patch) | |
tree | 1e537a5e2d2dbdec8e3ba8879f6ece75d10a1551 /eclass/mailer.eclass | |
parent | update digest (diff) | |
download | gentoo-2-ef1ad80d8409d57e191da6549b9d82bd7a0e19f0.tar.gz gentoo-2-ef1ad80d8409d57e191da6549b9d82bd7a0e19f0.tar.bz2 gentoo-2-ef1ad80d8409d57e191da6549b9d82bd7a0e19f0.zip |
stylistic updates
Diffstat (limited to 'eclass/mailer.eclass')
-rw-r--r-- | eclass/mailer.eclass | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/eclass/mailer.eclass b/eclass/mailer.eclass index 6bc48975c4b2..5cde3dfa8fa9 100644 --- a/eclass/mailer.eclass +++ b/eclass/mailer.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mailer.eclass,v 1.3 2005/04/25 16:20:45 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mailer.eclass,v 1.4 2005/04/25 18:55:56 slarti Exp $ # # Original Author: Fernando J. Pereda <ferdy@gentoo.org> @@ -10,12 +10,15 @@ ECLASS="mailer" INHERITED="$INHERITED $ECLASS" -IUSE="${IUSE} mailwrapper" -RDEPEND="${RDEPEND} - mailwrapper? ( net-mail/mailer-config - >=net-mail/mailwrapper-0.2.1-r1 ) - !mailwrapper? ( !virtual/mta )" -PROVIDE="${PROVIDE} virtual/mta" +IUSE="mailwrapper" +RDEPEND="mailwrapper? ( + net-mail/mailer-config + >=net-mail/mailwrapper-0.2.1-r1 + ) + !mailwrapper? ( + !virtual/mta + )" +PROVIDE="virtual/mta" EXPORT_FUNCTIONS pkg_postinst pkg_postrm |