blob: 07d7cbcf2e02c3de2596bc7ac2b488cc5c47f146 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkpiechart/tkpiechart-6.5-r1.ebuild,v 1.4 2013/04/30 16:26:31 ulm Exp $
inherit multilib
DESCRIPTION="create and update 2D or 3D pie charts in a Tcl/Tk application"
HOMEPAGE="http://jfontain.free.fr/piechart6.htm"
SRC_URI="http://jfontain.free.fr/${P}.tar.bz2"
LICENSE="jfontain"
KEYWORDS="amd64 ~ppc x86"
SLOT="0"
IUSE=""
DEPEND=">=dev-lang/tk-8.3
dev-tcltk/tcllib"
src_install() {
dodir /usr/$(get_libdir)/tkpiechart
./instapkg.tcl "${D}"/usr/$(get_libdir)/tkpiechart || die
dodoc CHANGES CONTENTS README TODO || die
dohtml *.gif *.htm || die
docinto demo
dodoc demo* || die
}
|