blob: 68e4673ae61567b2bc877690cabb402f0b0fcc55 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
MY_P=${P/_alpha/a}
DESCRIPTION="TkDnD is an extension that adds native drag & drop capabilities to the tk toolkit."
HOMEPAGE="http://www.iit.demokritos.gr/~petasis/Tcl/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RESTRICT="test"
DEPEND=">=dev-lang/tcl-8.4
>=dev-lang/tk-8.4"
RDEPEND=${DEPEND}
S=${WORKDIR}/${MY_P}/unix/
src_unpack() {
unpack ${A}
# Patch to avoid a sandbox issue
epatch "${FILESDIR}/${P}-destdir-issue.diff"
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
dodoc doc/* Readme.txt || die
}
|