blob: 984e99e85ebc5a6de29d1d095175ec835bfa6dab (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/scsh/scsh-0.6.1-r1.ebuild,v 1.15 2004/06/29 03:59:24 vapier Exp $
DESCRIPTION="Unix shell embedded in Scheme"
HOMEPAGE="http://www.scsh.net/"
SRC_URI="ftp://ftp.scsh.net/pub/scsh/0.6/${P}.tar.gz"
LICENSE="as-is | BSD | GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
econf --prefix=/ \
--libdir=/usr/lib \
--includedir=/usr/include \
|| die
make || die
}
src_install() {
einstall \
prefix=${D} \
htmldir=${D}/usr/share/doc/${PF}/html \
incdir=${D}/usr/include \
mandir=${D}/usr/share/man/man1 \
libdir=${D}/usr/lib \
|| die
dodoc RELEASE
# Scsh doesn't have a very consistent documentation
# structure. It's possible to override the placement of the
# HTML during make install, but not the other documentation in
# TeX, DVI and PS formats.
# Thus we let scsh install the documentation and then clean up
# afterwards.
dosed "s:${D}::" /usr/share/man/man1/scsh.1
dodir /usr/share/doc/${PF}
mv ${D}/usr/lib/scsh/doc/* ${D}/usr/share/doc/${PF}
rmdir ${D}/usr/lib/scsh/doc
prepalldocs
}
|