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