forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
itk-4.0.1.ebuild
59 lines (46 loc) · 1.43 KB
/
itk-4.0.1.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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools eutils multilib versionator
MY_PV=${PV/_beta/b}
ITCL_VERSION="$(get_version_component_range 1-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/itk%20${MY_PV}/${PN}${MY_PV}.tar.gz"
#SRC_URI="mirror://sourceforge/%5Bincr%20Tcl_Tk%5D-4-source/Itcl%20${MY_PV}/${PN}${MY_PV}.tar.gz"
IUSE=""
SLOT="0"
LICENSE="BSD"
KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
DEPEND="
>=dev-lang/tk-8.6:=
=dev-tcltk/itcl-${ITCL_VERSION}*"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}${MY_PV}"
src_prepare() {
# epatch "${FILESDIR}"/${P}-install_data.patch
mv configure.{in,ac} || die
AT_M4DIR=.. eautoconf
sed 's:-pipe::g' -i configure || die
}
src_configure() {
source "${EPREFIX}"/usr/$(get_libdir)/itcl${ITCL_VERSION}*/itclConfig.sh || die
econf \
--with-tcl="${EPREFIX}"/usr/$(get_libdir) \
--with-tk="${EPREFIX}"/usr/$(get_libdir) \
--with-tclinclude="${EPREFIX}"/usr/include \
--with-tkinclude="${EPREFIX}"/usr/include \
--with-itcl="${ITCL_SRC_DIR}" \
--with-x
}
src_compile() {
emake CFLAGS_DEFAULT="${CFLAGS}"
}
src_install() {
default
dodoc license.terms
cat >> "${T}"/34${PN} <<- EOF
LDPATH="${EPREFIX}/usr/$(get_libdir)/${PN}${MY_PV}/"
EOF
doenvd "${T}"/34${PN}
}