summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-util/unetbootin/ChangeLog8
-rw-r--r--dev-util/unetbootin/Manifest4
-rw-r--r--dev-util/unetbootin/metadata.xml5
-rw-r--r--dev-util/unetbootin/unetbootin-301.ebuild34
4 files changed, 51 insertions, 0 deletions
diff --git a/dev-util/unetbootin/ChangeLog b/dev-util/unetbootin/ChangeLog
new file mode 100644
index 000000000..03b08d256
--- /dev/null
+++ b/dev-util/unetbootin/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for dev-util/unetbootin
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+ 01 Dec 2008; Markos Chandras (hwoarang) <gentoo@silverarrow.gr>
+ +unetbootin-301.ebuild, +metadata.xml:
+ New ebuild for bug #245749,thanks to tanderson
+
diff --git a/dev-util/unetbootin/Manifest b/dev-util/unetbootin/Manifest
new file mode 100644
index 000000000..5e98de78b
--- /dev/null
+++ b/dev-util/unetbootin/Manifest
@@ -0,0 +1,4 @@
+DIST unetbootin-source-301.tar.gz 130701 RMD160 5a4d218f3f046d095710ec2c3ebdf2dc55f6cb31 SHA1 de2998bf196a0b05e00c461a678f643ec9f5d49e SHA256 941ce5ea8407812f44f4154cd2cd1d5fc97d11b9267f3fa544fcb8f96a413c1e
+EBUILD unetbootin-301.ebuild 841 RMD160 815104a5fd18cdf0cd14ff348076d6c58691e0da SHA1 73eb2441ba57fc512b63b854cc97741588a49c41 SHA256 8710bfd127c90352bc888264f1bcb766ee7712f3b6e0ae4917a31ce0e81871a3
+MISC ChangeLog 277 RMD160 39ce3221cfb4263ecf1d17f3cfacd1d9101b5738 SHA1 b3310ee8c5d153c068b3f0a4d3d50100bce52a4e SHA256 2ac2f038010a286303fd5d48c095adcc8ea75d5eae2669ee16272c9a93944263
+MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/dev-util/unetbootin/metadata.xml b/dev-util/unetbootin/metadata.xml
new file mode 100644
index 000000000..7e3286984
--- /dev/null
+++ b/dev-util/unetbootin/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>maintainer-wanted</herd>
+</pkgmetadata>
diff --git a/dev-util/unetbootin/unetbootin-301.ebuild b/dev-util/unetbootin/unetbootin-301.ebuild
new file mode 100644
index 000000000..3b45ba07c
--- /dev/null
+++ b/dev-util/unetbootin/unetbootin-301.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+DESCRIPTION="Universal Netboot Installer is a cross-platform utility that can create Live USB systems"
+HOMEPAGE="http://unetbootin.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="|| ( ( x11-libs/qt-gui x11-libs/qt-core ) >=x11-libs/qt-4.2.0 )
+ sys-fs/mtools"
+
+DEPEND="${RDEPEND}"
+
+src_unpack(){
+ unpack ${A}
+ cp unetbootin.pro unetbootin-pro.bak
+ sed -i '/^RESOURCES/d' unetbootin.pro
+}
+
+src_compile(){
+ lupdate unetbootin.pro
+ lrelease unetbootin.pro
+ qmake "DEFINES += NOSTATIC" "RESOURCES -= unetbootin.qrc"||die "qmake failed"
+ emake || die "emake failed"
+}
+
+src_install(){
+ dobin unetbootin || die "dobin failed"
+}