blob: 11febe145c09b24c0bf6722b9d15e396a3fec986 (
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
28
29
|
# 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-r1.ebuild,v 1.1 2010/08/02 14:27:14 jlec Exp $
inherit multilib
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
dosym ${PN}${PV} /usr/$(get_libdir)/${PN}
}
|