Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/meld: ChangeLog meld-1.3.2.ebuild
Date: Sun, 29 Aug 2010 15:48:19
Message-Id: 20100829154813.1207D20051@flycatcher.gentoo.org
1 eva 10/08/29 15:48:13
2
3 Modified: ChangeLog
4 Added: meld-1.3.2.ebuild
5 Log:
6 Version bump, bug #326409.
7
8 (Portage version: 2.2_rc68/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.108 dev-util/meld/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/ChangeLog?rev=1.108&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/ChangeLog?rev=1.108&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/ChangeLog?r1=1.107&r2=1.108
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v
20 retrieving revision 1.107
21 retrieving revision 1.108
22 diff -u -r1.107 -r1.108
23 --- ChangeLog 19 Jun 2010 16:55:37 -0000 1.107
24 +++ ChangeLog 29 Aug 2010 15:48:12 -0000 1.108
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/meld
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v 1.107 2010/06/19 16:55:37 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v 1.108 2010/08/29 15:48:12 eva Exp $
30 +
31 +*meld-1.3.2 (29 Aug 2010)
32 +
33 + 29 Aug 2010; Gilles Dartiguelongue <eva@g.o> +meld-1.3.2.ebuild:
34 + Version bump, bug #326409.
35
36 19 Jun 2010; Raúl Porcel <armin76@g.o> meld-1.3.1.ebuild:
37 alpha/arm/ia64/sparc stable wrt #320271
38
39
40
41 1.1 dev-util/meld/meld-1.3.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/meld-1.3.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/meld-1.3.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: meld-1.3.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/meld/meld-1.3.2.ebuild,v 1.1 2010/08/29 15:48:12 eva Exp $
51
52 GCONF_DEBUG="no"
53
54 inherit python gnome2 eutils multilib
55
56 DESCRIPTION="A graphical (GNOME 2) diff and merge tool"
57 HOMEPAGE="http://meld.sourceforge.net/"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="doc gnome"
63
64 RDEPEND=">=dev-lang/python-2.4
65 >=gnome-base/libglade-2
66 gnome? (
67 >=gnome-base/libgnome-2
68 >=dev-python/libgnome-python-2.22
69 >=dev-python/gconf-python-2.22
70 >=dev-python/gnome-vfs-python-2.22 )
71 >=dev-python/pygtk-2.8
72 >=dev-python/pygobject-2.8"
73
74 DEPEND="${RDEPEND}
75 dev-util/intltool
76 app-text/scrollkeeper"
77
78 DOCS="AUTHORS NEWS help/ChangeLog"
79
80 src_unpack() {
81 gnome2_src_unpack
82
83 # fix the prefix so its not in */local/*
84 sed -e 's:/usr/local:/usr:' \
85 -e "s:\$(prefix)/lib:\$(prefix)/$(get_libdir):" \
86 -i INSTALL || die "sed 1 failed"
87
88 # don't install anything to /usr/share/doc/meld
89 sed -e "s:\$(docdir)/meld:\$(docdir)/${PF}:" \
90 -i INSTALL || die "sed 2 failed"
91
92 # let the python eclass handle python objects
93 sed -e '/$(PYTHON) .* .import compileall;/s/\t/&#/g' \
94 -i Makefile || die "sed 3 failed"
95
96 # don't run scrollkeeper (with the wrong path), leave that to gnome2.eclass #145833
97 sed -e '/scrollkeeper-update/s/\t/&#/' \
98 -i help/*/Makefile || die "sed 4 failed"
99
100 # fix test suite
101 sed -e 's,\(for file in \["\)\(meld"\]\),\1bin/\2,' \
102 -e 's,\(open("\)\(meldapp.py")\),\1meld/\2,' \
103 -i tools/check_release || die "sed 5 failed"
104
105 strip-linguas -i "${S}/po"
106 local mylinguas=""
107 for x in ${LINGUAS}; do
108 mylinguas="${mylinguas} ${x}.po"
109 done
110
111 if [ -n "${mylinguas}" ]; then
112 sed -e "s/PO:=.*/PO:=${mylinguas}/" \
113 -i po/Makefile || die "sed 5 failed"
114 fi
115 }
116
117 src_compile() {
118 emake || die "make failed"
119 }
120
121 pkg_postinst() {
122 python_mod_optimize /usr/$(get_libdir)/meld
123 }
124
125 pkg_postrm() {
126 python_mod_cleanup /usr/$(get_libdir)/meld
127 }