diff options
author | Thilo Bangert <bangert@gentoo.org> | 2002-06-28 03:01:28 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2002-06-28 03:01:28 +0000 |
commit | b287deabb36e53bed8bd18a4592232f40824c0eb (patch) | |
tree | 99514c80e7ae7d5fdb6abc5a7cfea0903a294ff1 /sys-apps/fcron | |
parent | added masked version of unreleased mysql-4.0.1 (diff) | |
download | historical-b287deabb36e53bed8bd18a4592232f40824c0eb.tar.gz historical-b287deabb36e53bed8bd18a4592232f40824c0eb.tar.bz2 historical-b287deabb36e53bed8bd18a4592232f40824c0eb.zip |
fix bug #4242 - thanks avi. added slot=0
Diffstat (limited to 'sys-apps/fcron')
-rw-r--r-- | sys-apps/fcron/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/fcron/fcron-2.0.0-r1.ebuild | 7 |
2 files changed, 10 insertions, 5 deletions
diff --git a/sys-apps/fcron/ChangeLog b/sys-apps/fcron/ChangeLog index cf051bb2d2c3..390aeae86b5e 100644 --- a/sys-apps/fcron/ChangeLog +++ b/sys-apps/fcron/ChangeLog @@ -1,13 +1,15 @@ # ChangeLog for sys-apps/fcron # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/ChangeLog,v 1.3 2002/05/31 19:48:00 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/ChangeLog,v 1.4 2002/06/28 03:01:28 bangert Exp $ + + 31 May 2002; Thilo Bangert <bangert@gentoo.org> fcron-2.0.0-r1.ebuild : + fix for --path-to-editor - reported by avi schwartz + added SLOT="0" 31 May 2002; Thilo Bangert <bangert@gentoo.org> fcron-2.0.0-r1.ebuild : - fix for autoconf troubles - contributed by bZ at iq dash computing dot de 4 May 2002; Thilo Bangert <bangert@gentoo.org> fcron-2.0.0-r1.ebuild : - added LICENSE - lintoolize diff --git a/sys-apps/fcron/fcron-2.0.0-r1.ebuild b/sys-apps/fcron/fcron-2.0.0-r1.ebuild index 6cdeab8ebb64..bb0e2ec1b2f4 100644 --- a/sys-apps/fcron/fcron-2.0.0-r1.ebuild +++ b/sys-apps/fcron/fcron-2.0.0-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Jerry A! <jerry@gentoo.org>, Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/fcron-2.0.0-r1.ebuild,v 1.4 2002/05/31 19:48:00 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/fcron-2.0.0-r1.ebuild,v 1.5 2002/06/28 03:01:28 bangert Exp $ DESCRIPTION="A command scheduler with extended capabilities over cron and anacron" HOMEPAGE="http://fcron.free.fr/" @@ -9,12 +9,14 @@ HOMEPAGE="http://fcron.free.fr/" S=${WORKDIR}/${P} SRC_URI="http://fcron.free.fr/${P}.src.tar.gz" LICENSE="GPL-2" +SLOT="0" DEPEND="virtual/glibc" RDEPEND="!virtual/cron sys-apps/cronbase - virtual/mta" + virtual/mta + app-editors/vim" PROVIDE="virtual/cron" @@ -37,6 +39,7 @@ src_compile() { --with-etcdir=/etc/fcron \ --with-spooldir=/var/spool/cron \ --with-sendmail=/usr/sbin/sendmail \ + --with-editor=/usr/bin/vim \ --with-cflags="${CFLAGS}" --host=${CHOST} || die "bad configure" emake || die "compile problem" |