blob: b917b0dabdeefdddd9fc1cb0268297777a08d5e6 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/chicken/chicken-3.2.0.ebuild,v 1.1 2008/05/01 21:32:26 hkbst Exp $
inherit multilib elisp-common
DESCRIPTION="Chicken is a Scheme interpreter and native Scheme to C compiler"
SRC_URI="http://chicken.wiki.br/releases/${PV}/${P}.tar.gz"
HOMEPAGE="http://www.call-with-current-continuation.org/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
IUSE="emacs"
DEPEND=">=dev-libs/libpcre-7.6
sys-apps/texinfo
emacs? ( virtual/emacs )"
SITEFILE=50hen-gentoo.el
src_unpack() {
unpack ${A}; cd "${S}"
sed "s:/lib:/$(get_libdir):g" -i defaults.make
}
src_compile() {
# $A is used by the makefile so >_>
unset A
OPTIONS="PLATFORM=linux PREFIX=/usr USE_HOST_PCRE=1"
echo $OPTIONS
emake ${OPTIONS} C_COMPILER_OPTIMIZATION_OPTIONS="${CFLAGS}" || die
if use emacs; then
elisp-compile hen.el || die
fi
}
# chicken doesn't seem to honor CHICKEN_PREFIX CHICKEN_HOME or LD_LIBRARY_PATH=${S}/.libs/
RESTRICT=test
#src_test() {
# cd tests
# bash runtests.sh
#}
src_install() {
unset A
emake ${OPTIONS} DESTDIR="${D}" install || die
dodoc ChangeLog* NEWS
dohtml -r html/
rm -rf "${D}"/usr/share/chicken/doc
# put a .keep in the default egg repository
# touch .keep
# insinto /usr/$(get_libdir)/chicken/3
# doins .keep
keepdir /usr/$(get_libdir)/chicken/3
if use emacs; then
elisp-install ${PN} hen.{el,elc} || die
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|