Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/xmlcopyeditor: ChangeLog xmlcopyeditor-1.2.0.6.ebuild
Date: Tue, 27 Nov 2012 12:04:36
Message-Id: 20121127101316.DE90920C65@flycatcher.gentoo.org
1 pinkbyte 12/11/27 10:13:16
2
3 Modified: ChangeLog xmlcopyeditor-1.2.0.6.ebuild
4 Log:
5 Fix some parts of .desktop file
6
7 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.24 app-editors/xmlcopyeditor/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 27 Nov 2012 09:53:44 -0000 1.23
23 +++ ChangeLog 27 Nov 2012 10:13:16 -0000 1.24
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-editors/xmlcopyeditor
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v 1.23 2012/11/27 09:53:44 pinkbyte Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/ChangeLog,v 1.24 2012/11/27 10:13:16 pinkbyte Exp $
29 +
30 + 27 Nov 2012; Sergey Popov <pinkbyte@g.o> xmlcopyeditor-1.2.0.6.ebuild:
31 + Fix some parts of .desktop file
32 +
33 + 27 Nov 2012; Sergey Popov <pinkbyte@g.o> xmlcopyeditor-1.2.0.6.ebuild:
34 + Small QA fix around DOCS variable and default src_install invokation
35
36 27 Nov 2012; Sergey Popov <pinkbyte@g.o> xmlcopyeditor-1.2.0.6.ebuild:
37 Respect CFLAGS/CXXFLAGS wrt bug #440744
38
39
40
41 1.6 app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.6.ebuild?rev=1.6&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.6.ebuild?rev=1.6&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.6.ebuild?r1=1.5&r2=1.6
46
47 Index: xmlcopyeditor-1.2.0.6.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.6.ebuild,v
50 retrieving revision 1.5
51 retrieving revision 1.6
52 diff -u -r1.5 -r1.6
53 --- xmlcopyeditor-1.2.0.6.ebuild 27 Nov 2012 09:53:44 -0000 1.5
54 +++ xmlcopyeditor-1.2.0.6.ebuild 27 Nov 2012 10:13:16 -0000 1.6
55 @@ -1,6 +1,6 @@
56 # Copyright 1999-2012 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.6.ebuild,v 1.5 2012/11/27 09:53:44 pinkbyte Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.0.6.ebuild,v 1.6 2012/11/27 10:13:16 pinkbyte Exp $
60
61 EAPI="4"
62
63 @@ -29,7 +29,13 @@
64 DEPEND="${RDEPEND}
65 dev-libs/boost"
66
67 +DOCS=( AUTHORS ChangeLog README NEWS )
68 +
69 src_prepare() {
70 + # fix desktop file
71 + sed -i -e '/Categories/s/Application;//' \
72 + -e '/Icon/s/.png//' \
73 + "src/${PN}.desktop" || die "sed on src/${PN}.desktop failed"
74 # bug #440744
75 sed -i -e 's/ -Wall -g -fexceptions//g' \
76 -e '/CXXFLAGS/s/CPPFLAGS/CXXFLAGS/' \
77 @@ -38,14 +44,11 @@
78 }
79
80 src_install() {
81 - emake DESTDIR="${D}" install
82 -
83 + default
84 if use guidexml; then
85 insinto /usr/share/xmlcopyeditor/templates/
86 for TEMPLATE in "${WORKDIR}"/GuideXML-templates/*.xml; do
87 newins "${TEMPLATE}" "${TEMPLATE##*/}"
88 done
89 fi
90 -
91 - dodoc AUTHORS ChangeLog README NEWS
92 }