blob: 363a72b1552f84ca915751004b2a1204d7fc78f0 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/scsh-install-lib/scsh-install-lib-1.3.0.ebuild,v 1.2 2008/08/03 15:59:12 pchrist Exp $
inherit scsh
DESCRIPTION="Installation tool for the Scheme Untergrund Library"
HOMEPAGE="http://lamp.epfl.ch/~schinz/scsh_packages/"
SRC_URI="http://lamp.epfl.ch/~schinz/scsh_packages/${P}.tar.gz"
LICENSE="as-is BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=app-shells/scsh-0.6.6"
src_install() {
dodir $SCSH_MODULES_PATH
./install.scm ${SCSH_LAYOUT_CONF} \
--bindir /usr/bin \
--force \
|| die "./install.scm failed"
}
|