diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-01 20:33:17 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-01 20:33:17 +0000 |
commit | 3c7bb3deec7321a38adff7cf6a1868c4c88157a9 (patch) | |
tree | 929aeeafde5a21049d987834c46d2e0cd065350c /app-editors | |
parent | Manifest signing test #2.. SpanKY please don't unsign me again. (diff) | |
download | historical-3c7bb3deec7321a38adff7cf6a1868c4c88157a9.tar.gz historical-3c7bb3deec7321a38adff7cf6a1868c4c88157a9.tar.bz2 historical-3c7bb3deec7321a38adff7cf6a1868c4c88157a9.zip |
fix depends; sync IUSE; use generic src_compile; tidy
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/wily/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/wily/Manifest | 4 | ||||
-rw-r--r-- | app-editors/wily/wily-1.0.ebuild | 22 |
3 files changed, 16 insertions, 17 deletions
diff --git a/app-editors/wily/ChangeLog b/app-editors/wily/ChangeLog index 484bb9cbf22e..e8c0621dcd8e 100644 --- a/app-editors/wily/ChangeLog +++ b/app-editors/wily/ChangeLog @@ -1,6 +1,9 @@ # 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.2 2003/04/03 22:13:36 absinthe Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-editors/wily/ChangeLog,v 1.3 2004/06/01 20:33:17 mr_bones_ Exp $ + + 01 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> wily-1.0.ebuild: + fix depends; sync IUSE; use generic src_compile; tidy *wily-1.0 (03 Apr 2003) diff --git a/app-editors/wily/Manifest b/app-editors/wily/Manifest index b1307e74176d..4f6f0808963b 100644 --- a/app-editors/wily/Manifest +++ b/app-editors/wily/Manifest @@ -1,3 +1,3 @@ -MD5 24299b3721028a1acaa65de3fd90ceda ChangeLog 628 -MD5 f4702deb549f4c1dd1013d6afb01a306 wily-1.0.ebuild 895 +MD5 c364c111e692d088b4811ef249e1a666 ChangeLog 763 +MD5 bd0aa258fb3b020df16ac9ce3ae39c1e wily-1.0.ebuild 723 MD5 f77485df5843ed768240414dba358b9a files/digest-wily-1.0 120 diff --git a/app-editors/wily/wily-1.0.ebuild b/app-editors/wily/wily-1.0.ebuild index e1bd0e214966..0d202fc9aaff 100644 --- a/app-editors/wily/wily-1.0.ebuild +++ b/app-editors/wily/wily-1.0.ebuild @@ -1,28 +1,24 @@ # Copyright 1999-2004 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.4 2004/03/13 23:00:56 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/wily/wily-1.0.ebuild,v 1.5 2004/06/01 20:33:17 mr_bones_ Exp $ -DESCRIPTION="Wily is an emulation of ACME, Plan9's hybrid window system, shell and editor for programmers." +DESCRIPTION="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 ~ppc ~sparc" -IUSE="X" -DEPEND="virtual/x11 dev-libs/9libs" -RDEPEND="${DEPEND}" -S="${WORKDIR}/${P/1.0/9libs}" +IUSE="" -src_compile() { - econf || die - #./configure --prefix=/usr --host=${CHOST} --with-9libs=/usr/lib/9libs || die - emake || die -} +DEPEND="virtual/x11 + dev-libs/9libs" + +S="${WORKDIR}/${P/1.0/9libs}" src_install() { - einstall docdir=${D}/usr/share/doc/${P} + einstall docdir="${D}/usr/share/doc/${P}" dodoc INSTALL README - dodir /usr/share/${P} insinto /usr/share/${P} doins ${S}/misc/* } |