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-575.ebuild
Date: Sat, 28 Apr 2012 17:44:43
Message-Id: 20120428174434.3CEAA2004B@flycatcher.gentoo.org
1 jer 12/04/28 17:44:34
2
3 Modified: ChangeLog
4 Added: unetbootin-575.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.78 sys-boot/unetbootin/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/ChangeLog?rev=1.78&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/ChangeLog?rev=1.78&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/ChangeLog?r1=1.77&r2=1.78
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v
20 retrieving revision 1.77
21 retrieving revision 1.78
22 diff -u -r1.77 -r1.78
23 --- ChangeLog 8 Mar 2012 17:59:56 -0000 1.77
24 +++ ChangeLog 28 Apr 2012 17:44:34 -0000 1.78
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-boot/unetbootin
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.77 2012/03/08 17:59:56 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.78 2012/04/28 17:44:34 jer Exp $
30 +
31 +*unetbootin-575 (28 Apr 2012)
32 +
33 + 28 Apr 2012; Jeroen Roovers <jer@g.o> +unetbootin-575.ebuild:
34 + Version bump.
35
36 08 Mar 2012; Jeroen Roovers <jer@g.o> -unetbootin-565.ebuild:
37 Old.
38
39
40
41 1.1 sys-boot/unetbootin/unetbootin-575.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/unetbootin-575.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/unetbootin-575.ebuild?rev=1.1&content-type=text/plain
45
46 Index: unetbootin-575.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-575.ebuild,v 1.1 2012/04/28 17:44:34 jer Exp $
51
52 EAPI="4"
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 UNETBOOTIN_LINGUAS="
67 am ar ast be bg bn ca cs da de el eo es et eu fi fo fr gl he hr hu id it ja lt
68 lv ml ms nan nb nl nn pl pt pt_BR ro ru sk sl sr sv sw tr uk ur vi zh_CN zh_TW
69 "
70
71 for lingua in ${UNETBOOTIN_LINGUAS}; do
72 IUSE="${IUSE} linguas_${lingua}"
73 done
74
75 S="${WORKDIR}"
76
77 DEPEND="x11-libs/qt-gui"
78 RDEPEND="${DEPEND}
79 sys-fs/mtools
80 sys-boot/syslinux
81 app-arch/p7zip"
82
83 src_configure() {
84 lupdate ${PN}.pro || die
85 lrelease ${PN}.pro || die
86 eqmake4 ${PN}.pro || die
87 }
88
89 src_install() {
90 dobin ${PN}
91
92 insinto /usr/share/applications
93 doins ${PN}.desktop
94
95 for file in ${PN}*.png; do
96 size="${file/${PN}_}"
97 size="${size/.png}x${size/.png}"
98 insinto /usr/share/icons/hicolor/${size}/apps
99 newins ${file} ${PN}.png
100 done
101
102 local lingua
103 for lingua in ${UNETBOOTIN_LINGUAS}; do
104 if use linguas_${lingua}; then
105 insinto /usr/share/${PN}
106 doins ${PN}_${lingua}.qm
107 fi
108 done
109 }