# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="2" MY_P="Tktable${PV}" DESCRIPTION="full-featured 2D table widget" HOMEPAGE="http://tktable.sourceforge.net/" SRC_URI="mirror://sourceforge/tktable/${MY_P}.tar.gz" LICENSE="BSD" KEYWORDS="amd64 ppc x86" SLOT="0" IUSE="" DEPEND=">=dev-lang/tk-8.0" RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_P} src_prepare() { sed -e '/^install:/{s: install-doc::}' \ -e '/^PKG_EXTRA_FILES/{s:=.*:=:}' -i Makefile.in || die } src_install() { emake DESTDIR="${D}" install || die dohtml doc/tkTable.html || die dodoc ChangeLog README.txt release.txt || die }