Bug 101658 - app-office/ical doesn't compile
Bug#: 101658 Product:  Gentoo Linux Version: unspecified Platform: x86
OS/Version: Linux Status: RESOLVED Severity: normal Priority: P2
Resolution: FIXED Assigned To: maintainer-needed@gentoo.org Reported By: broeman@gentoo.org
Component: Ebuilds
URL: 
Summary: app-office/ical doesn't compile
Keywords:  
Status Whiteboard: 
Opened: 2005-08-07 10:00 0000
Description:   Opened: 2005-08-07 10:00 0000
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 From Jesper Brodersen (RETIRED) 2005-08-07 10:02:07 0000 -------
Created an attachment (id=65329) [details]
config.log

------- Comment #2 From Andy Kissner 2005-08-07 12:19:05 0000 -------
emerge --info?

------- Comment #3 From Jesper Brodersen (RETIRED) 2005-08-07 13:54:58 0000 -------
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 From Sascha Lucas 2005-08-15 04:38:02 0000 -------
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 From Thorsten Hirsch 2005-09-03 06:53:49 0000 -------
I had the same problem, your fix (removing the autoconf line) works.

------- Comment #6 From Marcelo Goes 2005-12-24 11:25:57 0000 -------
Autoconf line is gone in cvs.
Thanks!