Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/gperiodic: ChangeLog gperiodic-2.0.10-r2.ebuild gperiodic-2.0.10-r1.ebuild gperiodic-2.0.7.ebuild
Date: Mon, 23 Aug 2010 19:48:36
Message-Id: 20100823194831.D58062004E@flycatcher.gentoo.org
1 xarthisius 10/08/23 19:48:31
2
3 Modified: ChangeLog
4 Added: gperiodic-2.0.10-r2.ebuild
5 Removed: gperiodic-2.0.10-r1.ebuild gperiodic-2.0.7.ebuild
6 Log:
7 Simplify ebuild by patching Makefile, correct nls, fix parallel make. Remove old version using built_with_use.
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.14 sci-chemistry/gperiodic/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gperiodic/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gperiodic/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gperiodic/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/gperiodic/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 22 Aug 2010 20:01:10 -0000 1.13
24 +++ ChangeLog 23 Aug 2010 19:48:31 -0000 1.14
25 @@ -1,6 +1,14 @@
26 # ChangeLog for sci-chemistry/gperiodic
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gperiodic/ChangeLog,v 1.13 2010/08/22 20:01:10 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gperiodic/ChangeLog,v 1.14 2010/08/23 19:48:31 xarthisius Exp $
30 +
31 +*gperiodic-2.0.10-r2 (23 Aug 2010)
32 +
33 + 23 Aug 2010; Kacper Kowalik <xarthisius@g.o>
34 + -gperiodic-2.0.7.ebuild, -gperiodic-2.0.10-r1.ebuild,
35 + +gperiodic-2.0.10-r2.ebuild, +files/gperiodic-2.0.10-makefile.patch:
36 + Simplify ebuild by patching Makefile, correct nls, fix parallel make.
37 + Remove old version using built_with_use.
38
39 *gperiodic-2.0.10-r1 (22 Aug 2010)
40
41
42
43
44 1.1 sci-chemistry/gperiodic/gperiodic-2.0.10-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gperiodic/gperiodic-2.0.10-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gperiodic/gperiodic-2.0.10-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gperiodic-2.0.10-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gperiodic/gperiodic-2.0.10-r2.ebuild,v 1.1 2010/08/23 19:48:31 xarthisius Exp $
54
55 EAPI="2"
56
57 inherit toolchain-funcs eutils
58
59 DESCRIPTION="Periodic table application for Linux"
60 SRC_URI="http://www.frantz.fi/software/${P}.tar.gz"
61 HOMEPAGE="http://www.frantz.fi/software/gperiodic.php"
62
63 KEYWORDS="~amd64 ~x86"
64 SLOT="0"
65 LICENSE="GPL-2"
66 IUSE="nls"
67
68 RDEPEND=">=sys-libs/ncurses-5.2
69 x11-libs/gtk+:2
70 x11-libs/cairo[X]
71 nls? ( sys-devel/gettext )"
72
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig"
75
76 src_prepare() {
77 use nls && myopts="enable_nls=1" || myopts="enable_nls=0"
78 epatch "${FILESDIR}"/${P}-makefile.patch
79 }
80
81 src_compile() {
82 emake CC=$(tc-getCC) ${myopts} || die
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" ${myopts} install || die
87 dodoc AUTHORS ChangeLog README NEWS || die
88 }