blob: 629999d31f23e175d78288a2ccab31ca64f418f2 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclx/tclx-8.4-r1.ebuild,v 1.2 2006/12/01 13:49:14 fmccor Exp $
inherit eutils
IUSE="tk threads"
DESCRIPTION="A set of extensions to TCL"
HOMEPAGE="http://tclx.sourceforge.net"
SRC_URI="mirror://sourceforge/tclx/${PN}${PV}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
DEPEND=">=dev-lang/tcl-8.4.6
tk? ( >=dev-lang/tk-8.4.6 )"
S=${WORKDIR}/${PN}${PV}
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-relid.patch
epatch ${FILESDIR}/${P}-varinit.patch
}
src_compile() {
econf \
$(use_enable tk) \
$(use_enable threads) \
--enable-shared \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc ChangeLog README
doman doc/*.[n3]
}
|