# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header$ inherit eutils cvs ECVS_SERVER="bluetooth-alsa.cvs.sourceforge.net:/cvsroot/bluetooth-alsa" ECVS_MODULE="plugz" DESCRIPTION="Bluetooth alsa utilities" HOMEPAGE="http://bluetooth-alsa.sourceforge.net/build.html" SRC_URI="" S="${WORKDIR}/${ECVS_MODULE}" LICENSE="LGPL" SLOT="0" KEYWORDS="~x86 ~amd64" RDEPEND="virtual/libc" DEPEND="${RDEPEND} sys-devel/autoconf sys-apps/dbus" src_unpack(){ cvs_src_unpack || die cd ${S} } src_compile() { ./bootstrap || die libtoolize --copy --force || die export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ./configure --prefix=/usr --sysconfdir=/etc || die emake -j1 || die } src_install() { make install DESTDIR=${D} }