blob: cc244aa1ed0499085a94eaec3b0f7261fd436ab9 (
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
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils multilib
DESCRIPTION="Gofer interpreter including Tcl/Tk interface"
HOMEPAGE="http://www.informatik.uni-ulm.de/pm/projekte/TkGofer/"
SRC_URI="http://www.informatik.uni-ulm.de/pm/projekte/TkGofer/tkg${PV}.tar.gz"
LICENSE="as-is" # see ${S}/Sources/goferite.h for exact wording
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=dev-lang/tcl-7.6
>=dev-lang/tk-4.2
sys-libs/readline"
RDEPEND=${DEPEND}
S=${WORKDIR}/${PN}${PV}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/2.1-include-string.patch" \
"${FILESDIR}/2.1-gentoo-config.patch"
}
src_compile() {
lib="/usr/$(get_libdir)/${PN}"
rm Sources/prelude.h Sources/Makefile # ensure regeneration
./tkgofer.install || die "tkgofer.install failed"
sed -i -e"s:${S}:/usr:" \
-e"s:\\(PreludeDir=\"\\).*\":\\1${lib}/Preludes\":" \
-e"s:\\(BinDir=\"\\).*\":\\1${lib}/Bin\":" \
-e"s:\\(TclDir=\"\\).*\":\\1${lib}/Tcl\":" \
-e"s:\\(HelpDir=\"\\).*\":\\1/usr/share/doc/${PF}\":" \
Bin/tkgofer || die "sed for tkgofer failed"
}
src_install() {
insinto ${lib}/Preludes || die
doins Preludes/* || die
insinto ${lib}/Tcl || die
doins Tcl/* || die
exeinto ${lib}/Bin || die
doexe Bin/{site.specific,tkgofer.exe} || die
dobin Bin/tkgofer || die
dodoc readme Doc/* || die
}
|