blob: 1c455a89e967c1014806848a997d764af51757a1 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-env/gnustep-env-0.1.5.ebuild,v 1.5 2005/03/17 20:55:59 fafhrd Exp $
inherit gnustep
DESCRIPTION="This is a convience package that installs all base GNUstep libraries, convenience scripts, and environment settings for use on Gentoo."
# These are support files for GNUstep on Gentoo, so setting
# homepage thusly
HOMEPAGE="http://www.gnustep.org"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ppc ~alpha ~sparc amd64"
IUSE=""
DEPEND="${GS_DEPEND}
>=gnustep-base/gnustep-base-1.10.1"
RDEPEND="${DEPEND}
${DEBUG_DEPEND}
${DOC_RDEPEND}
virtual/gnustep-back"
egnustep_install_domain="System"
src_unpack() {
echo "nothing to unpack"
}
src_compile() {
echo "nothing to compile"
}
src_install() {
egnustep_env
exeinto /etc/init.d
newexe ${FILESDIR}/gnustep.runscript-${PV} gnustep
#dosed "s:XXX_GENTOO_GNUSTEP_ROOT_XXX:$(egnstep_prefix):g" /etc/init.d/gnustep
insinto /etc/env.d
newins ${FILESDIR}/gnustep.env-${PV} 99gnustep
dosed "s:XXX_GNUSTEP_USER_ROOT_XXX:~$(egnustep_user_root_suffix):g" /etc/env.d/99gnustep
dosed "s:XXX_GNUSTEP_LOCAL_ROOT_XXX:$(egnustep_local_root):g" /etc/env.d/99gnustep
dosed "s:XXX_GNUSTEP_NETWORK_ROOT_XXX:$(egnustep_network_root):g" /etc/env.d/99gnustep
dosed "s:XXX_GNUSTEP_SYSTEM_ROOT_XXX:$(egnustep_system_root):g" /etc/env.d/99gnustep
dodir /var/run/GNUstep
einfo "Check http://dev.gentoo.org/~fafhrd/ for very handy info in setting up your GNUstep env."
}
|