diff options
Diffstat (limited to 'gnustep-base/gnustep-env/gnustep-env-0.1.4.ebuild')
-rw-r--r-- | gnustep-base/gnustep-env/gnustep-env-0.1.4.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnustep-base/gnustep-env/gnustep-env-0.1.4.ebuild b/gnustep-base/gnustep-env/gnustep-env-0.1.4.ebuild new file mode 100644 index 000000000000..83170f7bfd9a --- /dev/null +++ b/gnustep-base/gnustep-env/gnustep-env-0.1.4.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2004 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.4.ebuild,v 1.1 2004/09/24 01:05:12 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" + +IUSE="" +DEPEND="${GS_DEPEND}" +RDEPEND="${GS_RDEPEND}" + +src_unpack() { + echo "nothing to unpack" +} + +src_compile() { + echo "nothing to compile" +} + +src_install() { + exeinto /etc/init.d + newexe ${FILESDIR}/gnustep.runscript-${PV} gnustep + insinto /etc/env.d + newins ${FILESDIR}/gnustep.env-${PV} 99gnustep + dodir /var/run/GNUstep + einfo "Check http://dev.gentoo.org/~fafhrd/ for very handy info in setting up your GNUstep env." +} + |