blob: 400ec637bd9e6f555a095cf9d71fdd3c50927774 (
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
42
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tktreectrl/tktreectrl-2.2.10.ebuild,v 1.2 2011/06/12 10:15:51 xarthisius Exp $
EAPI=4
inherit eutils
DESCRIPTION="A flexible listbox widget for Tk"
HOMEPAGE="http://tktreectrl.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="tktreectrl"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="X debug shellicon threads"
RDEPEND=">=dev-lang/tk-8.4"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/2.2.9-as-needed.patch
}
src_configure() {
econf \
$(use_enable threads) \
$(use_enable shellicon) \
$(use_enable amd64 64bit) \
$(use_enable debug symbols) \
$(use_enable X x) \
--enable-shared
}
#src_test() {
# emake test || die
#}
src_install() {
default
mv "${ED}"/usr/lib*/treectrl${PV}/htmldoc "${ED}"/usr/share/doc/${P}/
}
|