summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2012-01-28 17:48:24 +0000
committerJeroen Roovers <jer@gentoo.org>2012-01-28 17:48:24 +0000
commit3feb5c01cc79e938a7c84728ca9ca4723d6b9e0c (patch)
tree2225e7130496161322700a0def43c1dc0d74a53e /sys-boot
parentStable for HPPA (bug #400799). (diff)
downloadgentoo-2-3feb5c01cc79e938a7c84728ca9ca4723d6b9e0c.tar.gz
gentoo-2-3feb5c01cc79e938a7c84728ca9ca4723d6b9e0c.tar.bz2
gentoo-2-3feb5c01cc79e938a7c84728ca9ca4723d6b9e0c.zip
Old.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'sys-boot')
-rw-r--r--sys-boot/unetbootin/ChangeLog5
-rw-r--r--sys-boot/unetbootin/unetbootin-563.ebuild62
2 files changed, 4 insertions, 63 deletions
diff --git a/sys-boot/unetbootin/ChangeLog b/sys-boot/unetbootin/ChangeLog
index f9675c295e1c..895e23c9e066 100644
--- a/sys-boot/unetbootin/ChangeLog
+++ b/sys-boot/unetbootin/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-boot/unetbootin
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.73 2012/01/28 15:01:37 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.74 2012/01/28 17:48:24 jer Exp $
+
+ 28 Jan 2012; Jeroen Roovers <jer@gentoo.org> -unetbootin-563.ebuild:
+ Old.
28 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> unetbootin-565.ebuild:
x86 stable wrt bug #399017
diff --git a/sys-boot/unetbootin/unetbootin-563.ebuild b/sys-boot/unetbootin/unetbootin-563.ebuild
deleted file mode 100644
index 51412b710d39..000000000000
--- a/sys-boot/unetbootin/unetbootin-563.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# 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-563.ebuild,v 1.4 2011/12/07 07:54:23 phajdan.jr 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
-}