summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Carlson <absinthe@gentoo.org>2003-03-11 08:45:23 +0000
committerDylan Carlson <absinthe@gentoo.org>2003-03-11 08:45:23 +0000
commit714897737279a25190ea172ae094812442d86690 (patch)
treec1275152f0bfa83a10037331acebee0bbef8e614 /app-editors
parentInitial import. (diff)
downloadgentoo-2-714897737279a25190ea172ae094812442d86690.tar.gz
gentoo-2-714897737279a25190ea172ae094812442d86690.tar.bz2
gentoo-2-714897737279a25190ea172ae094812442d86690.zip
Initial import.
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/wily/ChangeLog10
-rw-r--r--app-editors/wily/files/digest-wily-1.01
-rw-r--r--app-editors/wily/wily-1.0.ebuild29
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/*
+}
+