blob: a3b02f1740f011759cb1849c6aa3543de6e96fb9 (
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
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
MY_P=${PN}${PV}
ITCL_MY_PN="itcl"
ITCL_MY_PV="3.2.1"
ITCL_MY_P="${ITCL_MY_PN}${ITCL_MY_PV}"
DESCRIPTION="Widget collection for incrTcl/incrTk"
HOMEPAGE="http://incrtcl.sourceforge.net/itcl/"
SRC_URI="
mirror://sourceforge/incrtcl/${MY_P}.tar.gz
mirror://sourceforge/incrtcl/${ITCL_MY_P}_src.tgz"
LICENSE="HPND Old-MIT tcltk"
SLOT="0"
KEYWORDS="~alpha amd64 ia64 ppc sparc x86"
IUSE=""
DEPEND="
>=dev-tcltk/itcl-3.2.1
>=dev-tcltk/itk-3.3-r1"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
src_compile() {
local myconf
myconf="${myconf} --with-itcl=${WORKDIR}/${ITCL_MY_P}"
econf ${myconf}
}
src_install() {
einstall || die "einstall failed"
dodoc CHANGES ChangeLog README || die
# Bug 115470
rm doc/panedwindow.n
doman doc/*.n || die
}
|