blob: ef48c667cc71e815c59b30e413b5130851a8a7f8 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/pinfo-0.6.8.ebuild,v 1.13 2005/01/01 16:30:45 eradicator Exp $
MY_P=${PN}-${PV/_/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Hypertext info and man viewer based on (n)curses"
HOMEPAGE="http://dione.ids.pl/~pborys/pinfo"
SRC_URI="http://dione.ids.pl/~pborys/software/pinfo/pinfo-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86"
IUSE="nls readline"
DEPEND="sys-libs/ncurses
sys-devel/bison
nls? ( sys-devel/gettext )"
src_compile() {
econf \
$(use_with readline) \
$(use_enable nls) \
|| die "econf failed"
emake || die
}
src_install() {
make DESTDIR=${D} sysconfdir=/etc install || die
}
|