forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
itcl-3.4.1.ebuild
45 lines (33 loc) · 1.01 KB
/
itcl-3.4.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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils multilib versionator
MY_P="${PN}${PV/_beta/b}"
DESCRIPTION="Object Oriented Enhancements for Tcl/Tk"
HOMEPAGE="http://incrtcl.sourceforge.net/"
SRC_URI="mirror://sourceforge/incrtcl/%5BIncr%20Tcl_Tk%5D-source/$(get_version_component_range 1-2)/${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}"
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
cat >> "${T}"/34${PN} <<- EOF
LDPATH="${EPREFIX}/usr/$(get_libdir)/${PN}$(get_version_component_range 1-2)/"
EOF
doenvd "${T}"/34${PN}
}