diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2010-11-25 13:05:07 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2010-11-25 13:05:07 +0000 |
commit | 0713b0de9b060d25da93d8bbf7e411a33c392453 (patch) | |
tree | 07d75c3b7fb0d8e66f02ad8584d584cb92e3b4c3 /sci-chemistry | |
parent | Some QA (diff) | |
download | gentoo-2-0713b0de9b060d25da93d8bbf7e411a33c392453.tar.gz gentoo-2-0713b0de9b060d25da93d8bbf7e411a33c392453.tar.bz2 gentoo-2-0713b0de9b060d25da93d8bbf7e411a33c392453.zip |
Version bump. Fixes #271998, #342743 and #345095. Thanks to urcindalo and Diego Elio Pettenò for the reports. Thanks to Argon <argonovsky@gmail.com> for his work on new ebuild
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/gchemutils/ChangeLog | 10 | ||||
-rw-r--r-- | sci-chemistry/gchemutils/gchemutils-0.13.1.ebuild | 72 |
2 files changed, 81 insertions, 1 deletions
diff --git a/sci-chemistry/gchemutils/ChangeLog b/sci-chemistry/gchemutils/ChangeLog index 5da2c17e002d..ed7bbcdd1433 100644 --- a/sci-chemistry/gchemutils/ChangeLog +++ b/sci-chemistry/gchemutils/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for sci-chemistry/gchemutils # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gchemutils/ChangeLog,v 1.12 2010/05/16 02:59:01 je_fro Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gchemutils/ChangeLog,v 1.13 2010/11/25 13:05:07 xarthisius Exp $ + +*gchemutils-0.13.1 (25 Nov 2010) + + 25 Nov 2010; Kacper Kowalik <xarthisius@gentoo.org> + +gchemutils-0.13.1.ebuild: + Version bump. Fixes #271998, #342743 and #345095. Thanks to urcindalo and + Diego Elio Pettenò for the reports. Thanks to Argon <argonovsky@gmail.com> + for his work on version bump. 16 May 2010; Jeff Gardner <je_fro@gentoo.org> gchemutils-0.10.12.ebuild: Removing gnome USE flag from libgsf and goffice. diff --git a/sci-chemistry/gchemutils/gchemutils-0.13.1.ebuild b/sci-chemistry/gchemutils/gchemutils-0.13.1.ebuild new file mode 100644 index 000000000000..7a1ebda8ea11 --- /dev/null +++ b/sci-chemistry/gchemutils/gchemutils-0.13.1.ebuild @@ -0,0 +1,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 " +} |