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