summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2009-01-08 18:12:03 +0000
committerJeroen Roovers <jer@gentoo.org>2009-01-08 18:12:03 +0000
commite19618a9509ce9a5dd24e8ebc96380f711fccd0d (patch)
treed855af0c90bcd68c32fb208441224f0109397a14 /sys-boot
parentFix test failure reported Markus Meier <maekke@gentoo.org> in bug #253054. (diff)
downloadgentoo-2-e19618a9509ce9a5dd24e8ebc96380f711fccd0d.tar.gz
gentoo-2-e19618a9509ce9a5dd24e8ebc96380f711fccd0d.tar.bz2
gentoo-2-e19618a9509ce9a5dd24e8ebc96380f711fccd0d.zip
Initial commit (bug #245749).
(Portage version: 2.2_rc20/cvs/Linux 2.6.25-gentoo-r7-JeR i686)
Diffstat (limited to 'sys-boot')
-rw-r--r--sys-boot/unetbootin/ChangeLog10
-rw-r--r--sys-boot/unetbootin/metadata.xml9
-rw-r--r--sys-boot/unetbootin/unetbootin-304.ebuild30
3 files changed, 49 insertions, 0 deletions
diff --git a/sys-boot/unetbootin/ChangeLog b/sys-boot/unetbootin/ChangeLog
new file mode 100644
index 000000000000..5078d398ea92
--- /dev/null
+++ b/sys-boot/unetbootin/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sys-boot/unetbootin
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.1 2009/01/08 18:12:03 jer Exp $
+
+*unetbootin-304 (08 Jan 2009)
+
+ 08 Jan 2009; Jeroen Roovers <jer@gentoo.org> +metadata.xml,
+ +unetbootin-304.ebuild:
+ Initial commit (bug #245749).
+
diff --git a/sys-boot/unetbootin/metadata.xml b/sys-boot/unetbootin/metadata.xml
new file mode 100644
index 000000000000..9134efa10c60
--- /dev/null
+++ b/sys-boot/unetbootin/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>jer@gentoo.org</email>
+ <name>Jeroen Roovers</name>
+</maintainer>
+</pkgmetadata>
diff --git a/sys-boot/unetbootin/unetbootin-304.ebuild b/sys-boot/unetbootin/unetbootin-304.ebuild
new file mode 100644
index 000000000000..df0f2e1f0b0d
--- /dev/null
+++ b/sys-boot/unetbootin/unetbootin-304.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-304.ebuild,v 1.1 2009/01/08 18:12:03 jer Exp $
+
+DESCRIPTION="Universal Netboot Installer creates Live USB systems for various OS
+distributions."
+HOMEPAGE="http://unetbootin.sourceforge.net/"
+SRC_URI="mirror://sourceforge/unetbootin/${PN}-source-${PV}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+IUSE=""
+
+S="${WORKDIR}"
+
+DEPEND="x11-libs/qt-gui"
+RDEPEND="${DEPEND}
+ sys-fs/mtools
+ sys-boot/syslinux
+ app-arch/p7zip"
+
+src_compile() {
+ ./INSTALL || die "compile failed!"
+}
+
+src_install() {
+ dodoc README.TXT
+ dobin unetbootin || die "dobin failed"
+}