diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2008-08-11 15:14:47 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2008-08-11 15:14:47 +0000 |
commit | 6563133995bc81494ad32de08063708094d2eec4 (patch) | |
tree | 29ed810720c3ed3d667bb06f16fca6f7837c46f5 /app-emulation/virtinst | |
parent | masking app-emulation/emul-linux-x86-gtklibs-20080810 (diff) | |
download | gentoo-2-6563133995bc81494ad32de08063708094d2eec4.tar.gz gentoo-2-6563133995bc81494ad32de08063708094d2eec4.tar.bz2 gentoo-2-6563133995bc81494ad32de08063708094d2eec4.zip |
Added a patchset (patches mostly from Ubuntu) which adds virtio_net/blk support.
(Portage version: 2.2_rc6/cvs/Linux 2.6.26-gentoo x86_64)
Diffstat (limited to 'app-emulation/virtinst')
-rw-r--r-- | app-emulation/virtinst/ChangeLog | 9 | ||||
-rw-r--r-- | app-emulation/virtinst/virtinst-0.300.3-r1.ebuild | 36 |
2 files changed, 44 insertions, 1 deletions
diff --git a/app-emulation/virtinst/ChangeLog b/app-emulation/virtinst/ChangeLog index 88dc5e2646e7..5acc58691316 100644 --- a/app-emulation/virtinst/ChangeLog +++ b/app-emulation/virtinst/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-emulation/virtinst # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtinst/ChangeLog,v 1.5 2008/05/15 10:24:52 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtinst/ChangeLog,v 1.6 2008/08/11 15:14:47 dev-zero Exp $ + +*virtinst-0.300.3-r1 (11 Aug 2008) + + 11 Aug 2008; Tiziano Müller <dev-zero@gentoo.org> + +virtinst-0.300.3-r1.ebuild: + Added a patchset (patches mostly from Ubuntu) which adds virtio_net/blk + support. *virtinst-0.300.3 (15 May 2008) diff --git a/app-emulation/virtinst/virtinst-0.300.3-r1.ebuild b/app-emulation/virtinst/virtinst-0.300.3-r1.ebuild new file mode 100644 index 000000000000..e01ffc3ddb80 --- /dev/null +++ b/app-emulation/virtinst/virtinst-0.300.3-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtinst/virtinst-0.300.3-r1.ebuild,v 1.1 2008/08/11 15:14:47 dev-zero Exp $ + +inherit distutils eutils rpm + +DESCRIPTION="Python modules for starting virtualized guest installations" +HOMEPAGE="http://virt-manager.et.redhat.com/" +SRC_URI="http://virt-manager.et.redhat.com/download/sources/${PN}/${P}.tar.gz + mirror://gentoo/${PN}-patches-${PV}-1.tbz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RDEPEND=">=app-emulation/libvirt-0.2.1 + dev-python/urlgrabber" +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + + EPATCH_SOURCE="${WORKDIR}/patches" + EPATCH_SUFFIX="patch" + epatch +} + +pkg_postinst() { + distutils_pkg_postinst + + elog "Please select the following os-type/-variant if you want virtio_net and/or virtio_blk support:" + elog "| os | variant | virtio_net | virtio_blk |" + elog "| linux | gentoostable | yes | no |" + elog "| linux | gentoounstable | yes | no |" + elog "| linux | ubuntuHardy | yes | no |" +} |