public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] DEPEND/*DEPEND problem
@ 2005-07-28  5:45 simply change
  2005-07-28  8:21 ` Neil Bothwick
  0 siblings, 1 reply; 4+ messages in thread
From: simply change @ 2005-07-28  5:45 UTC (permalink / raw
  To: gentoo-user

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

AybOwan!

friends,
i usually update my portage to upto date & try to download all new files to 
my box for later emerging(emerge -e world). de following error message came. 
so please help me...

==============================================
pushpaka-ng special-downloads # emerge -fe world
Calculating world dependencies
emerge: there are no ebuilds to satisfy ">=media-libs/jpeg-mmx-1.1.2-r1".


!!! Problem with ebuild media-video/kino-0.7.6
!!! Possibly a DEPEND/*DEPEND problem.

!!! Depgraph creation failed.
===============================================

-- 
...
"The future lies ahead."
_______________________
< Have you mooed today? >
-----------------------
\ ^__^
\ (oo) \_______
(__) \ )\/\
||------w |
|| ||

Gentoo Linux 2.6.12-gentoo-r4-Adapt-v1.1#

[-- Attachment #2: Type: text/html, Size: 1527 bytes --]

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

* Re: [gentoo-user] DEPEND/*DEPEND problem
  2005-07-28  5:45 [gentoo-user] DEPEND/*DEPEND problem simply change
@ 2005-07-28  8:21 ` Neil Bothwick
  2005-07-28 11:02   ` Vladislav Chugunov
  0 siblings, 1 reply; 4+ messages in thread
From: Neil Bothwick @ 2005-07-28  8:21 UTC (permalink / raw
  To: gentoo-user

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

On Thu, 28 Jul 2005 11:45:02 +0600, simply change wrote:

> i usually update my portage to upto date & try to download all new
> files to my box for later emerging(emerge -e world). de following error
> message came. so please help me...

Why do you need to use -e?

> ==============================================
> pushpaka-ng special-downloads # emerge -fe world
> Calculating world dependencies
> emerge: there are no ebuilds to satisfy
> ">=media-libs/jpeg-mmx-1.1.2-r1".

Try waiting an hour and syncing again. It could be that the ebuild
requiring this reached the mirrors slightly before its dependency.
Alternatively, if you are running stable, you may need to unmask this
package.


-- 
Neil Bothwick

There was a young man from the border
Who had an attention disorder.
When he reached the last line
He would run out of time
And

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: [gentoo-user] DEPEND/*DEPEND problem
  2005-07-28  8:21 ` Neil Bothwick
@ 2005-07-28 11:02   ` Vladislav Chugunov
  2005-07-28 11:22     ` simply change
  0 siblings, 1 reply; 4+ messages in thread
From: Vladislav Chugunov @ 2005-07-28 11:02 UTC (permalink / raw
  To: gentoo-user

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

> > On Thu, 28 Jul 2005 11:45:02 +0600, simply change wrote:
> > i usually update my portage to upto date & try to download all new
> > files to my box for later emerging(emerge -e world). de following error
> > message came. so please help me...
just find jpeg-mmx-1.1.2-r1.ebuild on google and copy to 
the /usr/portage/media-libs/jpeg-mmx/

-- 
The chat program is in public domain.  This is not the GNU public license.
If it breaks then you get to keep both pieces.
	-- Copyright notice for the chat program

[-- Attachment #2: jpeg-mmx-1.1.2-r1.ebuild --]
[-- Type: text/plain, Size: 1622 bytes --]

# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg-mmx/jpeg-mmx-1.1.2-r1.ebuild,v 1.17 2004/07/01 08:35:07 eradicator Exp $

inherit libtool flag-o-matic eutils

DESCRIPTION="JPEG library with mmx enhancements"
HOMEPAGE="http://mjpeg.sourceforge.net/"
SRC_URI="mirror://sourceforge/mjpeg/${P}.tar.gz"

LICENSE="as-is"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""

DEPEND="virtual/libc"

S=${WORKDIR}/jpeg-mmx

src_unpack() {
	unpack ${P}.tar.gz
	cd ${S}
	epatch ${FILESDIR}/${PV}-gcc34.patch
}

src_compile() {
	# Doesn't work with -fomit-frame-pointer, at least not on k6-2.
	# Someone mentioned that this may be a k6 issue only; I have
	# just a k6-2 to test it on, so I'll just adjust it for the
	# machine I can test.
	is-flag "-march=k6-3" && strip-flags "-fomit-frame-pointer"
	is-flag "-march=k6-2" && strip-flags "-fomit-frame-pointer"
	is-flag "-march=k6" && strip-flags "-fomit-frame-pointer"

	elibtoolize
	econf --enable-shared || die "configure failed"
	emake || die "make failed"
}

src_install() {
	dodir /usr/{include/jpeg-mmx,lib}
	make \
		includedir=${D}/usr/include/jpeg-mmx \
		prefix=${D}/usr \
		install || die "install failed"

	mv ${D}/usr/lib/libjpeg.la ${D}/usr/lib/libjpeg-mmx.la
	mv ${D}/usr/lib/libjpeg.so.62.0.0 ${D}/usr/lib/libjpeg-mmx.so.62.0.0
	rm ${D}/usr/lib/libjpeg.so
	ln -s /usr/lib/libjpeg-mmx.so.62.0.0 ${D}/usr/lib/libjpeg-mmx.so
	rm ${D}/usr/lib/libjpeg.so.62
	ln -s /usr/lib/libjpeg-mmx.so.62.0.0 ${D}/usr/lib/libjpeg-mmx.so.62
	dodoc README change.log structure.doc libjpeg.doc
}

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

* Re: [gentoo-user] DEPEND/*DEPEND problem
  2005-07-28 11:02   ` Vladislav Chugunov
@ 2005-07-28 11:22     ` simply change
  0 siblings, 0 replies; 4+ messages in thread
From: simply change @ 2005-07-28 11:22 UTC (permalink / raw
  To: gentoo-user

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

AybOwan!

thanks a lot,.,.,

i simply extract the latest snapshot manually into /usr/portage. after it de 
problem get solved.

again thanks for all friends.

On 7/28/05, Vladislav Chugunov <chugunv@gmail.com> wrote:
> 
> > > On Thu, 28 Jul 2005 11:45:02 +0600, simply change wrote:
> > > i usually update my portage to upto date & try to download all new
> > > files to my box for later emerging(emerge -e world). de following 
> error
> > > message came. so please help me...
> just find jpeg-mmx-1.1.2-r1.ebuild on google and copy to
> the /usr/portage/media-libs/jpeg-mmx/
> 
> --
> The chat program is in public domain. This is not the GNU public license.
> If it breaks then you get to keep both pieces.
> -- Copyright notice for the chat program
> 
> 
> 


-- 
...
"The future lies ahead."
_______________________
< Have you mooed today? >
-----------------------
\ ^__^
\ (oo) \_______
(__) \ )\/\
||------w |
|| ||

Gentoo Linux 2.6.12-gentoo-r4-Adapt-v1.1#

[-- Attachment #2: Type: text/html, Size: 2032 bytes --]

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

end of thread, other threads:[~2005-07-28 11:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-28  5:45 [gentoo-user] DEPEND/*DEPEND problem simply change
2005-07-28  8:21 ` Neil Bothwick
2005-07-28 11:02   ` Vladislav Chugunov
2005-07-28 11:22     ` simply change

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox