Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 48133 - net-wireless/kdebluetooth-20040416 will not emerge
Summary: net-wireless/kdebluetooth-20040416 will not emerge
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] KDE (show other bugs)
Hardware: x86 Linux
: High blocker (vote)
Assignee: Gentoo KDE team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-04-17 07:55 UTC by Simon Farnsworth
Modified: 2004-04-26 03:34 UTC (History)
0 users

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


Attachments
patched ebuild (kdebluetooth-20040416.ebuild,1012 bytes, text/plain)
2004-04-19 05:23 UTC, Michael Gisbers
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Simon Farnsworth 2004-04-17 07:55:06 UTC
When I try to emerge kdebluetooth, I get the following errors:
>>> emerge (1 of 1) net-wireless/kdebluetooth-20040416 to /
>>> md5 src_uri ;-) kdebluetooth-0.0.20040416.tar.bz2
>>> Unpacking source...
>>> Unpacking kdebluetooth-0.0.20040416.tar.bz2 to /var/tmp/portage/kdebluetooth-20040416/work
/usr/sbin/ebuild.sh: line 37: cd: /var/tmp/portage/kdebluetooth-20040416/work/kdebluetooth-20040416: No such file or directory
/usr/sbin/ebuild.sh: line 42: cd: /var/tmp/portage/kdebluetooth-20040416/work/kdebluetooth-20040416: No such file or directory
>>> Source unpacked.
/usr/sbin/ebuild.sh: line 63: cd: /var/tmp/portage/kdebluetooth-20040416/work/kdebluetooth-20040416: No such file or directory
/usr/sbin/ebuild.sh: line 63: cd: /var/tmp/portage/kdebluetooth-20040416/work/kdebluetooth-20040416: No such file or directory

!!! ERROR: net-wireless/kdebluetooth-20040416 failed.
!!! Function kde_src_compile, Line 106, Exitcode 1
!!! no configure script found, generation unsuccessful

I believe this is due to the change in package name mentioned in bug 48041


Reproducible: Always
Steps to Reproduce:
1. emerge net-wireless/kdebluetooth




Portage 2.0.50-r6 (default-x86-2004.0, gcc-3.3.3, glibc-2.3.3_pre20040207-r0, 
2.6.5-gentoo) 
================================================================= 
System uname: 2.6.5-gentoo i686 AMD Athlon(tm) XP 1700+ 
Gentoo Base System version 1.4.9 
Autoconf: sys-devel/autoconf-2.59-r3 
Automake: sys-devel/automake-1.8.3 
ACCEPT_KEYWORDS="x86 ~x86" 
AUTOCLEAN="yes" 
CFLAGS="-march=athlon-xp -O2 -pipe" 
CHOST="i686-pc-linux-gnu" 
COMPILER="gcc3" 
CONFIG_PROTECT="/etc /usr/X11R6/lib/X11/xkb /usr/kde/2/share/config /usr/kde/3.2/share/config /usr/kde/3/share/config /usr/share/config /usr/share/texmf/dvipdfm/config/ /usr/share/texmf/dvips/config/ /usr/share/texmf/tex/generic/config/ /usr/share/texmf/tex/platex/config/ /usr/share/texmf/xdvi/ /var/qmail/control" 
CONFIG_PROTECT_MASK="/etc/gconf /etc/terminfo /etc/env.d" 
CXXFLAGS="-march=athlon-xp -O2 -pipe" 
DISTDIR="/usr/portage/distfiles" 
FEATURES="autoaddcvs ccache sandbox" 
GENTOO_MIRRORS="http://212.219.247.20/sites/www.ibiblio.org/gentoo/ 
http://212.219.247.18/sites/www.ibiblio.org/gentoo/ 
http://194.83.57.15/sites/www.ibiblio.org/gentoo/ 
http://212.219.247.17/sites/www.ibiblio.org/gentoo/" 
MAKEOPTS="-j2 -s" 
PKGDIR="/usr/portage/packages" 
PORTAGE_TMPDIR="/var/tmp" 
PORTDIR="/usr/portage" 
PORTDIR_OVERLAY="" 
SYNC="rsync://rsync.gentoo.org/gentoo-portage" 
USE="3dnow X aalib acpi alsa apm arts artswrappersuid avi berkdb bonobo cdr 
cjk crypt cups dga doc dvb dvd dvdr encode esd evms2 fam fftw flac foomaticdb 
freetype fs gdbm gif gnome gpm gtk gtk2 gtkhtml guile imap imlib ipv6 irmc 
jabber java jpeg kde ldap libdsk libg++ libwww mad maildir matroska mbox 
mikmod mmx mng motif mpeg mpeg4 msn ncurses nls nptl offensive oggvorbis 
opengl oss pam pcre pda pdflib perl pic plotutils png python qt quicktime 
radeon readline ruby samba scanner sdl slang speex spell sse ssl tcltk tcpd 
tetex theora tiff transcode truetype unicode usb v4l video_cards_radeon x86 
xml2 xmms xv xvid yahoo zlib zvbi"
Comment 1 Valerio 2004-04-17 09:59:46 UTC
yes... the real dir is: "/var/tmp/portage/kdebluetooth-20040416/work/kdebluetooth-0.0.20040416" and not: " /var/tmp/portage/kdebluetooth-20040416/work/kdebluetooth-20040416" <- (this is the one that emerge go searching)

i hope in a fast fix ;)
Comment 2 Michael Gisbers 2004-04-19 05:22:21 UTC
quick working Patch:

--- kdebluetooth-20040416.ebuild~       2004-04-19 14:06:59.652258472 +0200
+++ kdebluetooth-20040416.ebuild        2004-04-19 14:06:59.652258472 +0200
@@ -9,6 +9,8 @@
 HOMEPAGE="http://kde-bluetooth.sourceforge.net/"
 SRC_URI="http://members.xoom.virgilio.it/motaboy/kdebluetooth-0.0.${PV}.tar.bz2"

+S="${WORKDIR}/kdebluetooth-0.0.${PV}"
+
 LICENSE="GPL-2"
 KEYWORDS="~x86"
 RESTRICT="nomirror"
Comment 3 Michael Gisbers 2004-04-19 05:23:47 UTC
Created attachment 29610 [details]
patched ebuild
Comment 4 Michael Gisbers 2004-04-26 00:54:23 UTC
working version made it to portage.

Please change status to FIXED.
Comment 5 Dominik Stadler (RETIRED) gentoo-dev 2004-04-26 03:34:33 UTC
Seems to be fixed based on last comment.