blob: f168d528abff89912afe134b26356f889626c067 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tklib/tklib-0.5.ebuild,v 1.2 2010/03/29 11:36:35 jlec Exp $
DESCRIPTION="Collection of utility modules for Tk, and a companion to Tcllib"
HOMEPAGE="http://www.tcl.tk/software/tklib"
SRC_URI="mirror://sourceforge/project/tcllib/${PN}/${PV}/${P}.tar.bz2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="BSD"
IUSE="doc"
RDEPEND="
dev-lang/tk
dev-tcltk/tcllib"
DEPEND="${RDEPEND}"
src_install() {
emake DESTDIR="${D}" install || die
if use doc; then
emake DESTDIR="${D}" doc || die
dohtml doc/html/* || die
fi
dodoc ChangeLog DESCRIPTION.txt README* || die
}
|