blob: 133d2c8e3fb2ad4a38d29dccd3c3ef0e2d4506c6 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/reed/reed-5.4.ebuild,v 1.4 2003/11/16 23:08:00 pyrania Exp $
DESCRIPTION="This is a text pager (text file viewer), used to display etexts."
HOMEPAGE="http://www.sacredchao.net/software/reed/index.shtml"
SRC_URI=http://www.sacredchao.net/software/reed/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="sys-libs/ncurses"
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
sed -i -e "s:-O2:\$(CFLAGS):" Makefile.in
}
src_compile() {
./configures --prefix=/usr || die
make || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS BUGS NEWS README
}
|