forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
itcl-4.0.3.ebuild
66 lines (51 loc) · 1.69 KB
/
itcl-4.0.3.ebuild
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils multilib versionator
MY_P="${PN}${PV}"
TCL_VER="8.6.2"
DESCRIPTION="Object Oriented Enhancements for Tcl/Tk"
HOMEPAGE="http://incrtcl.sourceforge.net/"
SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/itcl%20${PV}/${MY_P}.tar.gz"
#SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/itcl%204.0.2/itcl4.0.2.tar.gz"
#SRC_URI="mirror://sourceforge/project/tcl/Tcl/${TCL_VER}/${MY_P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
RDEPEND=">=dev-lang/tcl-8.6:0="
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}${PV}"
# somehow broken
#RESTRICT=test
src_configure() {
econf \
--with-tcl="${EPREFIX}"/usr/$(get_libdir) \
--with-tclinclude="${EPREFIX}"/usr/include \
--disable-rpath
}
src_compile() {
# adjust install_name on darwin
if [[ ${CHOST} == *-darwin* ]]; then
sed -i \
-e 's:^\(SHLIB_LD\W.*\)$:\1 -install_name ${pkglibdir}/$@:' \
"${S}"/Makefile || die 'sed failed'
fi
sed 's:-pipe::g' -i Makefile || die
emake CFLAGS_DEFAULT="${CFLAGS}"
}
src_install() {
default
sed \
-e "/BUILD_LIB_SPEC/s:-L${S}::g" \
-e "/BUILD_STUB_LIB_SPEC/s:-L${S}::g" \
-e "/BUILD_STUB_LIB_PATH/s:${S}:${EPREFIX}/usr/$(get_libdir)/${MY_P}/:g" \
-e "/INCLUDE_SPEC/s:${S}/generic:${EPREFIX}/usr/include:g" \
-e "s:${S}:${EPREFIX}/usr/$(get_libdir)/${MY_P}/:g" \
-i "${ED}"/usr/$(get_libdir)/${MY_P}/itclConfig.sh || die
cat >> "${T}"/34${PN} <<- EOF
LDPATH="${EPREFIX}/usr/$(get_libdir)/${PN}$(get_version_component_range 1-3)/"
EOF
doenvd "${T}"/34${PN}
}