# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="A client/server SOAP library in pure C" HOMEPAGE="http://csoap.sourceforge.net/" SRC_URI="mirror://sourceforge/csoap/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" IUSE="ssl" DEPEND="dev-libs/libxml2 ssl? dev-libs/openssl" RDEPEND="" src_compile() { cd ${S} econf $(use_with ssl) || die "Configure failed" emake || die "Make failed" } src_install() { emake DESTDIR="${D}" install || die "Install failed" dodoc AUTHORS COPYING ChangeLog INSTALL NEWS NOTES README TODO }