forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ck-8.0-r4.ebuild
49 lines (40 loc) · 927 Bytes
/
ck-8.0-r4.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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils multilib toolchain-funcs
MY_P=${PN}${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A curses based toolkit for tcl"
HOMEPAGE="http://www.ch-werner.de/ck/"
SRC_URI="
http://www.ch-werner.de/ck/${MY_P}.tar.gz
https://dev.gentoo.org/~jlec/distfiles/${P}-tcl8.6.patch.xz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="
dev-lang/tk
sys-libs/ncurses[gpm]
sys-libs/gpm
"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-gentoo.patch \
"${WORKDIR}"/${P}-tcl8.6.patch
sed \
-e "/^LIB_INSTALL_DIR/s:lib$:$(get_libdir):g" \
-i Makefile.in || die
}
src_configure() {
econf \
--with-tcl="${EPREFIX}/usr/$(get_libdir)" \
--enable-shared
}
src_compile() {
emake \
CURSES_LIB_SWITCHES="$($(tc-getPKG_CONFIG) --libs ncursesw) -lgpm"
}