blob: b8f5b8071454b63fb2db847531d48b7a4aed2bb2 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.17.ebuild,v 1.6 2009/03/09 21:03:27 mr_bones_ Exp $
EAPI=2
inherit eutils perl-module python toolchain-funcs
DESCRIPTION="A library which implements a curses-based widget set for text terminals"
HOMEPAGE="http://www.clifford.at/stfl/"
SRC_URI="http://www.clifford.at/${PN}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="x86"
IUSE="examples perl ruby"
COMMON_DEPEND="sys-libs/ncurses[unicode]
perl? ( dev-lang/perl )
ruby? ( dev-lang/ruby )"
DEPEND="${COMMMON_DEPEND}
perl? ( dev-lang/swig )
ruby? ( dev-lang/swig )"
RDEPEND="${COMMON_DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s!-Os -ggdb!!" \
-e "s!^all:.*!all: libstfl.a!" \
Makefile
python_version
sed -i -e "s:/usr/lib/python2.4:${D}/usr/lib/python${PYVER}:" \
python/Makefile.snippet
if ! use perl; then
echo "FOUND_PERL5=0" >>Makefile.cfg
fi
if ! use ruby; then
echo "FOUND_RUBY=0" >>Makefile.cfg
fi
}
src_compile() {
emake -j1 CC="$(tc-getCC)" || die "make failed"
}
src_install() {
local exdir="/usr/share/doc/${PF}/examples"
dodir /usr/lib/python${PYVER}/lib-dynload
emake -j1 prefix="/usr" DESTDIR="${D}" install || die "make install failed"
dodoc README
if use examples; then
insinto ${exdir}
doins example.{c,stfl}
insinto ${exdir}/python
doins python/example.py
if use perl; then
insinto ${exdir}/perl
doins perl5/example.pl
fi
if use ruby; then
insinto ${exdir}/ruby
doins ruby/example.rb
fi
fi
fixlocalpod
}
|