You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-boot/unetbootin/unetbootin-575.ebuild

63 lines
1.4 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-575.ebuild,v 1.3 2012/05/28 14:16:34 johu Exp $
EAPI="4"
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=""
UNETBOOTIN_LINGUAS="
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
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
"
for lingua in ${UNETBOOTIN_LINGUAS}; do
IUSE="${IUSE} linguas_${lingua}"
done
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}
insinto /usr/share/applications
doins ${PN}.desktop
for file in ${PN}*.png; do
size="${file/${PN}_}"
size="${size/.png}x${size/.png}"
insinto /usr/share/icons/hicolor/${size}/apps
newins ${file} ${PN}.png
done
local lingua
for lingua in ${UNETBOOTIN_LINGUAS}; do
if use linguas_${lingua}; then
insinto /usr/share/${PN}
doins ${PN}_${lingua}.qm
fi
done
}