blob: 074a350bbfe88a5605038a1ad8a3f00640b5fba7 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libqalculate/libqalculate-0.9.7-r1.ebuild,v 1.6 2013/05/20 12:46:51 ago Exp $
EAPI=5
inherit eutils
DESCRIPTION="A modern multi-purpose calculator library"
HOMEPAGE="http://qalculate.sourceforge.net/"
SRC_URI="mirror://sourceforge/${P/lib}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="gnuplot readline static-libs"
COMMON_DEPEND="
dev-libs/glib:2
dev-libs/libxml2:2
>=sci-libs/cln-1.2
sys-libs/zlib
readline? ( sys-libs/readline )"
DEPEND="${COMMON_DEPEND}
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig"
RDEPEND="${COMMON_DEPEND}
net-misc/wget
gnuplot? ( >=sci-visualization/gnuplot-3.7 )"
src_prepare() {
cat >po/POTFILES.skip <<-EOF
# Required by make check
data/currencies.xml.in
data/datasets.xml.in
data/elements.xml.in
data/functions.xml.in
data/planets.xml.in
data/units.xml.in
data/variables.xml.in
src/defs2doc.cc
EOF
}
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_with readline)
}
src_install() {
# docs/reference/Makefile.am -> referencedir=
emake \
DESTDIR="${D}" \
referencedir="${EPREFIX}/usr/share/doc/${PF}/html/reference" \
install
dodoc AUTHORS ChangeLog NEWS README* TODO
prune_libtool_files
}
|