# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=2 inherit base DESCRIPTION="Library for access to Czech Data Boxes (ISDS) in C" HOMEPAGE="http://labs.nic.cz/page/739/libnicds/" SRC_URI="http://labs.nic.cz/files/labs/${P}.tar.gz" LICENSE="LGPL-3 gSOAP" SLOT="0" KEYWORDS="~x86" IUSE="examples man static-libs" DEPEND="dev-libs/openssl" RDEPEND="${DEPEND}" DOCS=( "README" ) src_configure() { econf $(use_enable static-libs static) } src_install() { base_src_install use static-libs || rm -rf "${D}"/usr/lib*/*.la if use man; then # Manual pages exist in Czech only insinto /usr/share/man/cs/man3 doins ${PN}/man/*.3 fi use examples && dodoc sample/sample.c }