blob: 42aad0ac510ad85a1c2c5d6cc4af54ca6b17e9a3 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/orpie-1.5.1-r1.ebuild,v 1.2 2010/06/03 21:22:59 bicatali Exp $
EAPI=2
inherit eutils autotools
DESCRIPTION="A fullscreen RPN calculator for the console"
HOMEPAGE="http://pessimization.com/software/orpie/"
SRC_URI="http://pessimization.com/software/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="dev-ml/ocamlgsl
sys-libs/ncurses"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-ocaml311.patch
epatch "${FILESDIR}"/${P}-nogsl.patch
epatch "${FILESDIR}"/${P}-orpierc.patch
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README ChangeLog doc/TODO
if use doc; then
insinto /usr/share/doc/${PF}
doins doc/manual.pdf doc/manual.html
fi
}
|