blob: 266af4d2dc7bf9317d7b0dbddc4a30aae83d1779 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/ck/ck-8.0-r2.ebuild,v 1.2 2009/08/11 23:12:02 mescalinum Exp $
EAPI=2
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"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=dev-lang/tk-8.0"
RDEPEND="${DEPEND}"
src_prepare() {
# patch Makefile
sed -i \
-e "s:mkdir:mkdir -p:g" \
-e "s|install: |install: install-man |" \
-e 's:^.*\(MAN_INSTALL_DIR\).*=.*$:\1 = $(INSTALL_ROOT)$(prefix)/share/man:g' \
Makefile.in
}
src_configure() {
econf --with-tcl=/usr/lib --enable-shared || die "econf failed"
}
src_compile() {
emake CFLAGS="${CFLAGS}" || die
}
src_install() {
dodoc README
einstall || die "Failed to install."
# fix file collision with tcl-8.5*
rm -rf "${D}"/usr/share/man/mann
}
|