blob: d5e38f70f64a2bc59d2a6453f8066435cf7d8794 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/steptalk/steptalk-0.8.3_pre20050312.ebuild,v 1.3 2006/03/25 22:32:38 grobian Exp $
inherit gnustep subversion
ESVN_OPTIONS="-r{${PV/*_pre}}"
ESVN_REPO_URI="http://svn.gna.org/svn/gnustep/libs/${PN}/trunk"
ESVN_STORE_DIR="${DISTDIR}/svn-src/svn.gna.org-gnustep/libs"
DESCRIPTION="StepTalk is the official GNUstep scripting framework."
HOMEPAGE="http://www.gnustep.org/experience/StepTalk.html"
KEYWORDS="~x86 ~ppc"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="doc"
DEPEND="${GS_DEPEND}"
RDEPEND="${GS_RDEPEND}"
egnustep_install_domain "System"
src_install() {
cd ${S}
egnustep_env
egnustep_install || die
if use doc ; then
egnustep_env
cd Documentation
mkdir -p ${TMP}/tmpdocs
mv *.* ${TMP}/tmpdocs
mv Reference ${TMP}/tmpdocs
mkdir -p ${D}$(egnustep_install_domain)/Library/Documentation/Developer/${PN/stept/StepT}
mv ${TMP}/tmpdocs/* ${D}$(egnustep_install_domain)/Library/Documentation/Developer/${PN/stept/StepT}
cd ..
fi
egnustep_package_config
}
|