diff options
author | Pacho Ramos <pacho@gentoo.org> | 2023-11-12 13:15:05 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2023-11-12 13:28:27 +0100 |
commit | a261106159eb12c438a339ecaed0587dd4fe1197 (patch) | |
tree | b1732b1b31d048d357b6a4cc6d0ce6d8afb42e81 /sci-chemistry/chemtool/chemtool-1.6.14-r1.ebuild | |
parent | gnome-extra/gnome-shell-extension-desktop-icons-ng: drop 47.0.3 (diff) | |
download | gentoo-a261106159eb12c438a339ecaed0587dd4fe1197.tar.gz gentoo-a261106159eb12c438a339ecaed0587dd4fe1197.tar.bz2 gentoo-a261106159eb12c438a339ecaed0587dd4fe1197.zip |
sci-chemistry/chemtool: Use transfig from fig2dev
Also use a better icon for Adamantane and drop useless USE flags.
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'sci-chemistry/chemtool/chemtool-1.6.14-r1.ebuild')
-rw-r--r-- | sci-chemistry/chemtool/chemtool-1.6.14-r1.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/sci-chemistry/chemtool/chemtool-1.6.14-r1.ebuild b/sci-chemistry/chemtool/chemtool-1.6.14-r1.ebuild new file mode 100644 index 000000000000..cddf65f0df6c --- /dev/null +++ b/sci-chemistry/chemtool/chemtool-1.6.14-r1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit autotools desktop + +DESCRIPTION="A GTK program for drawing organic molecules" +HOMEPAGE="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/" +SRC_URI="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/${P}.tar.gz + https://upload.wikimedia.org/wikipedia/commons/5/58/Adamantane_acsv.svg -> chemtool.png" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="emf" + +RDEPEND=" + dev-libs/glib:2 + >=media-gfx/fig2dev-3.2.9-r1 + x11-libs/gtk+:2 + x11-libs/libX11 + x11-libs/pango + emf? ( media-libs/libemf ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${P}-no-underlinking.patch + "${FILESDIR}"/${P}-fno-common.patch + "${FILESDIR}"/${P}-fix-tests.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --enable-undo \ + --enable-menu \ + --without-kdedir \ + $(use_enable emf) +} + +src_install() { + default + + insinto /usr/share/chemtool/examples + doins -r examples/. + + doicon "${DISTDIR}"/chemtool.png + make_desktop_entry chemtool Chemtool chemtool "Education;Science;Chemistry" +} |