Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/virt-manager: ChangeLog virt-manager-9999.ebuild
Date: Fri, 04 Feb 2011 15:25:11
Message-Id: 20110204152459.935B720054@flycatcher.gentoo.org
1 cardoe 11/02/04 15:24:59
2
3 Modified: ChangeLog virt-manager-9999.ebuild
4 Log:
5 Update 999 ebuild to be compatible with normal release ebuilds
6
7 (Portage version: 2.1.9.35/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.39 app-emulation/virt-manager/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virt-manager/ChangeLog?rev=1.39&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virt-manager/ChangeLog?rev=1.39&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virt-manager/ChangeLog?r1=1.38&r2=1.39
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v
19 retrieving revision 1.38
20 retrieving revision 1.39
21 diff -u -r1.38 -r1.39
22 --- ChangeLog 2 Feb 2011 22:23:10 -0000 1.38
23 +++ ChangeLog 4 Feb 2011 15:24:59 -0000 1.39
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-emulation/virt-manager
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v 1.38 2011/02/02 22:23:10 cardoe Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v 1.39 2011/02/04 15:24:59 cardoe Exp $
29 +
30 + 04 Feb 2011; Doug Goldstein <cardoe@g.o> virt-manager-9999.ebuild:
31 + Update 999 ebuild to be compatible with normal release ebuilds
32
33 02 Feb 2011; Doug Goldstein <cardoe@g.o> virt-manager-0.8.5.ebuild:
34 Fix up build depends
35
36
37
38 1.2 app-emulation/virt-manager/virt-manager-9999.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virt-manager/virt-manager-9999.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virt-manager/virt-manager-9999.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virt-manager/virt-manager-9999.ebuild?r1=1.1&r2=1.2
43
44 Index: virt-manager-9999.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/virt-manager-9999.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- virt-manager-9999.ebuild 13 Jan 2011 16:16:35 -0000 1.1
51 +++ virt-manager-9999.ebuild 4 Feb 2011 15:24:59 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/virt-manager-9999.ebuild,v 1.1 2011/01/13 16:16:35 cardoe Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/virt-manager-9999.ebuild,v 1.2 2011/02/04 15:24:59 cardoe Exp $
57
58 #BACKPORTS=1
59
60 @@ -58,16 +58,18 @@
61 EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
62 epatch
63
64 - # virt-manager's autogen.sh touches this and eautoreconf fails
65 - # unless we do this
66 - touch config.rpath
67 -
68 - rm -f config.status
69 - intltoolize --automake --copy --force
70 - perl -i -p -e 's,^DATADIRNAME.*$,DATADIRNAME = share,' po/Makefile.in.in
71 - perl -i -p -e 's,^GETTEXT_PACKAGE.*$,GETTEXT_PACKAGE = virt-manager,' \
72 - po/Makefile.in.i
73 - eautoreconf
74 + if [[ ${PV} = *9999* ]]; then
75 + # virt-manager's autogen.sh touches this and eautoreconf fails
76 + # unless we do this
77 + touch config.rpath
78 +
79 + rm -f config.status
80 + intltoolize --automake --copy --force
81 + perl -i -p -e 's,^DATADIRNAME.*$,DATADIRNAME = share,' po/Makefile.in.in
82 + perl -i -p -e 's,^GETTEXT_PACKAGE.*$,GETTEXT_PACKAGE = virt-manager,' \
83 + po/Makefile.in.i
84 + eautoreconf
85 + fi
86
87 gnome2_src_prepare
88 }