blob: bb59841f81c93a574162a6f6bbad7c36f6075bf9 (
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
36
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/libqalculate-0.8.0.ebuild,v 1.2 2005/07/10 01:27:50 weeve Exp $
DESCRIPTION="A modern multi-purpose calculator library"
HOMEPAGE="http://qalculate.sourceforge.net/"
SRC_URI="mirror://sourceforge/qalculate/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~sparc ~x86"
IUSE="nls readline"
DEPEND=">=sci-libs/cln-1.1
dev-libs/libxml2
>=dev-libs/glib-2.4
>=media-gfx/gnuplot-3.7
net-misc/wget
nls? ( sys-devel/gettext )
readline? ( sys-libs/readline )"
RDEPEND="dev-lang/perl
dev-perl/XML-Parser
>=dev-util/pkgconfig-0.12.0"
src_compile() {
CONFIG="$(use_with readline)"
econf ${CONFIG} || die
emake || die
}
src_install() {
DOCS="AUTHORS ChangeLog NEWS README TODO"
einstall || die
dodoc ${DOCS}
}
|