qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] live cvs ebuild for gentoo - maybe?
@ 2004-04-02  7:22 Rudi Lippert
  2004-04-02 11:12 ` [Qemu-devel] " Gabriel Ebner
  0 siblings, 1 reply; 10+ messages in thread
From: Rudi Lippert @ 2004-04-02  7:22 UTC (permalink / raw)
  To: qemu-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

does anyone have experience with live cvs ebuilds for gentoo linux?
maybe jocelyn could create such an ebuild for qemu. this would make building 
qemu as easy as installing any other package as it would include all the 
dependencies.
of course, this would only help gentoo users, but it seems that there are 
quite a few of us interested in qemu.

another €0.02 - that's four cents
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAbRS81nTg39QS/TsRAvMeAJ9jA7ZzzMZuBIXacflMB1fMr07KHQCfSqm8
fTN752g25g6LQecptV3PVg4=
=tu1J
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Qemu-devel] Re: live cvs ebuild for gentoo - maybe?
  2004-04-02  7:22 [Qemu-devel] live cvs ebuild for gentoo - maybe? Rudi Lippert
@ 2004-04-02 11:12 ` Gabriel Ebner
  2004-04-02 12:48   ` Rudi Lippert
                     ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Gabriel Ebner @ 2004-04-02 11:12 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 573 bytes --]

Hello,

Rudi Lippert wrote:
> does anyone have experience with live cvs ebuilds for gentoo linux?
> maybe jocelyn could create such an ebuild for qemu. this would make
> building qemu as easy as installing any other package as it would include
> all the dependencies.
> of course, this would only help gentoo users, but it seems that there are
> quite a few of us interested in qemu.

My qemu cvs ebuild is attached; but be warned that I'm new to writing
ebuilds and so don't blame me if somethings fails.

        Gabriel.

-- 
Gabriel Ebner - reverse "ta.renbeleirbag@eg"

[-- Attachment #2: qemu-cvs-1.1.ebuild - QEMU cvs ebuild (Gabriel Ebner) --]
[-- Type: text/plain, Size: 1527 bytes --]

# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2

S="${WORKDIR}/qemu"
DESCRIPTION="Multi-platform & multi-targets dynamic translator"
SRC_URI=""
HOMEPAGE="http://fabrice.bellard.free.fr/qemu/"

KEYWORDS="x86 ~ppc -alpha -sparc -arm"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
IUSE=""

RDEPEND="virtual/glibc media-libs/libsdl media-libs/alsa-lib"
DEPEND="${RDEPEND} dev-util/cvs"

RESTRICT="nostrip"

TARGET_LIST="arm-user i386-user i386-softmmu ppc-user sparc-user"

src_unpack() {
	# This is hackish, but it works.
	addwrite ${DISTDIR}/cvs-src
	mkdir -p ${DISTDIR}/cvs-src/
	cd ${DISTDIR}/cvs-src

	einfo "Checking out latest qemu from CVS..."
	if ! [ -n "`grep savannah.nongnu.org $HOME/.ssh/known_hosts`" ]; then
		ewarn "You probably want to add the savannah.nongnu.org ssh key" \
			"to your .ssh/known_hosts"
	fi

	cvs -z3 -d:ext:anoncvs@savannah.nongnu.org:/cvsroot/qemu co qemu \
		|| die "could not checkout source from cvs"
	cp -a qemu ${S}

	# Fix an ownership porblem
	chown -R root:root ${S}	
}

src_compile() {
	./configure --prefix=/usr \
				--target-list="${TARGET_LIST}" || die "could not configure"
	emake || die "make failed"
}

src_install() {
	make install prefix=${D}/usr sharedir=${D}/usr/share/qemu \
		mandir=${D}/usr/share/man
	dodoc TODO VERSION COPYING* README README.distrib *.html
}

pkg_postinstall() {
	einfo "You will need the Universal TUN/TAP driver compiled into"
	einfo "kernel or as a module to use the virtual network device."
}

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] Re: live cvs ebuild for gentoo - maybe?
  2004-04-02 11:12 ` [Qemu-devel] " Gabriel Ebner
@ 2004-04-02 12:48   ` Rudi Lippert
  2004-04-02 13:47   ` Jocelyn Mayer
  2004-04-02 14:25   ` Grzegorz Kulewski
  2 siblings, 0 replies; 10+ messages in thread
From: Rudi Lippert @ 2004-04-02 12:48 UTC (permalink / raw)
  To: ge, qemu-devel

[-- Attachment #1: Type: Text/Plain, Size: 935 bytes --]

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

i am heavily impressed! where all my attempts to build qemu from cvs failed, 
this ebuild installed like a charm. you really made my day. danke!

you might want to add "!app-emulation/qemu" to the RDEPEND, so that this 
cannot be installed on top of a standard qemu installation. most people won't 
run into that error, but i think it is just more complete with that line.
i attached a file including this DEPEND.

"[Qemu-devel] Re: live cvs ebuild for gentoo - maybe?" (Gabriel Ebner, Friday 
02 April 2004 13:12):
> Hello,
>
> My qemu cvs ebuild is attached; but be warned that I'm new to writing
> ebuilds and so don't blame me if somethings fails.
>
>         Gabriel.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAbWEm1nTg39QS/TsRAm8TAJoDnW8Zj7MZxPVu8z+mgBqsrrqSPACghxUG
QZPQ13I6t35wnvL4Azvb4NI=
=ar7w
-----END PGP SIGNATURE-----

[-- Attachment #2: qemu-cvs-1.1.ebuild --]
[-- Type: text/plain, Size: 1555 bytes --]

# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2

S="${WORKDIR}/qemu"
DESCRIPTION="Multi-platform & multi-targets dynamic translator"
SRC_URI=""
HOMEPAGE="http://fabrice.bellard.free.fr/qemu/"

KEYWORDS="x86 ~ppc -alpha -sparc -arm"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
IUSE=""

RDEPEND="	virtual/glibc
		media-libs/libsdl
		media-libs/alsa-lib
		!app-emulation/qemu"

DEPEND="${RDEPEND} dev-util/cvs"

RESTRICT="nostrip"

TARGET_LIST="arm-user i386-user i386-softmmu ppc-user sparc-user"

src_unpack() {
	# This is hackish, but it works.
	addwrite ${DISTDIR}/cvs-src
	mkdir -p ${DISTDIR}/cvs-src/
	cd ${DISTDIR}/cvs-src

	einfo "Checking out latest qemu from CVS..."
	if ! [ -n "`grep savannah.nongnu.org $HOME/.ssh/known_hosts`" ]; then
		ewarn "You probably want to add the savannah.nongnu.org ssh key" \
			"to your .ssh/known_hosts"
	fi

	cvs -z3 -d:ext:anoncvs@savannah.nongnu.org:/cvsroot/qemu co qemu \
		|| die "could not checkout source from cvs"
	cp -a qemu ${S}

	# Fix an ownership porblem
	chown -R root:root ${S}	
}

src_compile() {
	./configure --prefix=/usr \
				--target-list="${TARGET_LIST}" || die "could not configure"
	emake || die "make failed"
}

src_install() {
	make install prefix=${D}/usr sharedir=${D}/usr/share/qemu \
		mandir=${D}/usr/share/man
	dodoc TODO VERSION COPYING* README README.distrib *.html
}

pkg_postinstall() {
	einfo "You will need the Universal TUN/TAP driver compiled into"
	einfo "kernel or as a module to use the virtual network device."
}

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] Re: live cvs ebuild for gentoo - maybe?
  2004-04-02 11:12 ` [Qemu-devel] " Gabriel Ebner
  2004-04-02 12:48   ` Rudi Lippert
@ 2004-04-02 13:47   ` Jocelyn Mayer
  2004-04-02 14:25   ` Grzegorz Kulewski
  2 siblings, 0 replies; 10+ messages in thread
From: Jocelyn Mayer @ 2004-04-02 13:47 UTC (permalink / raw)
  To: ge, qemu mailing list

[-- Attachment #1: Type: text/plain, Size: 741 bytes --]

On Fri, 2004-04-02 at 13:12, Gabriel Ebner wrote:
> Hello,
> 
> Rudi Lippert wrote:
> > does anyone have experience with live cvs ebuilds for gentoo linux?
> > maybe jocelyn could create such an ebuild for qemu. this would make
> > building qemu as easy as installing any other package as it would include
> > all the dependencies.
> > of course, this would only help gentoo users, but it seems that there are
> > quite a few of us interested in qemu.
> 
> My qemu cvs ebuild is attached; but be warned that I'm new to writing
> ebuilds and so don't blame me if somethings fails.
> 

Here's another ebuild.
This one minimises the patch against qemu-0.5.2 ebuild
and seems to be usable.

-- 
Jocelyn Mayer <l_indien@magic.fr>
Never organized

[-- Attachment #2: qemu CVS ebuild --]
[-- Type: text/plain, Size: 1540 bytes --]

# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2

DESCRIPTION="Multi-platform & multi-targets dynamic translator"
SRC_URI=""
HOMEPAGE="http://fabrice.bellard.free.fr/qemu/"

KEYWORDS="x86 ppc -alpha -sparc -arm"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
IUSE=""

DEPEND="virtual/glibc
                dev-util/cvs
		media-libs/libsdl"
RDEPEND=""

RESTRICT="nostrip fetch"

TARGET_LIST="arm-user i386-user i386-softmmu ppc-user sparc-user"

src_unpack() {
	# This is hackish, but it works.
	addwrite ${DISTDIR}/cvs-src
	mkdir -p ${DISTDIR}/cvs-src/
	cd ${DISTDIR}/cvs-src

	einfo "Checking out latest qemu from CVS..."
	export CVS_RSH=ssh
	cvs -z3 -d:ext:anoncvs@savannah.nongnu.org:/cvsroot/qemu co qemu \
		|| die "could not checkout source from cvs"
	cp -a qemu ${S}

	# Fix an ownership porblem
	chown -R portage:portage ${S}	
}

src_compile () {
	./configure --prefix=/usr \
				--target-list="${TARGET_LIST}" || die "could not configure"
	make || die "make failed"
}

src_install() {
	dobin qemu-mkcow
	dodir /usr/share/qemu
	insinto /usr/share/qemu
	doins pc-bios/bios.bin pc-bios/vgabios.bin
	doman qemu.1

	dobin arm-user/qemu-arm
	dobin i386-user/qemu-i386
	dobin sparc-user/qemu-sparc
	dobin ppc-user/qemu-ppc
	dobin sparc-user/qemu-sparc

	dobin i386-softmmu/qemu

	dodoc README README.distrib *.html linux.sh
}

pkg_postinstall() {
	echo ">> You will need the Universal TUN/TAP driver compiled into"
	echo ">> kernel or as a module to use the virtual network device."
}

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] Re: live cvs ebuild for gentoo - maybe?
  2004-04-02 11:12 ` [Qemu-devel] " Gabriel Ebner
  2004-04-02 12:48   ` Rudi Lippert
  2004-04-02 13:47   ` Jocelyn Mayer
@ 2004-04-02 14:25   ` Grzegorz Kulewski
  2004-04-02 15:49     ` David Holm <dholm@gentoo.org>
  2 siblings, 1 reply; 10+ messages in thread
From: Grzegorz Kulewski @ 2004-04-02 14:25 UTC (permalink / raw)
  To: ge, qemu-devel

Hmm, as far as I know under /usr/portage/distfiles is cvs dir for 
sources for "packages" from cvs. So, why not use it?


regards

Grzegorz Kulewski

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] Re: live cvs ebuild for gentoo - maybe?
  2004-04-02 14:25   ` Grzegorz Kulewski
@ 2004-04-02 15:49     ` David Holm <dholm@gentoo.org>
  2004-04-02 20:07       ` [Qemu-devel] " Gabriel Ebner
  0 siblings, 1 reply; 10+ messages in thread
From: David Holm <dholm@gentoo.org> @ 2004-04-02 15:49 UTC (permalink / raw)
  To: qemu-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi,
This ebuild does not use CVS correctly. It should inherit the cvs eclass and 
use the builtin functions for checking out the CVS tree.
There are a couple of examples of how to use it in portage, just do an esearch 
for "-cvs".

//David Holm

On Friday 02 April 2004 16.25, Grzegorz Kulewski wrote:
> Hmm, as far as I know under /usr/portage/distfiles is cvs dir for
> sources for "packages" from cvs. So, why not use it?
>
>
> regards
>
> Grzegorz Kulewski
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://mail.nongnu.org/mailman/listinfo/qemu-devel
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAbYuixVDe1wIoqX0RAt7PAJwIAVvAHTWk5qWZ5i+wSXrS540JeQCgi3qL
zhXjxZsd6lg81cqfDtanTh4=
=nkZs
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Qemu-devel] Re: Re: live cvs ebuild for gentoo - maybe?
  2004-04-02 15:49     ` David Holm <dholm@gentoo.org>
@ 2004-04-02 20:07       ` Gabriel Ebner
  2004-04-02 21:23         ` Rudi Lippert
  2004-04-02 21:52         ` [Qemu-devel] " Gabriel Ebner
  0 siblings, 2 replies; 10+ messages in thread
From: Gabriel Ebner @ 2004-04-02 20:07 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 475 bytes --]

Hello,

David Holm wrote:
> This ebuild does not use CVS correctly. It should inherit the cvs eclass
> and use the builtin functions for checking out the CVS tree.
> There are a couple of examples of how to use it in portage, just do an
> esearch for "-cvs".
Well, I took that part from mozilla-firebird-cvs...

I've included a new ebuild supporting a sdl USE flag and using the cvs
eclass as you suggested.

        Gabriel.

-- 
Gabriel Ebner - reverse "ta.renbeleirbag@eg"

[-- Attachment #2: qemu-cvs-1.2.ebuild --]
[-- Type: text/plain, Size: 1366 bytes --]

# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2

ECVS_AUTH="ext"
export CVS_RSH="ssh"
ECVS_SERVER="savannah.gnu.org:/cvsroot/qemu"
ECVS_MODULE="qemu"
ECVS_USER="anoncvs"
ECVS_PASS=""
ECVS_CVS_OPTIONS="-dP"
ECVS_SSH_HOST_KEY="savannah.gnu.org,199.232.41.3 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAzFQovi+67xa+wymRz9u3plx0ntQnELBoNU4SCl3RkwSFZkrZsRTC0fTpOKatQNs1r/BLFoVt21oVFwIXVevGQwB+Lf0Z+5w9qwVAQNu/YUAFHBPTqBze4wYK/gSWqQOLoj7rOhZk0xtAS6USqcfKdzMdRWgeuZ550P6gSzEHfv0="

inherit cvs

S="${WORKDIR}/${ECVS_MODULE}"
DESCRIPTION="Multi-platform & multi-targets dynamic translator"
SRC_URI=""
HOMEPAGE="http://fabrice.bellard.free.fr/qemu/"

KEYWORDS="x86 ppc -alpha -sparc -arm"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
IUSE="sdl"

DEPEND="virtual/glibc
		sdl? ( media-libs/libsdl )"
RDEPEND="!app-emulation/qemu"

RESTRICT="$RESTRICT nostrip"

TARGET_LIST="arm-user i386-user i386-softmmu ppc-user sparc-user"

src_compile() {
	econf --target-list="${TARGET_LIST}" `use_enable sdl` \
		|| die "configure failed"
	emake || die "make failed"
}

src_install() {
	einstall sharedir=${D}/usr/share/qemu
	dodoc TODO VERSION COPYING* README README.distrib *.html
}

pkg_postinstall() {
	einfo "You will need the Universal TUN/TAP driver compiled into"
	einfo "kernel or as a module to use the virtual network device."
}

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] Re: Re: live cvs ebuild for gentoo - maybe?
  2004-04-02 20:07       ` [Qemu-devel] " Gabriel Ebner
@ 2004-04-02 21:23         ` Rudi Lippert
  2004-04-02 21:55           ` [Qemu-devel] " Gabriel Ebner
  2004-04-02 21:52         ` [Qemu-devel] " Gabriel Ebner
  1 sibling, 1 reply; 10+ messages in thread
From: Rudi Lippert @ 2004-04-02 21:23 UTC (permalink / raw)
  To: ge, qemu-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

problem with that one. seems to exit the sandbox...
- ---BEGIN OUTPUT---
make[1]: Leaving directory 
`/var/tmp/portage/qemu-cvs-1.2/work/qemu/sparc-user'
mkdir -p "/usr/bin"
install -m 755 -s qemu-mkcow "/usr/bin"
ACCESS DENIED  unlink:    /usr/bin/qemu-mkcow
install: cannot remove `/usr/bin/qemu-mkcow': Permission denied
make: *** [install] Error 1

!!! ERROR: app-emulation/qemu-cvs-1.2 failed.
!!! Function einstall, Line 388, Exitcode 2
!!! einstall failed

- --------------------------- ACCESS VIOLATION SUMMARY 
- ---------------------------
LOG FILE = "/tmp/sandbox-app-emulation_-_qemu-cvs-1.2-11919.log"

unlink:    /usr/bin/qemu-mkcow
- --------------------------------------------------------------------------------
- ---END OUTPUT---
the logfile doesn't say anything of interest.

i'm sorry, but i don't feel like testing this today. i'll go to sleep now.
good night out there!

Am Freitag, 2. April 2004 22:07 schrieb Gabriel Ebner:
> Hello,
>
> David Holm wrote:
> > This ebuild does not use CVS correctly. It should inherit the cvs eclass
> > and use the builtin functions for checking out the CVS tree.
> > There are a couple of examples of how to use it in portage, just do an
> > esearch for "-cvs".
>
> Well, I took that part from mozilla-firebird-cvs...
>
> I've included a new ebuild supporting a sdl USE flag and using the cvs
> eclass as you suggested.
>
>         Gabriel.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAbdnR1nTg39QS/TsRApiEAKCD0ggXNX4/OI/Hp6dPotSXyzow9wCeOeEm
yqOWkiSj0KqiiiJ6hewKA90=
=+yd/
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Qemu-devel] Re: Re: live cvs ebuild for gentoo - maybe?
  2004-04-02 20:07       ` [Qemu-devel] " Gabriel Ebner
  2004-04-02 21:23         ` Rudi Lippert
@ 2004-04-02 21:52         ` Gabriel Ebner
  1 sibling, 0 replies; 10+ messages in thread
From: Gabriel Ebner @ 2004-04-02 21:52 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 371 bytes --]

Hello,

qemu-cvs-1.3:
  *  Fixes missing DEPEND for texi2html / tetex
  *  Fixes missing RDEPEND for libsdl and glibc
  *  Fixes installation sandbox violations (my ebuild's flaws) suddenly
     introduced in qemu cvs.  (There is now a bindir variable in
     config-host.mak which I had to circumvent.)

        Gabriel.

-- 
Gabriel Ebner - reverse "ta.renbeleirbag@eg"

[-- Attachment #2: QEMU cvs ebuild v1.3 (Gabriel Ebner) --]
[-- Type: text/plain, Size: 1529 bytes --]

# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2

ECVS_AUTH="ext"
export CVS_RSH="ssh"
ECVS_SERVER="savannah.gnu.org:/cvsroot/qemu"
ECVS_MODULE="qemu"
ECVS_USER="anoncvs"
ECVS_PASS=""
ECVS_CVS_OPTIONS="-dP"
ECVS_SSH_HOST_KEY="savannah.gnu.org,199.232.41.3 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAzFQovi+67xa+wymRz9u3plx0ntQnELBoNU4SCl3RkwSFZkrZsRTC0fTpOKatQNs1r/BLFoVt21oVFwIXVevGQwB+Lf0Z+5w9qwVAQNu/YUAFHBPTqBze4wYK/gSWqQOLoj7rOhZk0xtAS6USqcfKdzMdRWgeuZ550P6gSzEHfv0="

inherit cvs

S="${WORKDIR}/${ECVS_MODULE}"
DESCRIPTION="Multi-platform & multi-targets dynamic translator"
SRC_URI=""
HOMEPAGE="http://fabrice.bellard.free.fr/qemu/"

KEYWORDS="x86 ppc -alpha -sparc -arm"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
IUSE="sdl"

DEPEND="virtual/glibc
		sdl? ( media-libs/libsdl )
		|| ( app-text/tetex app-text/texi2html )"
RDEPEND="virtual/glibc
        sdl? ( media-libs/libsdl )
		!app-emulation/qemu"

RESTRICT="$RESTRICT nostrip"

TARGET_LIST="arm-user i386-user i386-softmmu ppc-user sparc-user"

src_compile() {
	econf --target-list="${TARGET_LIST}" `use_enable sdl` \
		|| die "configure failed"
	emake || die "make failed"
}

src_install() {
	echo sharedir=${D}/usr/share/qemu >>config-host.mak
	echo bindir=${D}/usr/bin >>config-host.mak

	einstall
	dodoc TODO VERSION COPYING* README README.distrib *.html
}

pkg_postinstall() {
	einfo "You will need the Universal TUN/TAP driver compiled into"
	einfo "kernel or as a module to use the virtual network device."
}

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Qemu-devel] Re: Re: Re: live cvs ebuild for gentoo - maybe?
  2004-04-02 21:23         ` Rudi Lippert
@ 2004-04-02 21:55           ` Gabriel Ebner
  0 siblings, 0 replies; 10+ messages in thread
From: Gabriel Ebner @ 2004-04-02 21:55 UTC (permalink / raw)
  To: qemu-devel

Hello,

Rudi Lippert wrote:
> problem with that one. seems to exit the sandbox...
> - ---BEGIN OUTPUT---
> make[1]: Leaving directory
> `/var/tmp/portage/qemu-cvs-1.2/work/qemu/sparc-user'
> mkdir -p "/usr/bin"
> install -m 755 -s qemu-mkcow "/usr/bin"
> ACCESS DENIED  unlink:    /usr/bin/qemu-mkcow
> install: cannot remove `/usr/bin/qemu-mkcow': Permission denied
> make: *** [install] Error 1
> 
> !!! ERROR: app-emulation/qemu-cvs-1.2 failed.
> !!! Function einstall, Line 388, Exitcode 2
> !!! einstall failed
> 
> - --------------------------- ACCESS VIOLATION SUMMARY
> - ---------------------------
> LOG FILE = "/tmp/sandbox-app-emulation_-_qemu-cvs-1.2-11919.log"
> 
> unlink:    /usr/bin/qemu-mkcow
> -
>
--------------------------------------------------------------------------------
> - ---END OUTPUT--- the logfile doesn't say anything of interest.
> 
> i'm sorry, but i don't feel like testing this today. i'll go to sleep now.
> good night out there!

Oops, that's corrected with qemu-cvs-1.3 which I had just posted before I
read this because I got that too.  Seems to be a recent cvs commit.

        Gabriel.

-- 
Gabriel Ebner - reverse "ta.renbeleirbag@eg"

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2004-04-02 22:11 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-02  7:22 [Qemu-devel] live cvs ebuild for gentoo - maybe? Rudi Lippert
2004-04-02 11:12 ` [Qemu-devel] " Gabriel Ebner
2004-04-02 12:48   ` Rudi Lippert
2004-04-02 13:47   ` Jocelyn Mayer
2004-04-02 14:25   ` Grzegorz Kulewski
2004-04-02 15:49     ` David Holm <dholm@gentoo.org>
2004-04-02 20:07       ` [Qemu-devel] " Gabriel Ebner
2004-04-02 21:23         ` Rudi Lippert
2004-04-02 21:55           ` [Qemu-devel] " Gabriel Ebner
2004-04-02 21:52         ` [Qemu-devel] " Gabriel Ebner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).