blob: 6d02be2179ca5dc60734e9d2acdaee9f904ee608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2005 Gentoo Foundation
# 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.10 2005/09/25 12:33:45 tove Exp $
inherit toolchain-funcs
MY_P="${P/1.0/9libs}"
DESCRIPTION="An emulation of ACME, Plan9's hybrid window system, shell and editor for programmers."
HOMEPAGE="http://www.netlib.org/research/9libs/"
SRC_URI="ftp://www.netlib.org/research/9libs/${MY_P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="ppc sparc x86"
IUSE=""
DEPEND="virtual/x11
dev-libs/9libs"
S="${WORKDIR}/${MY_P}"
src_compile() {
export CC="$(tc-getCC)"
econf --includedir="/usr/include/9libs" || die "configure failed."
emake || die "make failed."
}
src_install() {
make DESTDIR="${D}" install || die "make install failed."
dodoc README
insinto /usr/share/${PN}
doins "${S}"/misc/*
}
|