diff options
Diffstat (limited to 'dev-util/plan9port/plan9port-20070522.ebuild')
-rw-r--r-- | dev-util/plan9port/plan9port-20070522.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-util/plan9port/plan9port-20070522.ebuild b/dev-util/plan9port/plan9port-20070522.ebuild new file mode 100644 index 000000000000..fa2857d1f12d --- /dev/null +++ b/dev-util/plan9port/plan9port-20070522.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/plan9port/plan9port-20070522.ebuild,v 1.1 2007/05/29 02:11:27 anant Exp $ + +DESCRIPTION="Plan 9 From User Space" +HOMEPAGE="http://swtch.com/plan9port/" +SRC_URI="http://www.kix.in/plan9/${PN}-repack-${PV}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="x11-base/xorg-server" +RDEPEND="" + +S="${WORKDIR}/plan9" + +src_compile() { + einfo " " + einfo "Compiling Plan 9 from User Space can take a very long time " + einfo "depending on the speed of your computer. Please be patient! " + einfo " " + ./INSTALL -b +} + +src_install() { + dodir /usr/lib/plan9 + mv ${S} ${D}/usr/lib/ + doenvd "${FILESDIR}/30plan9" +} + +pkg_postinst() { + einfo " " + einfo "Recalibrating Plan 9 from User Space to its new environment. " + einfo "This could take a while... " + einfo " " + + cd /usr/lib/plan9 + export PATH="$PATH:/usr/lib/plan9" + ./INSTALL -c &> /dev/null + + einfo " " + einfo "Plan 9 from User Space has been successfully installed into " + einfo "/usr/lib/plan9. Your PLAN9 and PATH environment variables " + einfo "have also been appropriately set, please use env-update and " + einfo "source /etc/profile to bring that into immediate effect. " + einfo " " + einfo "Please note thet PLAN9/bin has been appended to the *end* of " + einfo "your PATH to prevent conflicts. To use the Plan9 versions of " + einfo "common UNIX tools, use the absolute path: /usr/lib/plan9/bin " + einfo "or the 9 command (eg: 9 troff) " + einfo " " + einfo "Please report any bugs to bugs.gentoo.org, NOT Plan9Port. " + einfo " " +} |