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.8.4.ebuild
Date: Thu, 06 Feb 2014 23:01:58
Message-Id: 20140206230154.2AE032004C@flycatcher.gentoo.org
1 eva 14/02/06 23:01:54
2
3 Modified: ChangeLog
4 Added: meld-1.8.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.175 dev-util/meld/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/ChangeLog?rev=1.175&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/ChangeLog?rev=1.175&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/ChangeLog?r1=1.174&r2=1.175
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v
20 retrieving revision 1.174
21 retrieving revision 1.175
22 diff -u -r1.174 -r1.175
23 --- ChangeLog 8 Dec 2013 18:18:33 -0000 1.174
24 +++ ChangeLog 6 Feb 2014 23:01:53 -0000 1.175
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/meld
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v 1.174 2013/12/08 18:18:33 pacho Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v 1.175 2014/02/06 23:01:53 eva Exp $
31 +
32 +*meld-1.8.4 (06 Feb 2014)
33 +
34 + 06 Feb 2014; Gilles Dartiguelongue <eva@g.o> +meld-1.8.4.ebuild:
35 + Version bump.
36
37 08 Dec 2013; Pacho Ramos <pacho@g.o> meld-1.8.2.ebuild:
38 x86 stable, bug #478252
39
40
41
42 1.1 dev-util/meld/meld-1.8.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/meld-1.8.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/meld-1.8.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: meld-1.8.4.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/dev-util/meld/meld-1.8.4.ebuild,v 1.1 2014/02/06 23:01:54 eva Exp $
52
53 EAPI="5"
54 GCONF_DEBUG="no"
55 PYTHON_COMPAT=( python2_{6,7} )
56
57 inherit eutils python-single-r1 gnome2
58
59 DESCRIPTION="A graphical diff and merge tool"
60 HOMEPAGE="http://meldmerge.org/"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
65 IUSE="+highlight gnome"
66
67 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
68
69 # FIXME: switch gconf-python to python-r1
70 RDEPEND="
71 ${PYTHON_DEPS}
72 >=dev-python/pygtk-2.14:2[${PYTHON_USEDEP}]
73 >=dev-python/pygobject-2.8:2[${PYTHON_USEDEP}]
74 dev-python/dbus-python[${PYTHON_USEDEP}]
75 dev-python/pycairo[${PYTHON_USEDEP}]
76 highlight? ( >=dev-python/pygtksourceview-2.10[${PYTHON_USEDEP}] )
77 gnome? ( >=dev-python/gconf-python-2.22:2 )
78 "
79 DEPEND="${RDEPEND}
80 app-text/scrollkeeper
81 dev-util/gtk-doc-am
82 dev-util/intltool
83 "
84
85 src_prepare() {
86 # fix the prefix so its not in */local/*
87 sed -e "s:/usr/local:${EPREFIX}/usr:" \
88 -e "s:\$(prefix)/lib:\$(prefix)/$(get_libdir):" \
89 -i INSTALL || die "sed 1 failed"
90
91 # don't install anything to /usr/share/doc/meld
92 sed -e "s:\$(docdir)/meld:\$(docdir)/${PF}:" \
93 -i INSTALL || die "sed 2 failed"
94
95 # don't run scrollkeeper (with the wrong path),
96 # leave that to gnome2.eclass #145833
97 sed -e '/scrollkeeper-update/s/\t/&#/' \
98 -i help/*/Makefile || die "sed 4 failed"
99
100 strip-linguas -i "${S}/po"
101 local mylinguas=""
102 for x in ${LINGUAS}; do
103 mylinguas="${mylinguas} ${x}.po"
104 done
105
106 if [ -n "${mylinguas}" ]; then
107 sed -e "s/PO:=.*/PO:=${mylinguas}/" \
108 -i po/Makefile || die "sed 6 failed"
109 fi
110
111 gnome2_src_prepare
112 }
113
114 src_configure() {
115 :
116 }
117
118 src_install() {
119 gnome2_src_install
120 python_fix_shebang "${ED}"/usr/bin
121 doman meld.1
122 }