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/numbat: ChangeLog numbat-0.999-r1.ebuild numbat-0.999.ebuild
Date: Wed, 22 May 2013 14:40:34
Message-Id: 20130522144029.4BBFA2171D@flycatcher.gentoo.org
1 jlec 13/05/22 14:40:29
2
3 Modified: ChangeLog
4 Added: numbat-0.999-r1.ebuild
5 Removed: numbat-0.999.ebuild
6 Log:
7 sci-chemistry/numbat: Add fix for gnuplot
8
9 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
10
11 Revision Changes Path
12 1.4 sci-chemistry/numbat/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/numbat/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/numbat/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/numbat/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/numbat/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 21 May 2013 11:02:22 -0000 1.3
25 +++ ChangeLog 22 May 2013 14:40:28 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-chemistry/numbat
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/numbat/ChangeLog,v 1.3 2013/05/21 11:02:22 jlec Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/numbat/ChangeLog,v 1.4 2013/05/22 14:40:28 jlec Exp $
31 +
32 +*numbat-0.999-r1 (22 May 2013)
33 +
34 + 22 May 2013; Justin Lecher <jlec@g.o> -numbat-0.999.ebuild,
35 + +numbat-0.999-r1.ebuild, +files/numbat-0.999-gnuplot.patch:
36 + Add fix for gnuplot
37
38 21 May 2013; Justin Lecher <jlec@g.o> Manifest:
39 Fix Manifest
40
41
42
43 1.1 sci-chemistry/numbat/numbat-0.999-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/numbat/numbat-0.999-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/numbat/numbat-0.999-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: numbat-0.999-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/numbat/numbat-0.999-r1.ebuild,v 1.1 2013/05/22 14:40:28 jlec Exp $
53
54 EAPI=5
55
56 AUTOTOOLS_AUTORECONF=true
57
58 inherit autotools-utils
59
60 MY_PN="Numbat"
61 MY_P="${MY_PN}-${PV}"
62
63 DESCRIPTION="new user-friendly method built for automatic dX-tensor determination"
64 HOMEPAGE="http://www.nmr.chem.uu.nl/~christophe/numbat.html"
65 SRC_URI="http://comp-bio.anu.edu.au/private/downloads/Numbat/${MY_P}.tar.gz"
66
67 SLOT="0"
68 LICENSE="GPL-3"
69 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
70 IUSE=""
71
72 CDEPEND="
73 gnome-base/libglade:2.0
74 sci-libs/gsl
75 x11-libs/gtk+:2"
76 DEPEND="${CDEPEND}
77 virtual/pkgconfig"
78 RDEPEND="${CDEPEND}
79 sci-chemistry/molmol
80 sci-chemistry/pymol
81 sci-visualization/gnuplot"
82
83 S="${WORKDIR}"/${MY_P}
84
85 PATCHES=(
86 # "${FILESDIR}"/${P}-glade.patch
87 "${FILESDIR}"/${P}-gnuplot.patch )
88
89 src_prepare() {
90 sed \
91 -e '/COPYING/d' \
92 -e "s:doc/numbat:share/doc/${PF}:g" \
93 -i Makefile.am src/common.h || die
94 rm missing
95 emake distclean
96 autotools-utils_src_prepare
97 }
98
99 src_install() {
100 docompress -x /usr/share/doc/${PF}
101 autotools-utils_src_install
102 }