Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 97128 - bluez-utils-2.17-r1 typo, in complie
Summary: bluez-utils-2.17-r1 typo, in complie
Status: RESOLVED DUPLICATE of bug 97029
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-06-26 11:14 UTC by walt
Modified: 2005-06-26 23:26 UTC (History)
0 users

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description walt 2005-06-26 11:14:38 UTC
src_compile() {

	econf \
		$(use_enable cups) \
		$(use_enable alsa) \
		$(use_enable pcmcia) \
		$(use_enable gtk bluepin) \
		$(use_enable dbus) \
		--enable-usb \
		--disable-initscripts \
		--enable-obex \
		--enable-hid2hci \
		--enable-bcm203x \
		--localstatedir=/var 
	emake || die "make failed"
}

there was a slash on the --localstatedir=/var which should be removed

Reproducible: Always
Steps to Reproduce:
1.emerge =bluez-utils-2.17-r1
2.
3.

Actual Results:  
error:
checking build system type... Invalid configuration `emake': machine `emake' not
recognized



Portage 2.0.51.19 (default-linux/x86/2005.0, gcc-3.4.4, glibc-2.3.4.20041102-r1,
2.6.10-nitro2 i686)
=================================================================
System uname: 2.6.10-nitro2 i686 AMD Athlon(tm) XP 1600+
Gentoo Base System version 1.6.12
Python:              dev-lang/python-2.3.5 [2.3.5 (#1, May  3 2005, 10:43:33)]
dev-lang/python:     2.3.5
sys-apps/sandbox:    [Not Present]
sys-devel/autoconf:  2.59-r7, 2.13
sys-devel/automake:  1.7.9-r1, 1.5, 1.8.5-r3, 1.6.3, 1.9.5, 1.4_p6
sys-devel/binutils:  2.15.92.0.2-r10
sys-devel/libtool:   1.4.3-r4, 1.5.18
virtual/os-headers:  2.6.8.1-r2
ACCEPT_KEYWORDS="x86"
AUTOCLEAN="yes"
CFLAGS="-O2 -march=athlon-xp -pipe -fomit-frame-pointer"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3.1/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"
CONFIG_PROTECT_MASK="/etc/gconf /etc/terminfo /etc/env.d"
CXXFLAGS="-O2 -march=athlon-xp -pipe -fomit-frame-pointer"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoaddcvs autoconfig ccache distlocks sandbox sfperms strict"
GENTOO_MIRRORS="http://mirror.datapipe.net/gentoo
http://mirror.datapipe.net/gentoo
ftp://distro.ibiblio.org/pub/Linux/distributions/gentoo/"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/portage_overlay /usr/local/bmg-main
/usr/local/fluidportage/trunk"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="x86 3dnow X alsa apache2 apm avi bash-completion berkdb bitmap-fonts cdr
crypt cups curl divx4linux eds emboss encode esd faad fam flac foomaticdb
fortran gdbm gif gnome gphoto2 gpm gstreamer gtk gtk2 howl imagemagick imlib
ipv6 java jpeg junit kde libg++ libwww lirc live mad mikmod mmx motif mp3 mpeg
mpeg4 mysql nas ncurses network nls nptl nptlonly ogg oggvorbis opengl oss pam
pdflib perl png python qt quicktime readline real rtc samba sdl slang speex
spell sse ssl svga tcpd tiff truetype truetype-fonts type1-fonts vim-with-x
vorbis xine xinerama xml xml2 xmms xv xvid zlib userland_GNU kernel_linux
elibc_glibc"
Unset:  ASFLAGS, CBUILD, CTARGET, LANG, LC_ALL, LDFLAGS, LINGUAS
Comment 1 Paweł Hajdan, Jr. (RETIRED) gentoo-dev 2005-06-26 11:24:02 UTC
Please emerge --sync again, looks like your ebuild is corrupted. It should be:

src_compile() {

    econf \
        $(use_enable cups) \
        $(use_enable alsa) \
        $(use_enable pcmcia) \
        $(use_enable gtk bluepin) \
        $(use_enable dbus) \
        --enable-usb \
        --disable-initscripts \
        --enable-obex \
        --enable-hid2hci \
        --enable-bcm203x \
        --localstatedir=/var \
        || die "econf failed"
    emake || die "make failed"
}
Comment 2 Jakub Moc (RETIRED) gentoo-dev 2005-06-26 23:26:18 UTC

*** This bug has been marked as a duplicate of 97029 ***