blob: 0eb4049a77cd56f5d3868a52278473308637d653 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/less/less-382-r2.ebuild,v 1.12 2004/11/12 16:03:38 vapier Exp $
DESCRIPTION="Excellent text file viewer"
HOMEPAGE="http://www.greenwoodsoftware.com/"
SRC_URI="http://www.greenwoodsoftware.com/less/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND="virtual/libc
>=sys-libs/ncurses-5.2"
src_install() {
dobin less lessecho lesskey || die
newbin ${FILESDIR}/lesspipe.sh lesspipe.sh
# Needed for groff-1.18 and later ...
dodir /etc/env.d
echo "LESS=\"-R\"" > ${D}/etc/env.d/70less
newman lesskey.nro lesskey.1
newman less.nro less.1
dodoc NEWS README
}
|