Bug List: (This bug is not in your last search results)   Show last search results      Search page      Enter new bug
Bug#: 81677
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gentoo Linux bug wranglers <bug-wranglers@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Jesse Adelman <jesse@boldandbusted.com>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
mythtverror-0.17.out Large snip from failed emerge text/plain Jesse Adelman 2005-02-11 16:38 0000 58.40 KB Details
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 81677 depends on: Show dependency tree
Bug 81677 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2005-02-11 16:37 0000
OK, there's actually no error message here from within the build process - for
me, the ebuild just "dies" with an "install failed" error, but no error message
is seen from the actual build. The compile completes file, but it fails after
the "make install"

Reproducible: Always
Steps to Reproduce:
1. (unmask media-tv/mythtv-0.17)
2. emerge -uD world
3.

Actual Results:  
(see attachment for large cut of output)

<big snip>

cp -f "mythfrontend_fi.qm"
"/var/tmp/portage/mythtv-0.17/image//usr/share/mythtv
/i18n/"
cp -f "mythfrontend_zh_tw.qm"
"/var/tmp/portage/mythtv-0.17/image//usr/share/myt
htv/i18n/"
make[1]: Leaving directory `/var/tmp/portage/mythtv-0.17/work/mythtv-0.17/i18n'

!!! ERROR: media-tv/mythtv-0.17 failed.
!!! Function src_install, Line 166, Exitcode 1
!!! install failed
!!! If you need support, post the topmost build error, NOT this status message.

<big snip>


Expected Results:  
Installed and completed upgrade

mythtvbox root # emerge info
Portage 2.0.51-r15 (default-linux/x86/2004.3, gcc-3.3.5,
glibc-2.3.4.20040808-r1
, 2.6.10-gentoo-r4 i686)
=================================================================
System uname: 2.6.10-gentoo-r4 i686 AMD Athlon(tm) XP 1600+
Gentoo Base System version 1.4.16
Python:              dev-lang/python-2.3.4-r1 [2.3.4 (#1, Feb  7 2005,
18:44:34)
]
distcc 2.16 i686-pc-linux-gnu (protocols 1 and 2) (default port 3632) [enabled]
ccache version 2.3 [enabled]
dev-lang/python:     2.3.4-r1
sys-devel/autoconf:  2.59-r6, 2.13
sys-devel/automake:  1.7.9-r1, 1.8.5-r3, 1.5, 1.4_p6, 1.6.3, 1.9.4
sys-devel/binutils:  2.15.92.0.2-r1
sys-devel/libtool:   1.5.10-r4
virtual/os-headers:  2.6.8.1-r2
ACCEPT_KEYWORDS="x86"
AUTOCLEAN="yes"
CFLAGS="-march=athlon-xp -O3 -pipe"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3.2/share/config
/usr/kde/
3.3/env /usr/kde/3.3/share/config /usr/kde/3.3/shutdown /usr/kde/3/share/config 
/usr/lib/X11/xkb /usr/share/config /var/qmail/control
/var/www/localhost/htdocs/
/mythweb/config"
CONFIG_PROTECT_MASK="/etc/gconf /etc/terminfo /etc/env.d"
CXXFLAGS="-march=athlon-xp -O3 -pipe"
DISTDIR="/usr/portage/distfiles"
GENTOO_MIRRORS="http://gentoo.binarycompass.org
http://mirror.tucdemonic.org/gentoo/ http://cudlug.cudenver.edu/gentoo/"
MAKEOPTS="-j12"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage"
SYNC="rsync://homeserver-02/gentoo-portage"
USE="x86 3dnow 3dnowex X a52 aac acpi acpi4linux alsa apache2 apm avi
bash-completion berkdb bitmap-fonts cdparanoia cdr chroot crypt cscope cups dga
divx4linux dnd dts dv dvd dvdr dvdread encode esd ethereal evms2 f77 faad fam
fastcgi fbcon ffmpeg flac font-server foomaticdb fortran freetype gcj gd gdbm
gif gphoto2 gpm gtk gtk2 hardenedphp httpd imagemagick imlib java jce jdepend
jikes joystick jp2 jpeg jsch lcd lcms libg++ libwww lirc live lm_sensors lzo
lzw
lzw-tiff mad maildir matroska mikmod mime mjpeg mmx mng motif mpeg mpeg2 mysql
mythtv nagios-dns nagios-ntp nagios-ping nagios-ssh ncurses net nls nptl
offensive ogg oggvorbis opengl optional-tasks oro oscar oss pam pcap pcre
pdflib
perl php png python qt quicktime readline regexp rtc ruby samba sdl silc slang
slp snmp soap sockets spell sse ssl stream svg svga tga theora tiff transcode
truetype truetype-fonts type1-fonts unicode usb utf8 v4l v4l2 vhosts vlm vorbis
wmf xalan xchatnogtk xchattext xerces xfs xine xinerama xml xml2 xmlrpc xmms
xpm
xv xvid yahoo yv12 zlib"
Unset:  ASFLAGS, CBUILD, CTARGET, LANG, LC_ALL, LDFLAGS

------- Comment #1 From Jesse Adelman 2005-02-11 16:38:13 0000 -------
Created an attachment (id=51033) [details]
Large snip from failed emerge

(let me know if you want full output)

------- Comment #2 From Jesse Adelman 2005-02-11 17:49:17 0000 -------
OK! I think I found the problem. In /usr/portage/eclass/myth.eclass, around
line 53:

myth_src_install() {                                                            
    einstall INSTALL_ROOT="${D}"                                                
    for doc in "AUTHORS COPYING FAQ UPGRADING ChangeLog README"; do             
        test -e "${doc}" && dodoc ${doc}                                        
    done                                                                        
}

needs to be changed to this:
myth_src_install() {                                                            
    einstall INSTALL_ROOT="${D}"                                                
    for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do             
        test -e "${doc}" && dodoc ${doc}                                        
    done                                                                        
}         

(i.e. remove the quotes around the list of files to loop through)

HTH!

------- Comment #3 From Doug Goldstein 2005-02-11 23:26:04 0000 -------
Fixed in CVS.

Bug List: (This bug is not in your last search results)   Show last search results      Search page      Enter new bug