blob: 1414fe74c031a4e098bfbece2bfb12e9216550cf (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/netrik/netrik-1.10.2.ebuild,v 1.7 2004/07/14 06:04:34 mr_bones_ Exp $
DESCRIPTION="A text based web browser with no ssl support."
HOMEPAGE="http://netrik.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="~x86 ~sparc"
IUSE=""
DEPEND=">=sys-libs/ncurses-5.1
>=sys-libs/zlib-1.1.3
nls? ( sys-devel/gettext )"
src_compile() {
econf || die
emake || die "Compile problem"
}
src_install() {
make \
prefix=${D}/usr \
datadir=${D}/usr/share \
mandir=${D}/usr/share/man \
libdir=${D} install \
|| die "Unablr to do install"
}
|