blob: 85b005ef2865cb9053ad1252cc9a0433ec4aeb9a (
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-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils virtualx
MY_P="${PN}${PV}"
DESCRIPTION="System Tray Icon Support for Tk on X11"
HOMEPAGE="https://code.google.com/p/tktray/"
SRC_URI="https://tktray.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="tcltk"
SLOT="0"
KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
IUSE="debug threads test"
DEPEND="
>=dev-lang/tcl-8.4:0=
>=dev-lang/tk-8.4:0=
x11-libs/libXext"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}"/1.1-ldflags.patch
}
src_configure() {
source /usr/lib/tclConfig.sh
CPPFLAGS="-I${TCL_SRC_DIR}/generic ${CPPFLAGS}" \
econf \
$(use_enable debug symbols) \
$(use_enable threads)
}
src_test() {
Xemake
}
|