2014-08-12 12:57:09 +04:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2011-11-09 11:33:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-10 23:59:40 +03:00
|
|
|
# $Id$
|
2012-10-29 16:09:46 +04:00
|
|
|
|
2014-11-16 02:29:23 +03:00
|
|
|
EAPI=5
|
|
|
|
inherit eutils toolchain-funcs
|
2011-11-09 11:33:19 +04:00
|
|
|
|
2014-08-12 12:57:09 +04:00
|
|
|
DESCRIPTION="This is a text pager (text file viewer), used to display etexts"
|
2011-11-09 11:33:19 +04:00
|
|
|
# Homepage http://www.sacredchao.net/software/reed/index.shtml does not exist.
|
|
|
|
HOMEPAGE="http://web.archive.org/web/20040217010815/www.sacredchao.net/software/reed/"
|
|
|
|
SRC_URI="http://www.sacredchao.net/software/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2012-10-29 16:09:46 +04:00
|
|
|
KEYWORDS="~amd64 x86"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
DEPEND="sys-libs/ncurses"
|
2012-10-29 16:09:46 +04:00
|
|
|
RDEPEND="${DEPEND}"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
2012-10-29 16:09:46 +04:00
|
|
|
DOCS=( AUTHORS BUGS NEWS README )
|
2011-11-09 11:33:19 +04:00
|
|
|
|
2012-10-29 16:09:46 +04:00
|
|
|
src_prepare() {
|
2014-11-16 02:29:23 +03:00
|
|
|
sed -e 's:-O2:$(CFLAGS) $(LDFLAGS):' \
|
|
|
|
-e 's: wrap::' \
|
|
|
|
-e 's:-s reed:reed:' \
|
|
|
|
-e 's:-lcurses:$(shell ${PKG_CONFIG} --libs ncurses):g' \
|
|
|
|
-i Makefile.in || die
|
2012-10-29 16:09:46 +04:00
|
|
|
rm wrap.1 #Collision with talkfilters, bug #247396
|
2014-11-16 02:29:23 +03:00
|
|
|
tc-export CC PKG_CONFIG
|
2011-11-09 11:33:19 +04:00
|
|
|
}
|
|
|
|
|
2012-10-29 16:09:46 +04:00
|
|
|
src_configure() {
|
2014-11-16 02:29:23 +03:00
|
|
|
./configures --prefix=/usr || die
|
2011-11-09 11:33:19 +04:00
|
|
|
}
|