# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ # EBuild details DESCRIPTION="RoadRunner library provides API for using Blocks Extensible Exchange Protocol" HOMEPAGE="http://rr.codefactory.se" SRC_URI="ftp://ftp.codefactory.se/pub/RoadRunner/source/roadrunner/roadrunner-${PV}.tar.gz" LICENSE="as-is" SLOT="0" KEYWORDS="~x86" S=${WORKDIR}/roadrunner-${PV} # static = also build a static library # doc = include documentation # debug = include debug and debug-net IUSE="static doc debug" # At runtime we need glib and libxml2 RDEPEND=">=dev-libs/glib-2.2.1 >=dev-libs/libxml2-2.5.11" # During build we also need pkgconfig and possibly gtk-doc DEPEND=">=dev-libs/glib-2.2.1 >=dev-libs/libxml2-2.5.11 >=dev-util/pkgconfig-0.15.0 doc? ( >=dev-util/gtk-doc-1.2 )" src_compile() { econf \ `use_enable static static` \ `use_enable debug debug` \ `use_enable debug debug-net` \ `use_enable doc gtk-doc` \ || die "configure failed" emake || die "emake failed" } src_install() { # Seems that the Makefiles are OK einstall || die }