blob: 10bf62ea01370634d85dd287d0ffec93770f4cf7 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/gwydion-dylan/gwydion-dylan-2.4.0.ebuild,v 1.1 2005/08/02 02:21:34 araujo Exp $
inherit elisp-common
DESCRIPTION="The Dylan Programming Language Compiler"
HOMEPAGE="http://www.gwydiondylan.org/"
SRC_URI="http://www.gwydiondylan.org/downloads/src/tar/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86"
IUSE="gtk emacs"
DEPEND="( || ( dev-lang/gwydion-dylan-bin
dev-lang/gwydion-dylan ) )
>=dev-libs/boehm-gc-6.4
gtk? ( =x11-libs/gtk+-1.2* )"
RDEPEND=""
SITEFILE=50gwydion-dylan-gentoo.el
src_compile() {
./configure \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
$(use_with gtk) \
|| die "./configure failed"
emake -j1 || die "emake failed"
if use emacs; then
elisp-compile ${S}/tools/elisp/*.el
fi
}
src_install() {
make DESTDIR=${D} install \
|| die "make failed"
if use emacs; then
elisp-install ${PN} ${S}/tools/elisp/*.el ${S}/tools/elisp/*.elc
elisp-site-file-install ${FILESDIR}/${SITEFILE}
fi
insinto /etc/env.d
doins ${FILESDIR}/20gwydion-dylan
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|