Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Unsupported Software
  • Search

[portage overlay] pro audio production applications

This forum covers all Gentoo-related software not officially supported by Gentoo. Ebuilds/software posted here might harm the health and stability of your system(s), and are not supported by Gentoo developers. Bugs/errors caused by ebuilds from overlays.gentoo.org are covered by this forum, too.
Locked
Advanced search
808 posts
  • Page 19 of 33
    • Jump to page:
  • Previous
  • 1
  • …
  • 17
  • 18
  • 19
  • 20
  • 21
  • …
  • 33
  • Next
Author
Message
Andron-kun
n00b
n00b
Posts: 5
Joined: Tue Jan 09, 2007 4:31 pm

Post by Andron-kun » Tue Jan 09, 2007 6:14 pm

Yey, gimpel!
I'm tried to get Bardix livecd, but in spite of the fact that download speed from that server is about 8Kb/s I'm still want try it. ^^
Is any mirror exist?
Top
gimpel
Advocate
Advocate
User avatar
Posts: 2720
Joined: Fri Oct 15, 2004 10:08 am
Location: Munich, Bavaria
Contact:
Contact gimpel
Website

Post by gimpel » Tue Jan 09, 2007 7:33 pm

Andron-kun wrote:Yey, gimpel!
I'm tried to get Bardix livecd, but in spite of the fact that download speed from that server is about 8Kb/s I'm still want try it. ^^
Is any mirror exist?
Yeah Andron! :)

There are no mirrors mentioned there, sorry. I didn't even manage to download it myself...
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Top
Andron-kun
n00b
n00b
Posts: 5
Joined: Tue Jan 09, 2007 4:31 pm

Error during compilation media-libs/fst-1.8-r3

Post by Andron-kun » Tue Jan 09, 2007 10:42 pm

When I'm tried build media-libs/fst-1.8-r3 I'm gets next errors:

Code: Select all

>>> Emerging (1 of 1) media-libs/fst-1.8-r3 to /
 * fst-1.8.tar.gz MD5 ;-) ...                                                                        [ ok ]
 * fst-1.8.tar.gz RMD160 ;-) ...                                                                   [ ok ]
<snip>
winegcc -c -march=athlon64 -mtune=athlon64 -O2 -pipe `pkg-config --cflags gtk+-2.0` `pkg-config --cflags jack` `pkg-config --cflags jack` `pkg-config --cflags lash-1.0` -DHAVE_LASH -I.   -o jfst.o jfst.c
winegcc -c -march=athlon64 -mtune=athlon64 -O2 -pipe `pkg-config --cflags gtk+-2.0` `pkg-config --cflags jack` `pkg-config --cflags jack` `pkg-config --cflags lash-1.0` -DHAVE_LASH -I.   -o vsti.o vsti.c
winegcc -c -march=athlon64 -mtune=athlon64 -O2 -pipe `pkg-config --cflags gtk+-2.0` `pkg-config --cflags jack` `pkg-config --cflags jack` `pkg-config --cflags lash-1.0` -DHAVE_LASH -I.   -o vstwin.o vstwin.c
vsti.c: In function equeue_midif:
vsti.c:79: warning: assignment from incompatible pointer type
vstwin.c: In function efst_loadf:
vstwin.c:480: warning: assignment from incompatible pointer type
winegcc -mwindows -o fst.exe audiomaster.o fst.o fstinfofile.o gtk.o jfst.o vsti.o vstwin.o     `pkg-config --libs gtk+-2.0` `pkg-config --libs jack` `pkg-config --libs alsa` `pkg-config --libs lash-1.0`  -L/usr/X11R6/lib -lX11   -luuid
jfst.o: In function `main':
jfst.c:(.text+0x3c8): undefined reference to `pthread_create'
vsti.o: In function `stop_midireceiver':
vsti.c:(.text+0x40c): undefined reference to `pthread_join'
collect2: ld returned 1 exit status
winegcc: i686-pc-linux-gnu-gcc failed.
make: *** [fst.exe] Error 2

!!! ERROR: media-libs/fst-1.8-r3 failed.
AFAIK, C functions pthread_join() and pthread_create() are defined in pthread.h, which included in vsti.c:

Code: Select all

<snip>
 *   $Id: vsti.c,v 1.2 2004/04/07 01:56:23 pauld Exp $
 */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <memory.h>
#include <fcntl.h>
#include <stdbool.h>
#include <jackvst.h>
#include <vst/aeffectx.h>
#include <pthread.h>
#include <sched.h>

snd_seq_t *
create_sequencer (const char* client_name, bool isinput)
{
<snip>
and don't included in jfst.c:

Code: Select all

*/

#include <sys/types.h>
#include <string.h>
#include <stdio.h>
#include <fst.h>
#include <glib.h>
#include <vst/aeffectx.h>

#include "jackvst.h"
#include <lash/lash.h>
#include <windows.h>
Unfortunately, problem isn't solves if I'm add #include <pthread.h> in jfst.c. I'm wonder, but calling different function from pthread.h in vsti.c:114 function is correct, and win_gcc accept it:

Code: Select all

        // Try to set fifo priority...
        // this works, if we are root or newe sched-cap manegment is used...
        pthread_setschedparam( pthread_self(), SCHED_FIFO, &scp );
But in same file, in vsti.c:185, wine_gcc doesn't accept that pthread_create():

Code: Select all

        snd_seq_drain_output (seq2);
        snd_seq_close (seq2);
        pthread_join (jvst->midi_thread,NULL);
        snd_seq_close (jvst->seq);
}
I'm also tried to put #include <pthread.h> near pthread_join() and pthread_create(), but it doesn't give any effect.
Currently, I'm have sys-devel/gcc-4.1.1-r3, app-emulation/wine-0.9.28, media-libs/vst-sdk-2.3-r3.
Top
gimpel
Advocate
Advocate
User avatar
Posts: 2720
Joined: Fri Oct 15, 2004 10:08 am
Location: Munich, Bavaria
Contact:
Contact gimpel
Website

Post by gimpel » Wed Jan 10, 2007 3:39 pm

same error here, and I don't seem to able to fix that too..
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Top
Andron-kun
n00b
n00b
Posts: 5
Joined: Tue Jan 09, 2007 4:31 pm

Fist impression of Bardix

Post by Andron-kun » Wed Jan 10, 2007 5:05 pm

So, I'm already tried Bardix in QEmu and make some screenshots:
[1] [2]
List of apps, provided in Bardix:
Ardour, ZynAddSubFX, seq24, schism, scale, Audacity, ReZound, Sweep, qjackconnect, alsa-patch-bay, jamin, jack-rack and links as WEB browser.
There is no Qt, so you don't get qJACKctl or Qtractor. Also, Bardix don't have any DHCP client.

You can see shots of menu items and sturtup-time windows here: http://www.schwarzbarde.de/bardix/shots/.
Top
bardebarde
n00b
n00b
User avatar
Posts: 15
Joined: Wed Jun 29, 2005 7:35 pm
Location: Graz,Austria
Contact:
Contact bardebarde
Website

Post by bardebarde » Thu Jan 11, 2007 1:05 pm

Awesome what happens if you use google ;)
So I found my way here and I have to say, that (thanks to Andron and Gimpel) there is now a torrent and a fast mirror for that first release of bardix.

There are still plenty things to do and much more software to integrate, but this will be done from time to time. I will release even an english version for all you non-germans ;)

DHCP-Support is also included since last evening. I had a nasty problem with it, that`s now solved.
Feel free to criticize this first release, so that I can improve it.
Top
grick
n00b
n00b
User avatar
Posts: 24
Joined: Thu Sep 16, 2004 8:01 am

bug (i suppose) in lilypond-2.10.4 (and 2.8.8) ebuild

Post by grick » Fri Jan 12, 2007 1:23 pm

If i post in the wrong place: sorry!
lilypond pro-audio ebuild (version 2.10.4/2.8.8 ) require

Code: Select all

# from lilypond-2.10.4.ebuild
RDEPEND="|| ( =dev-util/guile-1.6.7 >=dev-util/guile-1.8.0 )

# from lilypond-2.8.8.ebuild
RDEPEND=">=dev-util/guile-1.6.7
In portage guile is under dev-scheme

Code: Select all

grick@DarkStar ~ $ eix -e guile
* dev-scheme/guile
     Available versions:  
        (1.4)   1.4-r3
        (1.4.1) 1.4.1
        (12)    1.6.4-r1 ~1.6.6 1.6.7
     Installed versions:  Version: 1.6.7(12)
                          Date:    04:58:43 01/12/07
     Best versions/slot:  1.4-r3(1.4) 1.4.1(1.4.1) 1.6.7(12)
     Homepage:            http://www.gnu.org/software/guile/
     Description:         Scheme interpreter
     License:             GPL-2
so i have to edit ebuild to emerge lilypond :)
Top
evermind
Guru
Guru
Posts: 322
Joined: Sat Jan 10, 2004 6:59 pm

Re: bug (i suppose) in lilypond-2.10.4 (and 2.8.8) ebuild

Post by evermind » Fri Jan 12, 2007 2:41 pm

grick wrote:If i post in the wrong place: sorry!
lilypond pro-audio ebuild (version 2.10.4/2.8.8 ) require

Code: Select all

# from lilypond-2.10.4.ebuild
RDEPEND="|| ( =dev-util/guile-1.6.7 >=dev-util/guile-1.8.0 )

# from lilypond-2.8.8.ebuild
RDEPEND=">=dev-util/guile-1.6.7
so i have to edit ebuild to emerge lilypond :)
This was already fixed yesterday -- try to sync
Top
drjimmy42
Guru
Guru
User avatar
Posts: 512
Joined: Mon Feb 03, 2003 10:24 pm
Location: Nashua, NH

Post by drjimmy42 » Fri Jan 19, 2007 12:58 pm

Anyone know what is up with Andron-kun's fst pthread compilation error? I just got the same thing.
Top
evermind
Guru
Guru
Posts: 322
Joined: Sat Jan 10, 2004 6:59 pm

Post by evermind » Fri Jan 19, 2007 3:01 pm

drjimmy42 wrote:Anyone know what is up with Andron-kun's fst pthread compilation error? I just got the same thing.
seems like -lpthread is missing while linking
I've fixed the ebuild but couldn't check if it's working as for me this error doesn't show up

pls report if its working and if not fill a bug at
http://proaudio.tuxfamily.org/bugs/my_view_page.php

with more details about your system
Top
drjimmy42
Guru
Guru
User avatar
Posts: 512
Joined: Mon Feb 03, 2003 10:24 pm
Location: Nashua, NH

Post by drjimmy42 » Sat Jan 20, 2007 3:04 am

I am trying to download the swh-plugins from plugin.org.uk but am getting a forbidden error from the web server when I try to go to the releases directory. Is there anywhere else I can download swh-plugins-0.4.15?
Top
drjimmy42
Guru
Guru
User avatar
Posts: 512
Joined: Mon Feb 03, 2003 10:24 pm
Location: Nashua, NH

Post by drjimmy42 » Sat Jan 20, 2007 3:40 am

I just tried to build hydroben-0.9.3 from the pro-audio overlay. It ended seemingly successfully from a make standpoint but said it failed.

Code: Select all

make[1]: Leaving directory `/var/tmp/portage/media-sound/hydrogen-0.9.3/work/hyd
rogen-0.9.3'

!!! ERROR: media-sound/hydrogen-0.9.3 failed.
Call stack:
  ebuild.sh, line 1618:   Called dyn_compile
  ebuild.sh, line 975:   Called qa_call 'src_compile'
  environment, line 3825:   Called src_compile
  hydrogen-0.9.3.ebuild, line 66:   Called die

!!! Failed making hydrogen!
!!! If you need support, post the topmost build error, and the call stack if rel
evant.
!!! A complete build log is located at '/var/log/portage/media-sound:hydrogen-0.
9.3:20070120-031331.log'.
It even successfully linked the hydrogen executable because it was in /var/tmp/portage/media-sound/hydrogen-0.9.3/work/ and if I ran it from there it worked.

However higher up in the build output I saw this:

Code: Select all

i686-pc-linux-gnu-g++ -c -pipe -g -w -O2 -mcpu=i686 -pipe -fno-strict-aliasing -D_REENTRANT  -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT -I/usr/qt/3/mkspecs/linux-g++ -I. -I. -Isrc -I/usr/qt/3/include -o src/Button.o src/gui/widgets/Button.cpp
`-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
src/AlsaMidiDriver.o: In function `alsaMidiDriver_thread(void*)':
src/lib/drivers/AlsaMidiDriver.cpp:80: undefined reference to `Preferences::getInstance()'
src/DiskWriterDriver.o: In function `DiskWriterDriver::getSampleRate()':
src/lib/drivers/DiskWriterDriver.cpp:162: undefined reference to `Preferences::getInstance()'
src/DiskWriterDriver.o: In function `diskWriterDriver_thread(void*)':
src/lib/drivers/DiskWriterDriver.cpp:40: undefined reference to `Preferences::getInstance()'
src/JackDriver.o: In function `JackDriver::init(unsigned int)':
src/lib/drivers/JackDriver.cpp:242: undefined reference to `Preferences::getInstance()'
src/lib/drivers/JackDriver.cpp:243: undefined reference to `Preferences::getInstance()'
src/JackDriver.o:src/lib/drivers/JackDriver.cpp:392: more undefined references to `Preferences::getInstance()' follow
collect2: ld returned 1 exit status
make[1]: *** [hydrogenPlayer] Error 1
make[1]: Leaving directory `/var/tmp/portage/media-sound/hydrogen-0.9.3/work/hydrogen-0.9.3'
make: *** [hydrogenPlayer] Error 2
make: *** Waiting for unfinished jobs....
i686-pc-linux-gnu-g++ -c -pipe -g -w -O2 -mcpu=i686 -pipe -fno-strict-aliasing -D_REENTRANT  -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT -I/usr/qt/3/mkspecs/linux-g++ -I. -I. -Isrc -I/usr/qt/3/include -o src/CpuLoadWidget.o src/gui/widgets/CpuLoadWidget.cpp
and then the build continued on for a while. So I guess there is a non-fatal problem with the build. But running hydrogen from the work directory isn't any fun. Does anyone know what is going on here? Thanks.
Top
Dominique_71
Veteran
Veteran
User avatar
Posts: 1957
Joined: Wed Aug 17, 2005 1:01 pm
Location: Switzerland (Romandie)

Post by Dominique_71 » Sat Jan 20, 2007 8:31 pm

Just to say at I added a few words in the wiki about jack and alsa/oss applications.
I will welcome any comments, corrections or additions.
"Confirm You are a robot." - the singularity
Top
Coltie
Guru
Guru
User avatar
Posts: 305
Joined: Fri Apr 22, 2005 4:24 pm
Location: N 46° 7' 26.7" E 7° 6' 11.2"

Post by Coltie » Sun Jan 21, 2007 9:25 pm

Hi guys !

Anyone interested in adding loopdub to the overlay (sorry, but absolutely notime to add it, and moreover, I've no idea how to do that at the current time... :oops: )

Anyway it looks that this app is good one, isn't it?

http://loopdub.sourceforge.net/
Unreleased Kollektiv
"If by noise you mean uncomfortable sound, then pop music is noise to me."
Masami Akita
Top
Andron-kun
n00b
n00b
Posts: 5
Joined: Tue Jan 09, 2007 4:31 pm

Post by Andron-kun » Thu Jan 25, 2007 10:49 am

evermind:
Thank you, now media-libs/fst-1.8-r3 works great.
But now, pkgconfig can't find libfst.pc in /usr/lib/pkgconfig. This file placed in /usr/portage/local/layman/pro-audio/media-libs/fst/files/libfst.pc, but wasn't copied to pkgconfig's directory.

[ SOLVED ] Also, I'm report new issue: http://proaudio.tuxfamily.org/bugs/view.php?id=3.
Top
bfortz
n00b
n00b
Posts: 4
Joined: Sat Feb 25, 2006 1:40 pm

HELP! (problem with revision 424)

Post by bfortz » Fri Jan 26, 2007 2:17 pm

I tried to update my system today, and it seems all pro-audio ebuilds disappeared from my ebuild cache.
I tried emerge --regen, I deleted and added back the overlay, nothing seems to work.

# emerge -Dup world

These are the packages that would be merged, in order:

Calculating world dependencies \
!!! Ebuilds for the following packages are either all
!!! masked or don't exist:
media-sound/alsaplayer media-sound/ardour2

... done!
[ebuild UD] sys-libs/pam-0.78-r5 [0.78-r6]
[ebuild UD] media-sound/sooperlooper-1.0.3 [1.0.8c]
[ebuild UD] media-plugins/swh-plugins-0.4.14 [0.4.15]
[ebuild UD] media-sound/djplay-0.3.0 [0.3.0-r1]
[ebuild UD] media-sound/rosegarden-4.1.0-r2 [4.1.4.0]

Anybody else with the same problem?
Top
guitoo
Tux's lil' helper
Tux's lil' helper
Posts: 136
Joined: Fri Jun 04, 2004 4:32 pm

Re: HELP! (problem with revision 424)

Post by guitoo » Fri Jan 26, 2007 3:21 pm

Me too
I fixed this by adding

/usr/portage/local/layman/pro-audio/trunk/overlays/proaudio
and
/usr/portage/local/layman/pro-audio/trunk/overlays/proaudio-dev

in /usr/portage/local/layman/make.conf
Top
bLUEbYTE84
Guru
Guru
User avatar
Posts: 566
Joined: Fri Jul 21, 2006 9:11 pm
Location: universe.tar.gz, src/earth.h, struct homo_sapiens_table

Post by bLUEbYTE84 » Fri Jan 26, 2007 3:58 pm

Hi,
My arch is amd64.
I've tried to emerge media-libs/fst and all the versions are 'missing keyword' for amd64. For record, I have 32-bit compatibility stuff and wine already installed. My question:
Is it impossible to get it compiled on my amd64 machine (32-bits of course)? And, even if it compiles somehow, since my JACK is 64 bits, will it be incompatible with JACK?
Advanced Signature Camouflage System®(ASCS) v0.1
Top
bfortz
n00b
n00b
Posts: 4
Joined: Sat Feb 25, 2006 1:40 pm

Post by bfortz » Fri Jan 26, 2007 4:24 pm

Thanks guitoo, that worked for me too.
Top
bLUEbYTE84
Guru
Guru
User avatar
Posts: 566
Joined: Fri Jul 21, 2006 9:11 pm
Location: universe.tar.gz, src/earth.h, struct homo_sapiens_table

Post by bLUEbYTE84 » Fri Jan 26, 2007 5:11 pm

To those who have 'lost overlay' problems:
The overlay ebuild directory is moved. Edit your layman/pro-audio/make.conf file to read pro-audio/trunk/overlays/pro-audio directory instead.
(Thanks guitoo)
Taken from the Changelog:
/trunk/overlays/proaudio/@416 416 /trunk/overlays/proaudio/ evermind 21 hours moving
/trunk/overlays/proaudio/@415 415 /trunk/overlays/proaudio/ evermind 22 hours tree moved
Advanced Signature Camouflage System®(ASCS) v0.1
Top
evermind
Guru
Guru
Posts: 322
Joined: Sat Jan 10, 2004 6:59 pm

Post by evermind » Fri Jan 26, 2007 6:56 pm

bLUEbYTE84 wrote:Hi,
My arch is amd64.
I've tried to emerge media-libs/fst and all the versions are 'missing keyword' for amd64. For record, I have 32-bit compatibility stuff and wine already installed. My question:
Is it impossible to get it compiled on my amd64 machine (32-bits of course)? And, even if it compiles somehow, since my JACK is 64 bits, will it be incompatible with JACK?
you should try and report
A alternative but comlicated maybe is to setup a 32-bit chroot

I've just saw a this on the lau ml
http://lalists.stanford.edu/lau/2007/01/0093.html
Top
drjimmy42
Guru
Guru
User avatar
Posts: 512
Joined: Mon Feb 03, 2003 10:24 pm
Location: Nashua, NH

Post by drjimmy42 » Sat Jan 27, 2007 3:47 am

I got hydrogen to build successfully and it starts, but I get no outputs to show up in jack. I have other apps (rosegarden/ardour) working correctly so jack is working.

There are no audio in or out connectors for hydrogen in the qjackctl connection panel. In fact, the only thing hydrogen puts in there is a midi writable client.

Does anyone have hydrogen working with jack? Thanks.

Code: Select all

[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] Error starting audio driver [audioDriver::connect()]
[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] Using the NULL output audio driver
[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] m_pMainBuffer_L == NULL
[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] m_pMainBuffer_R == NULL
[ERROR]     Hydrogen            [audioEngine_setupLadspaFX] nBufferSize=0
Top
evermind
Guru
Guru
Posts: 322
Joined: Sat Jan 10, 2004 6:59 pm

Post by evermind » Sat Jan 27, 2007 9:10 am

drjimmy42 wrote:I got hydrogen to build successfully and it starts, but I get no outputs to show up in jack. I have other apps (rosegarden/ardour) working correctly so jack is working.

There are no audio in or out connectors for hydrogen in the qjackctl connection panel. In fact, the only thing hydrogen puts in there is a midi writable client.

Does anyone have hydrogen working with jack? Thanks.

Code: Select all

[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] Error starting audio driver [audioDriver::connect()]
[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] Using the NULL output audio driver
[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] m_pMainBuffer_L == NULL
[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] m_pMainBuffer_R == NULL
[ERROR]     Hydrogen            [audioEngine_setupLadspaFX] nBufferSize=0
file->preferences->audio-system
Top
drjimmy42
Guru
Guru
User avatar
Posts: 512
Joined: Mon Feb 03, 2003 10:24 pm
Location: Nashua, NH

Post by drjimmy42 » Sat Jan 27, 2007 11:56 am

evermind wrote:
drjimmy42 wrote:I got hydrogen to build successfully and it starts, but I get no outputs to show up in jack. I have other apps (rosegarden/ardour) working correctly so jack is working.

There are no audio in or out connectors for hydrogen in the qjackctl connection panel. In fact, the only thing hydrogen puts in there is a midi writable client.

Does anyone have hydrogen working with jack? Thanks.

Code: Select all

[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] Error starting audio driver [audioDriver::connect()]
[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] Using the NULL output audio driver
[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] m_pMainBuffer_L == NULL
[ERROR]     Hydrogen            [audioEngine_startAudioDrivers] m_pMainBuffer_R == NULL
[ERROR]     Hydrogen            [audioEngine_setupLadspaFX] nBufferSize=0
file->preferences->audio-system
I'm sorry, I should have mentioned what I had tried already.
  • If H starts up with the audio-system set to jack and no other jack is running I get

    Code: Select all

    Error starting audio driver
  • If qjackctl is started and my normal jack session is running and H audio-system is set to jack I get two errors

    Code: Select all

    Error starting audio driver
    and

    Code: Select all

    Jack driver: cannot connect output port
  • If H starts up with audio-system set to Alsa and jack is not running with alsa as the driver elsewhere, then H starts up and successfully uses alsa and makes noise.
So H can make noise with alsa only, but I can't find any configuration of jack, even ones that work with other apps, where H can recognize that jack is already running and connect to that running instance.

I am using hydrogen-0.9.3 and jack-audio-connection-kit-0.102.20

I very much appreciate the help.
Top
Urigeller23
n00b
n00b
User avatar
Posts: 33
Joined: Wed Mar 09, 2005 11:42 am

Post by Urigeller23 » Sat Jan 27, 2007 8:31 pm

okay, now that's wierd.. trying to unmerge ardour:

Code: Select all

>>> These are the packages that would be unmerged:

 media-sound/ardour
    selected: 0.99.3
   protected: none
     omitted: none

>>> 'Selected' packages are slated for removal.
>>> 'Protected' and 'omitted' packages will not be removed.

Would you like to unmerge these packages? [Yes/No] y
>>> Waiting 5 seconds before starting...
>>> (Control-C to abort)...
>>> Unmerging in: 5 4 3 2 1
>>> Unmerging media-sound/ardour-0.99.3...
No package files given... Grabbing a set.

!!! ERROR: media-sound/ardour-0.99.3 failed.
Call stack:
  ebuild.sh, line 1454:   Called source '/var/db/pkg/media-sound/ardour-0.99.3/ardour-0.99.3.ebuild'
  ardour-0.99.3.ebuild, line 5:   Called inherit 'eutils' 'scons-ccache'
  ebuild.sh, line 1189:   Called die

!!! scons-ccache.eclass could not be found by inherit()
!!! If you need support, post the topmost build error, and the call stack if relevant.

!!! FAILED prerm: 1
:?:
Top
Locked

808 posts
  • Page 19 of 33
    • Jump to page:
  • Previous
  • 1
  • …
  • 17
  • 18
  • 19
  • 20
  • 21
  • …
  • 33
  • Next

Return to “Unsupported Software”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic