blob: 84882b1e10f0c3c7736545c3fe941fb97fad772f (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
MY_P=${PN}${PV}
S=${WORKDIR}/${MY_P}
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"
SRC_URI="mirror://sourceforge/incrtcl/${MY_P}.tar.gz
mirror://sourceforge/incrtcl/${ITCL_MY_P}_src.tgz"
HOMEPAGE="http://www.tcltk.com/${PN}/"
SLOT="0"
LICENSE="as-is BSD"
KEYWORDS="~x86 ~ppc ~sparc"
DEPEND=">=dev-tcltk/itcl-3.2.1"
PDEPEND="dev-tcltk/iwidgets"
src_compile() {
local myconf
myconf="${myconf} --with-itcl=${WORKDIR}/${ITCL_MY_P}"
econf ${myconf} || die "configure failed"
# we don't need to compile anything
}
src_install() {
einstall || "einstall failed"
dodoc CHANGES ChangeLog README license.terms
doman doc/*.n
}
|