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: unetbootin-527-r1.ebuild ChangeLog unetbootin-494.ebuild unetbootin-506.ebuild
Date: Mon, 04 Apr 2011 04:27:18
Message-Id: 20110404042707.4EDD620054@flycatcher.gentoo.org
1 jer 11/04/04 04:27:07
2
3 Modified: ChangeLog
4 Added: unetbootin-527-r1.ebuild
5 Removed: unetbootin-494.ebuild unetbootin-506.ebuild
6 Log:
7 Install icon files now that we have them (bug #344399).
8
9 (Portage version: 2.2.0_alpha29/cvs/Linux i686)
10
11 Revision Changes Path
12 1.58 sys-boot/unetbootin/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/ChangeLog?rev=1.58&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/ChangeLog?rev=1.58&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/ChangeLog?r1=1.57&r2=1.58
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v
21 retrieving revision 1.57
22 retrieving revision 1.58
23 diff -u -r1.57 -r1.58
24 --- ChangeLog 28 Mar 2011 13:27:20 -0000 1.57
25 +++ ChangeLog 4 Apr 2011 04:27:07 -0000 1.58
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-boot/unetbootin
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.57 2011/03/28 13:27:20 phajdan.jr Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.58 2011/04/04 04:27:07 jer Exp $
31 +
32 +*unetbootin-527-r1 (04 Apr 2011)
33 +
34 + 04 Apr 2011; Jeroen Roovers <jer@g.o> -unetbootin-494.ebuild,
35 + -unetbootin-506.ebuild, +unetbootin-527-r1.ebuild:
36 + Install icon files now that we have them (bug #344399).
37
38 28 Mar 2011; Pawel Hajdan jr <phajdan.jr@g.o>
39 unetbootin-502.ebuild:
40
41
42
43 1.1 sys-boot/unetbootin/unetbootin-527-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/unetbootin-527-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/unetbootin-527-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: unetbootin-527-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-527-r1.ebuild,v 1.1 2011/04/04 04:27:07 jer Exp $
53
54 EAPI="3"
55
56 inherit qt4-r2
57
58 DESCRIPTION="Universal Netboot Installer creates Live USB systems for various OS
59 distributions."
60 HOMEPAGE="http://unetbootin.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV}.tar.gz"
62
63 SLOT="0"
64 LICENSE="GPL-2"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 S="${WORKDIR}"
69
70 DEPEND="x11-libs/qt-gui"
71 RDEPEND="${DEPEND}
72 sys-fs/mtools
73 sys-boot/syslinux
74 app-arch/p7zip"
75
76 src_configure() {
77 lupdate ${PN}.pro || die
78 lrelease ${PN}.pro || die
79 eqmake4 ${PN}.pro || die
80 }
81
82 src_install() {
83 dobin ${PN} || die
84 insinto /usr/share/applications
85 doins ${PN}.desktop || die
86 for file in ${PN}*.png; do
87 size="${file/unetbootin_}"
88 size="${size/.png}x${size/.png}"
89 echo $file $size
90 insinto /usr/share/icons/hicolor/${size}
91 newins ${file} ${PN}.png
92 done
93 }