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.
36 lines
631 B
36 lines
631 B
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=4
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="A BiDirectional Text Viewer"
|
|
HOMEPAGE="http://www.ivrix.org.il"
|
|
SRC_URI="http://ftp.ivrix.org.il/pub/ivrix/src/cmdline/${P}.tgz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-libs/fribidi-0.19.2-r2"
|
|
DEPEND="${DEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
S=${WORKDIR}/${PN}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-fribidi.patch
|
|
}
|
|
|
|
src_compile() {
|
|
tc-export CC
|
|
emake
|
|
}
|
|
|
|
src_install() {
|
|
dobin bidiv
|
|
dodoc README WHATSNEW
|
|
doman bidiv.1
|
|
}
|