Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 106114 - arts 3.4.1 need jack >= 0.90 which is not specified in the ebuild.
Summary: arts 3.4.1 need jack >= 0.90 which is not specified in the ebuild.
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] KDE (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo KDE team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-09-15 14:31 UTC by Kristian Benoit
Modified: 2005-09-18 07:16 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kristian Benoit 2005-09-15 14:31:04 UTC
The configure script check for "pkg-config --atleast-version 0.90 jack" and tell
it cannot find jack otherwise. So the depedancy should be >=jack-... instead of
just jack. See the patch.

Reproducible: Always
Steps to Reproduce:
1. emerge '=jack-audio-connection-kit-0.80.0'
2. USE=jack emerge arts

Actual Results:  
arts configure script "cannot find jack-audio-connection-kit" as the version is
<0.90

Expected Results:  
arts ebuild should handle the depedancy.

Here's the fix:

--- arts-3.4.1-r2.ebuild        2005-09-11 05:39:05.000000000 -0400
+++ arts-3.4.1-r3.ebuild        2005-09-15 17:15:50.000000000 -0400
@@ -20,7 +20,7 @@ IUSE="alsa esd artswrappersuid jack mp3
 RDEPEND="alsa? ( media-libs/alsa-lib )
        vorbis? ( media-libs/libvorbis media-libs/libogg )
        esd? ( media-sound/esound )
-       jack? ( media-sound/jack-audio-connection-kit )
+       jack? ( >=media-sound/jack-audio-connection-kit-0.90 )
        mp3? ( media-libs/libmad )
        media-libs/audiofile
        >=dev-libs/glib-2
Comment 1 Caleb Tennis (RETIRED) gentoo-dev 2005-09-18 07:16:58 UTC
Fixed in cvs - thanks for the report