blob: d49c3ac3ade6c995125fc9a152efc6d0406057b4 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-calculators/qalculate-gtk/qalculate-gtk-0.9.7.ebuild,v 1.4 2010/02/13 16:09:13 armin76 Exp $
EAPI=2
GCONF_DEBUG=no
inherit eutils gnome2
DESCRIPTION="A modern multi-purpose calculator"
HOMEPAGE="http://qalculate.sourceforge.net/"
SRC_URI="mirror://sourceforge/qalculate/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc sparc x86"
IUSE="gnome"
RDEPEND=">=sci-libs/libqalculate-0.9.7
>=sci-libs/cln-1.2
>=x11-libs/gtk+-2.4:2
>=gnome-base/libglade-2
gnome? ( >=gnome-base/libgnome-2
gnome-extra/yelp )"
DEPEND="${RDEPEND}
app-text/rarian
sys-devel/gettext
dev-util/intltool
dev-util/pkgconfig"
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS README TODO"
G2CONF="--disable-dependency-tracking
$(use_with gnome libgnome)"
}
src_prepare() {
# Required by make check
echo data/periodictable.glade > po/POTFILES.skip
epatch "${FILESDIR}"/${P}-entry.patch
gnome2_src_prepare
}
|