# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tktreectrl/tktreectrl-2.2.9.ebuild,v 1.4 2011/01/17 22:36:39 hwoarang Exp $ EAPI="3" inherit eutils DESCRIPTION="A flexible listbox widget for Tk" HOMEPAGE="http://tktreectrl.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="tktreectrl" SLOT="0" IUSE="X debug shellicon threads" KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" RDEPEND=">=dev-lang/tcl-8.4" DEPEND="${REDEPEND}" src_prepare() { epatch "${FILESDIR}"/${PV}-as-needed.patch } src_configure() { econf \ $(use_enable threads) \ $(use_enable shellicon) \ $(use_enable amd64 64bit) \ $(use_enable debug symbols) \ $(use_enable X x) \ --enable-shared } src_test() { emake test || die } src_install() { emake DESTDIR="${D}" install || die dodoc ChangeLog README.txt || die mv "${ED}"/usr/lib*/treectrl${PV}/htmldoc "${ED}"/usr/share/doc/${P}/ }