diff options
author | Andrej Kacian <ticho@gentoo.org> | 2007-03-04 18:36:00 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2007-03-04 18:36:00 +0000 |
commit | ec888affec5246c4f228d9ab0c412b87acbdabe3 (patch) | |
tree | 2780d777207496f73c529b444ba76924e20009dc /net-mail/email/email-2.5.0.ebuild | |
parent | Replaced einfo with elog in pkg_postinst in 2.6. Dropped 2.7 and 2.9. Added N... (diff) | |
download | gentoo-2-ec888affec5246c4f228d9ab0c412b87acbdabe3.tar.gz gentoo-2-ec888affec5246c4f228d9ab0c412b87acbdabe3.tar.bz2 gentoo-2-ec888affec5246c4f228d9ab0c412b87acbdabe3.zip |
Look for CLOCK setting in /etc/conf.d/net, where it's been moved. Bug #169338, reported by Gerben Vos <gpvos+gnt at xs4all.nl>. Removed ebuild for 2.3.4.
(Portage version: 2.1.2-r11)
Diffstat (limited to 'net-mail/email/email-2.5.0.ebuild')
-rw-r--r-- | net-mail/email/email-2.5.0.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-mail/email/email-2.5.0.ebuild b/net-mail/email/email-2.5.0.ebuild index bd2ed4478f60..836befedb31c 100644 --- a/net-mail/email/email-2.5.0.ebuild +++ b/net-mail/email/email-2.5.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/email/email-2.5.0.ebuild,v 1.4 2006/10/12 01:28:45 ferdy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/email/email-2.5.0.ebuild,v 1.5 2007/03/04 18:36:00 ticho Exp $ DESCRIPTION="Advanced CLI tool for sending email." HOMEPAGE="http://email.cleancode.org" @@ -16,8 +16,8 @@ DEPEND="virtual/libc" src_compile() { local myconf="" - if [ -f /etc/rc.conf ]; then - . /etc/rc.conf + if [ -f /etc/conf.d/clock ]; then + . /etc/conf.d/clock if [ x$CLOCK = "xUTC" ]; then einfo "Using UTC timestamps (from /etc/rc.conf)" myconf="${myconf} --with-utc" |