Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 101658 - app-office/ical doesn't compile
Summary: app-office/ical doesn't compile
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: No maintainer - Look at https://wiki.gentoo.org/wiki/Project:Proxy_Maintainers if you want to take care of it
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-07 10:00 UTC by Jesper Brodersen (RETIRED)
Modified: 2005-12-24 11:25 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
config.log (config.log,40.14 KB, text/plain)
2005-08-07 10:02 UTC, Jesper Brodersen (RETIRED)
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jesper Brodersen (RETIRED) gentoo-dev 2005-08-07 10:00:54 UTC
ical will not compile on my computer. Also others seem to have this issue.
See output in attachment. bump to ~x86?

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Jesper Brodersen (RETIRED) gentoo-dev 2005-08-07 10:02:07 UTC
Created attachment 65329 [details]
config.log
Comment 2 Andy Kissner 2005-08-07 12:19:05 UTC
emerge --info?
Comment 3 Jesper Brodersen (RETIRED) gentoo-dev 2005-08-07 13:54:58 UTC
Portage 2.0.51.22-r2 (default-linux/x86/2005.0, gcc-3.3.5-20050130,
glibc-2.3.5-r0, 2.6.11-gentoo-r5 i686)
=================================================================
System uname: 2.6.11-gentoo-r5 i686 AMD Athlon(tm) 64 Processor 2800+
Gentoo Base System version 1.6.13
dev-lang/python:     2.3.5
sys-apps/sandbox:    1.2.11
sys-devel/autoconf:  2.13, 2.59-r6
sys-devel/automake:  1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.5
sys-devel/binutils:  2.15.92.0.2-r10
sys-devel/libtool:   1.5.18-r1
virtual/os-headers:  2.6.11-r2
ACCEPT_KEYWORDS="x86"
AUTOCLEAN="yes"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-march=athlon-xp -O2 -pipe"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3.3/env
/usr/kde/3.3/share/config /usr/kde/3.3/shutdown /usr/kde/3.4/env
/usr/kde/3.4/share/config /usr/kde/3.4/shutdown /usr/kde/3/share/config
/usr/lib/X11/xkb /usr/lib/mozilla/defaults/pref /usr/share/config
/var/qmail/control"
CONFIG_PROTECT_MASK="/etc/gconf /etc/terminfo /etc/env.d"
CXXFLAGS="-march=athlon-xp -O2 -pipe"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoconfig distlocks sfperms strict"
GENTOO_MIRRORS="http://distfiles.gentoo.org
http://distro.ibiblio.org/pub/Linux/distributions/gentoo"
LC_ALL="da_DK"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage"
SYNC="rsync://rsync.europe.gentoo.org/gentoo-portage"
USE="x86 X alsa apm avi berkdb bitmap-fonts cdr crypt cups curl dbus dvd eds
emboss encode esd fam foomaticdb fortran gd gdbm gif gnome gpm gstreamer gtk
gtk2 hal imagemagick imap imlib ipv6 java jpeg junit libg++ libwww live mad mbox
mikmod mmx motif mozilla mp3 mpeg mysql ncurses nls nptl ogg oggvorbis opengl
oss pam pdflib perl png python qt quicktime readline real ruby sdl spell sqlite
sse sse2 ssl svga tcltk tcpd theora tiff timidity truetype truetype-fonts
type1-fonts unicode vorbis win32codecs xine xml2 xmms xv xvid zlib userland_GNU
kernel_linux elibc_glibc"
Unset:  ASFLAGS, CTARGET, LANG, LDFLAGS, LINGUAS
Comment 4 Sascha Lucas 2005-08-15 04:38:02 UTC
bug #101502 shows the solution (for me):

To fix this problem, replace in /usr/portage/app-office/ical/ical-2.2.1.ebuild

src_compile() {
    autoconf
    econf --with-tclsh=/usr/bin/tclsh || die
    emake -j1 || die "make failed"
}

with

src_compile() {
    econf --with-tclsh=/usr/bin/tclsh || die
    emake -j1 || die "make failed"
}

then run: ebuild /usr/portage/app-office/ical/ical-2.2.1.ebuild digest

and it will work
Comment 5 Thorsten Hirsch 2005-09-03 06:53:49 UTC
I had the same problem, your fix (removing the autoconf line) works.
Comment 6 Marcelo Goes (RETIRED) gentoo-dev 2005-12-24 11:25:57 UTC
Autoconf line is gone in cvs.
Thanks!