blob: f069e10eb5764960b28d200ed4bb7cb1e787eddc (
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
77
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/c-intercal/c-intercal-28.65535.65534.0.ebuild,v 1.2 2011/06/26 11:17:12 ulm Exp $
inherit elisp-common eutils multilib
# C-INTERCAL uses minor-major ordering of version components and
# negative version numbers. We map version components -1, -2, ...
# to 65535, 65534, ..., and subtract one from the next component.
# For example, upstream version 0.28 is mapped to Gentoo version 28.0
# and 0.-2.0.29 is mapped to 28.65535.65534.0.
get_intercal_version() {
local i=.${1:-${PV}} j k c=0
while [[ ${i} ]]; do
(( k = ${i##*.} + c ))
(( (c = (k >= 32768)) && (k -= 65536) ))
i=${i%.*}
j=${j}.${k}
done
echo ${j#.}
}
MY_PV=$(get_intercal_version)
DESCRIPTION="C-INTERCAL - INTERCAL to binary (via C) compiler"
HOMEPAGE="http://c.intercal.org.uk"
SRC_URI="http://overload.intercal.org.uk/c/ick-${MY_PV}.pax.gz"
LICENSE="GPL-2 FDL-1.2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="emacs examples"
DEPEND="emacs? ( virtual/emacs )"
RDEPEND="${DEPEND}"
MY_PV2=${MY_PV%.${MY_PV##*.}}
S="${WORKDIR}/ick-${MY_PV2##*.}.${MY_PV##*.}"
SITEFILE="50${PN}-gentoo.el"
src_unpack() {
tar xzf "${DISTDIR}/${A}" || die "tar failed"
}
src_compile() {
econf
emake || die
if use emacs; then
elisp-compile etc/intercal.el || die
fi
}
src_install() {
# Thinks the directories exist, won't as this is done to a DESTDIR...
#dodir /usr/bin
#dodir /usr/$(get_libdir)
emake DESTDIR="${D}" install || die "emake install failed"
dodoc BUGS NEWS README doc/THEORY.txt
if use emacs; then
elisp-install ${PN} etc/intercal.{el,elc} || die
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
fi
if use examples; then
insinto /usr/share/doc/${PF}
doins -r pit || die
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|