You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
668 B
33 lines
668 B
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
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
|
|
}
|