# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="portable abstraction of the hierarchical topology of modern architectures" SRC_URI="http://www.open-mpi.org/software/hwloc/v0.9/downloads/${P}.tar.bz2" HOMEPAGE="http://www.open-mpi.org/projects/hwloc/" LICENSE="BSD" KEYWORDS="~x86 ~amd64" IUSE="cairo xml X" SLOT="0" DEPEND="xml? ( dev-libs/libxml2 ) cairo? ( x11-libs/cairo ) X? ( x11-proto/xproto x11-libs/libX11 )" src_configure() { econf $(use_enable xml) \ $(use_enable cairo) \ $(use_enable X x) \ || die "econf failed" } src_install() { einstall || die "einstall failed" dodoc AUTHORS COPYING NEWS README VERSION }