Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/chemtool: chemtool-1.6.14.ebuild ChangeLog
Date: Tue, 11 Feb 2014 19:00:13
Message-Id: 20140211190009.76C322004C@flycatcher.gentoo.org
1 jlec 14/02/11 19:00:09
2
3 Modified: ChangeLog
4 Added: chemtool-1.6.14.ebuild
5 Log:
6 Version BUmp, #501004
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.35 sci-chemistry/chemtool/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/chemtool/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/chemtool/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/chemtool/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/chemtool/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 14 Aug 2013 12:53:30 -0000 1.34
24 +++ ChangeLog 11 Feb 2014 19:00:09 -0000 1.35
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-chemistry/chemtool
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/chemtool/ChangeLog,v 1.34 2013/08/14 12:53:30 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/chemtool/ChangeLog,v 1.35 2014/02/11 19:00:09 jlec Exp $
31 +
32 +*chemtool-1.6.14 (11 Feb 2014)
33 +
34 + 11 Feb 2014; Justin Lecher <jlec@g.o> +chemtool-1.6.14.ebuild:
35 + Version BUmp, #501004
36
37 14 Aug 2013; Patrick Lauer <patrick@g.o> chemtool-1.6.13.ebuild:
38 Whitespace
39
40
41
42 1.1 sci-chemistry/chemtool/chemtool-1.6.14.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/chemtool/chemtool-1.6.14.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/chemtool/chemtool-1.6.14.ebuild?rev=1.1&content-type=text/plain
46
47 Index: chemtool-1.6.14.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/chemtool/chemtool-1.6.14.ebuild,v 1.1 2014/02/11 19:00:09 jlec Exp $
52
53 EAPI=5
54
55 AUTOTOOLS_AUTORECONF=true
56
57 inherit autotools-utils eutils
58
59 DESCRIPTION="A GTK program for drawing organic molecules"
60 HOMEPAGE="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/"
61 SRC_URI="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE="emf gnome nls"
67
68 RDEPEND="
69 dev-libs/glib:2
70 media-gfx/transfig
71 x11-libs/gtk+:2
72 x11-libs/libX11
73 x11-libs/pango
74 emf? ( media-libs/libemf )"
75 DEPEND="${RDEPEND}
76 virtual/pkgconfig"
77
78 AUTOTOOLS_IN_SOURCE_BUILD=1
79
80 PATCHES=(
81 "${FILESDIR}"/1.6.13-no-underlinking.patch
82 )
83
84 src_configure() {
85 local myeconfargs=(
86 --without-kdedir
87 $(use_with gnome gnomedir /usr)
88 $(use_enable emf)
89 --enable-undo
90 --enable-menu
91 )
92 autotools-utils_src_configure
93 }
94
95 src_install() {
96 autotools-utils_src_install
97
98 insinto /usr/share/${PN}/examples
99 doins "${S}"/examples/*
100 if ! use nls; then rm -rf "${ED}"/usr/share/locale || die; fi
101
102 insinto /usr/share/pixmaps
103 doins chemtool.xpm
104 make_desktop_entry ${PN} Chemtool ${PN} "Education;Science;Chemistry"
105 }