blob: 21173e7f756844ea83491fd9c17f2c944411d441 (
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
|
# Copyright 1999-2008 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.ebuild,v 1.7 2008/03/27 19:15:52 maekke Exp $
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 ppc -sparc x86"
IUSE="bindist"
DEPEND="dev-lang/ocaml
sys-libs/ncurses
!bindist? ( sci-libs/gsl )
bindist? ( <sci-libs/gsl-1.10 )"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README ChangeLog doc/TODO || die
insinto /usr/share/doc/${PF}
doins doc/manual.pdf doc/manual.html || die
}
|