Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-boot/unetbootin: ChangeLog unetbootin-391.ebuild
Date: Mon, 01 Feb 2010 22:37:58
Message-Id: E1Nc4u1-0002EH-90@stork.gentoo.org
1 jer 10/02/01 22:37:53
2
3 Modified: ChangeLog unetbootin-391.ebuild
4 Log:
5 Die more often. Do not install useless README.TXT.
6 (Portage version: 2.2_rc62/cvs/Linux i686)
7
8 Revision Changes Path
9 1.29 sys-boot/unetbootin/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/unetbootin/ChangeLog?rev=1.29&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/unetbootin/ChangeLog?rev=1.29&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/unetbootin/ChangeLog?r1=1.28&r2=1.29
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v
18 retrieving revision 1.28
19 retrieving revision 1.29
20 diff -u -r1.28 -r1.29
21 --- ChangeLog 1 Feb 2010 18:36:43 -0000 1.28
22 +++ ChangeLog 1 Feb 2010 22:37:52 -0000 1.29
23 @@ -1,6 +1,9 @@
24 # ChangeLog for sys-boot/unetbootin
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.28 2010/02/01 18:36:43 jer Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.29 2010/02/01 22:37:52 jer Exp $
28 +
29 + 01 Feb 2010; Jeroen Roovers <jer@g.o> unetbootin-391.ebuild:
30 + Die more often. Do not install useless README.TXT.
31
32 *unetbootin-391 (01 Feb 2010)
33
34
35
36
37 1.2 sys-boot/unetbootin/unetbootin-391.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/unetbootin/unetbootin-391.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/unetbootin/unetbootin-391.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/unetbootin/unetbootin-391.ebuild?r1=1.1&r2=1.2
42
43 Index: unetbootin-391.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-391.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- unetbootin-391.ebuild 1 Feb 2010 18:36:43 -0000 1.1
50 +++ unetbootin-391.ebuild 1 Feb 2010 22:37:52 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-391.ebuild,v 1.1 2010/02/01 18:36:43 jer Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-391.ebuild,v 1.2 2010/02/01 22:37:52 jer Exp $
56
57 inherit qt4
58
59 @@ -23,15 +23,14 @@
60 app-arch/p7zip"
61
62 src_compile() {
63 - lupdate unetbootin.pro
64 - lrelease unetbootin.pro
65 - eqmake4 unetbootin.pro
66 + lupdate unetbootin.pro || die "lupdate failed"
67 + lrelease unetbootin.pro || die "lrelease failed"
68 + eqmake4 unetbootin.pro || die "eqmake4 failed"
69 emake || die "make failed"
70 }
71
72 src_install() {
73 - dodoc README.TXT
74 dobin unetbootin || die "dobin failed"
75 insinto /usr/share/applications
76 - doins unetbootin.desktop
77 + doins unetbootin.desktop || die "doins failed"
78 }