diff options
author | Thilo Bangert <bangert@gentoo.org> | 2002-05-31 19:48:00 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2002-05-31 19:48:00 +0000 |
commit | 25d2a196b4de81da4440cd688c37b67a78d0a84c (patch) | |
tree | 1d5d6d427630b4eccb071ef09c5c43371924da4e | |
parent | Added unrar-3.00-r1, that works with gcc 3.1 (diff) | |
download | historical-25d2a196b4de81da4440cd688c37b67a78d0a84c.tar.gz historical-25d2a196b4de81da4440cd688c37b67a78d0a84c.tar.bz2 historical-25d2a196b4de81da4440cd688c37b67a78d0a84c.zip |
fcron autoconf fix - thanks go to bZ at iq-computing.de
-rw-r--r-- | sys-apps/fcron/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/fcron/fcron-2.0.0-r1.ebuild | 6 |
2 files changed, 10 insertions, 4 deletions
diff --git a/sys-apps/fcron/ChangeLog b/sys-apps/fcron/ChangeLog index de43d80787c1..cf051bb2d2c3 100644 --- a/sys-apps/fcron/ChangeLog +++ b/sys-apps/fcron/ChangeLog @@ -1,8 +1,12 @@ # 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.2 2002/05/04 17:28:32 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/ChangeLog,v 1.3 2002/05/31 19:48:00 bangert Exp $ - 4 May 2002; Thilo Bangert <bangert@gentoo.org> frcon-2.0.0-r1.ebuild : + 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 491499dfe539..6cdeab8ebb64 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.3 2002/05/04 17:28:32 bangert Exp $ +# $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 $ DESCRIPTION="A command scheduler with extended capabilities over cron and anacron" HOMEPAGE="http://fcron.free.fr/" @@ -19,9 +19,11 @@ RDEPEND="!virtual/cron PROVIDE="virtual/cron" src_unpack() { - unpack ${A} ; cd ${S} patch -p0 < ${FILESDIR}/${P}-gentoo.diff || die "bad patchfile" + # fix LIBOBJS vs AC_LIBOBJ problem + mv configure.in configure.in~ + sed <configure.in~ >configure.in -e 's|LIBOBJS|AC_LIBOBJ|g' autoconf || die "autoconf problem" } |