diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-02-09 15:30:06 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-02-09 15:30:06 +0000 |
commit | 616021392bc5fc548bfb382d6a132c6f38bbeb60 (patch) | |
tree | e0934f5f32a378df6b543887d2c59a373f6722db /sys-boot/unetbootin | |
parent | Stable for HPPA (bug #455864). (diff) | |
download | gentoo-2-616021392bc5fc548bfb382d6a132c6f38bbeb60.tar.gz gentoo-2-616021392bc5fc548bfb382d6a132c6f38bbeb60.tar.bz2 gentoo-2-616021392bc5fc548bfb382d6a132c6f38bbeb60.zip |
Old.
(Portage version: 2.1.11.50/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sys-boot/unetbootin')
-rw-r--r-- | sys-boot/unetbootin/ChangeLog | 5 | ||||
-rw-r--r-- | sys-boot/unetbootin/unetbootin-581.ebuild | 87 |
2 files changed, 4 insertions, 88 deletions
diff --git a/sys-boot/unetbootin/ChangeLog b/sys-boot/unetbootin/ChangeLog index e955a8956cc7..ed43e15ae8d4 100644 --- a/sys-boot/unetbootin/ChangeLog +++ b/sys-boot/unetbootin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-boot/unetbootin # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.95 2013/02/02 17:17:58 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.96 2013/02/09 15:30:06 jer Exp $ + + 09 Feb 2013; Jeroen Roovers <jer@gentoo.org> -unetbootin-581.ebuild: + Old. 02 Feb 2013; Jeff Horelick <jdhore@gentoo.org> unetbootin-583.ebuild: x86 stable wrt bug #454766 diff --git a/sys-boot/unetbootin/unetbootin-581.ebuild b/sys-boot/unetbootin/unetbootin-581.ebuild deleted file mode 100644 index 8e008a883891..000000000000 --- a/sys-boot/unetbootin/unetbootin-581.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# 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-581.ebuild,v 1.5 2012/10/17 03:54:08 phajdan.jr Exp $ - -EAPI="4" - -inherit eutils 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="" - -UNBI_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 ${UNBI_LINGUAS}; do - IUSE="${IUSE} linguas_${lingua}" -done - -S="${WORKDIR}" - -DEPEND="x11-libs/qt-gui:4" -RDEPEND="${DEPEND} - sys-fs/mtools - sys-boot/syslinux - app-arch/p7zip" - -src_prepare() { - epatch "${FILESDIR}/${P}-desktop.patch" - - # QA check in case linguas are added or removed - enum() { - echo ${#} - } - [[ $(enum ${UNBI_LINGUAS}) -eq $(( $(enum $(echo ${PN}_*.ts) ) -1 )) ]] \ - || die "Numbers of recorded and actual linguas do not match" - unset enum - - # Put all localisation file names on a single line - sed -i ${PN}.pro \ - -e ':a;/unetbootin_[[:graph:]]*\.ts \\/{N;s|\\\n| |;s| ||g;ba}' \ - || die - - # Remove localisations - local lingua - for lingua in ${UNBI_LINGUAS}; do - if ! use linguas_${lingua}; then - sed -i ${PN}.pro -e "s| ${PN}_${lingua}.ts||g" || die - rm ${PN}_${lingua}.ts || die - fi - done -} - -src_configure() { - lupdate ${PN}.pro || die - lrelease ${PN}.pro || die - eqmake4 ${PN}.pro || die -} - -src_install() { - dobin ${PN} - - domenu ${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 ${UNBI_LINGUAS}; do - if use linguas_${lingua}; then - insinto /usr/share/${PN} - doins ${PN}_${lingua}.qm - fi - done -} |