# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=6 inherit autotools git-r3 DESCRIPTION="A simple, lightweight C library for writing XMPP clients" HOMEPAGE="http://strophe.im/libstrophe/" EGIT_REPO_URI="https://github.com/strophe/libstrophe.git git://github.com/strophe/libstrophe.git" LICENSE="MIT GPL-3" SLOT="0" KEYWORDS="" IUSE="doc xml" RDEPEND="xml? ( dev-libs/libxml2 ) !xml? ( dev-libs/expat ) dev-libs/openssl:0" DEPEND="${RDEPEND} doc? ( app-doc/doxygen )" S="${WORKDIR}/${P}" src_prepare() { default eautoreconf } src_configure() { if use xml; then # defaults to expat otherwise econf $(use_with xml libxml2) else econf fi } src_compile() { emake use doc && doxygen } src_install() { emake DESTDIR="${D}" install dodoc LICENSE.txt README.markdown use doc && dodoc -r docs/html }