You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/pinfo/pinfo-0.6.10-r4.ebuild

55 lines
1.3 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/pinfo-0.6.10-r4.ebuild,v 1.6 2013/04/05 21:51:09 ago Exp $
EAPI=5
inherit eutils flag-o-matic
DESCRIPTION="Hypertext info and man viewer based on (n)curses"
HOMEPAGE="http://pinfo.alioth.debian.org/"
SRC_URI="https://alioth.debian.org/frs/download.php/3351/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE="nls readline"
RDEPEND="
sys-libs/ncurses
sys-libs/readline
nls? ( virtual/libintl )
"
DEPEND="
${RDEPEND}
sys-devel/bison
virtual/pkgconfig
nls? ( sys-devel/gettext )
"
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-0.6.9-as-needed.patch \
"${FILESDIR}"/${PN}-0.6.9-GROFF_NO_SGR.patch \
"${FILESDIR}"/${PN}-0.6.9-lzma-xz.patch \
"${FILESDIR}"/${PN}-0.6.10-version.patch \
"${FILESDIR}"/${PN}-0.6.10-info-suffix.patch \
"${FILESDIR}"/${PN}-0.6.10-dir-file.patch \
"${FILESDIR}"/${PN}-0.6.10-tinfo.patch
# autoconf does not work as expected
./autogen.sh || die
append-cflags -D_BSD_SOURCE # sbrk()
}
src_configure() {
econf \
$(use_with readline) \
$(use_enable nls)
}
src_install() {
emake DESTDIR="${D}" sysconfdir=/etc install
}