--- orc-0.4.4.ebuild 2010-04-26 17:35:35.000000000 +0200 +++ orc-0.4.4.ebuild 2010-04-27 12:05:44.000000000 +0200 @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.4.ebuild,v 1.4 2010/04/26 15:31:14 darkside Exp $ +# $Header: $ EAPI=3 @@ -11,18 +11,19 @@ LICENSE="BSD BSD-2" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux" -IUSE="" +IUSE="static-libs doc" src_configure() { - econf \ - --disable-static \ - --disable-dependency-tracking \ - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html + econf ${myconf} \ + $(use_enable static-libs static) \ + --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \ + --disable-dependency-tracking } src_install() { emake DESTDIR="${D}" install || die dodoc README TODO - find "${ED}" -name '*.la' -delete + use static-libs || find "${ED}" -name '*.la' -delete + use doc || rm -r "${ED}"/usr/share/doc/${PF}/html }