blob: cafbd2f2999be0972726fe90da762f798ee965d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-549.ebuild,v 1.1 2011/04/04 16:37:47 jer Exp $
EAPI="3"
inherit qt4-r2
DESCRIPTION="Universal Netboot Installer creates Live USB systems for various OS
distributions."
HOMEPAGE="http://unetbootin.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE=""
S="${WORKDIR}"
DEPEND="x11-libs/qt-gui"
RDEPEND="${DEPEND}
sys-fs/mtools
sys-boot/syslinux
app-arch/p7zip"
src_configure() {
lupdate ${PN}.pro || die
lrelease ${PN}.pro || die
eqmake4 ${PN}.pro || die
}
src_install() {
dobin ${PN} || die
insinto /usr/share/applications
doins ${PN}.desktop || die
for file in ${PN}*.png; do
size="${file/unetbootin_}"
size="${size/.png}x${size/.png}"
insinto /usr/share/icons/hicolor/${size}
newins ${file} ${PN}.png
done
}
|