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