# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="It contains a collection of application and library that demonstrate how to compile and install kde applications using scons" HOMEPAGE="http://freehackers.org/~tnagy/bksys.html" SRC_URI="http://freehackers.org/~tnagy/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=">=dev-util/scons-0.96.1" RDEPEND=">=dev-util/scons-0.96.1" src_compile() { addpredict /usr/qt/3/etc/settings/.qt_plugins_3.3rc.lock local myconf="kdeincludes=$(kde-config --prefix)/include prefix=/usr" use amd64 && myconf="${myconf} libsuffix=64" scons configure ${myconf} || die "configure failed" scons ${MAKEOPTS} || die "scons failed" } src_install() { DESTDIR="${D}" scons install dodoc AUTHORS VERSION COPYING INSTALL README ROADMAP QUICKSTART }