blob: 3f35050c53739741443662cb71e88db5b9d222d8 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/most-4.10.2-r1.ebuild,v 1.10 2007/07/03 17:44:07 grobian Exp $
inherit eutils toolchain-funcs
DESCRIPTION="An extremely excellent text file reader"
HOMEPAGE="http://freshmeat.net/projects/most/"
SRC_URI="ftp://space.mit.edu/pub/davis/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
# Note to arch maintainers: you'll need to add to src_install() for your
# arch, since the app's Makefile does strange things with different
# directories for each arch. -- ciaranm, 27 June 2004
KEYWORDS="alpha amd64 mips ppc sparc x86"
DEPEND="=sys-libs/slang-1.4*
>=sys-libs/ncurses-5.2-r2"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-fix-goto-line.diff
}
src_install() {
# Changing this to use src/${ARCH}objs/most probably isn't a good
# idea...
local objsdir
case $(tc-arch) in
x86)
objsdir=x86objs
;;
amd64)
objsdir=amd64objs
;;
sparc)
objsdir=sparcobjs
;;
mips)
objsdir=mipsobjs
;;
ppc)
objsdir=ppcobjs
;;
alpha)
objsdir=alphaobjs
;;
esac
dobin src/${objsdir:-objs}/most || die "Couldn't install binary"
doman most.1
dodoc COPYING COPYRIGHT README changes.txt
docinto txt
dodoc most.rc lesskeys.rc most-fun.txt
}
pkg_postinst() {
echo
einfo "See /usr/share/doc/${PF}/txt/most.rc.gz"
einfo "for an example /etc/most.conf."
echo
}
|