diff options
author | Dylan Carlson <absinthe@gentoo.org> | 2003-03-11 08:45:23 +0000 |
---|---|---|
committer | Dylan Carlson <absinthe@gentoo.org> | 2003-03-11 08:45:23 +0000 |
commit | 5ef0bcf33f456decbe9941c511609723b9937b32 (patch) | |
tree | 7e94425f830fa4a49fd5c690528e7c76038e7ca0 /app-editors | |
parent | Initial import. (diff) | |
download | historical-5ef0bcf33f456decbe9941c511609723b9937b32.tar.gz historical-5ef0bcf33f456decbe9941c511609723b9937b32.tar.bz2 historical-5ef0bcf33f456decbe9941c511609723b9937b32.zip |
Initial import.
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/wily/ChangeLog | 10 | ||||
-rw-r--r-- | app-editors/wily/files/digest-wily-1.0 | 1 | ||||
-rw-r--r-- | app-editors/wily/wily-1.0.ebuild | 29 |
3 files changed, 40 insertions, 0 deletions
diff --git a/app-editors/wily/ChangeLog b/app-editors/wily/ChangeLog new file mode 100644 index 000000000000..541759be1d88 --- /dev/null +++ b/app-editors/wily/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-editors/wily +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-editors/wily/ChangeLog,v 1.1 2003/03/11 08:45:23 absinthe Exp $ + + 11 Mar 2003; Dylan Carlson <absinthe@gentoo.org> ChangeLog : + + Initial import. Ebuild submitted by Burton Samograd + <kruhft@kruhft.dyndns.org>, closing bug #16440. Many thanks! + Wily is an emulation of ACME, Plan9's hybrid window system, + shell and editor for programmers. diff --git a/app-editors/wily/files/digest-wily-1.0 b/app-editors/wily/files/digest-wily-1.0 new file mode 100644 index 000000000000..2579452decb1 --- /dev/null +++ b/app-editors/wily/files/digest-wily-1.0 @@ -0,0 +1 @@ +MD5 453f6473bf2603bf5b3c9cfe0be7a394 wily-9libs.tar.gz 125247 diff --git a/app-editors/wily/wily-1.0.ebuild b/app-editors/wily/wily-1.0.ebuild new file mode 100644 index 000000000000..5867d06484db --- /dev/null +++ b/app-editors/wily/wily-1.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/wily/wily-1.0.ebuild,v 1.1 2003/03/11 08:45:23 absinthe Exp $ + +DESCRIPTION="Wily is an emulation of ACME, Plan9's hybrid window system, shell and editor for programmers." +HOMEPAGE="http://www.netlib.org/research/9libs/wily-9libs.README" +SRC_URI="ftp://www.netlib.org/research/9libs/${P/1.0/9libs}.tar.gz" +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~x86" +IUSE="X" +DEPEND="virtual/x11 dev-libs/9libs" +RDEPEND="${DEPEND}" +S="${WORKDIR}/${P/1.0/9libs}" + +src_compile() { + econf || die + #./configure --prefix=/usr --host=${CHOST} --with-9libs=/usr/lib/9libs || die + emake || die +} + +src_install() { + einstall docdir=${D}/usr/share/doc/${P} + dodoc INSTALL README + dodir /usr/share/${P} + insinto /usr/share/${P} + doins ${S}/misc/* +} + |