blob: 7a1ebda8ea1149dd81682662b548d6b230b08d38 (
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
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gchemutils/gchemutils-0.13.1.ebuild,v 1.1 2010/11/25 13:05:07 xarthisius Exp $
EAPI=3
inherit gnome2 multilib versionator
MPV=$(get_version_component_range 1-2)
MY_PN=gnome-chemistry-utils
MY_P=${MY_PN}-${PV}
DESCRIPTION="C++ classes and Gtk+-2 widgets related to chemistry"
HOMEPAGE="http://www.nongnu.org/gchemutils/"
SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${MPV}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls nsplugin"
CDEPEND="gnome-base/libglade
x11-libs/goffice
x11-libs/gtkglext
sci-chemistry/chemical-mime-data
sci-chemistry/bodr
sci-chemistry/openbabel
nsplugin? ( || (
net-libs/xulrunner
www-client/firefox
) )"
RDEPEND="${CDEPEND}
gnome-extra/yelp" #271998
DEPEND="${CDEPEND}
app-text/gnome-doc-utils
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
S=${WORKDIR}/${MY_P}
pkg_setup() {
G2CONF="${G2CONF}
--disable-schemas-install
--disable-scrollkeeper
--disable-dependency-tracking
--disable-update-databases
$(use_enable nsplugin mozilla-plugin)
$(use_enable nls)"
if use nsplugin; then
G2CONF="${G2CONF} --with-mozilla-libdir=/usr/$(get_libdir)/nsbrowser/"
fi
DOCS="AUTHORS ChangeLog README TODO NEWS"
}
src_test() {
# There are no tests, and make check needlessly rebuilds docs needing extra
# app-text/docbook-xml-dtd-{4.1.2,4.5} wtr bug 342743
true
}
src_install() {
gnome2_src_install
find "${D}" -name "*.la" -delete
}
pkg_postinst() {
gnome2_pkg_postinst
elog "You can safely ignore any 'Unknown media type in type blah' warnings above."
elog "For more info see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=420795 "
}
|