Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 67371 - media-sound/jmax ebuild lacks jack support
Summary: media-sound/jmax ebuild lacks jack support
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High major (vote)
Assignee: Gentoo Sound Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-10-13 05:17 UTC by Andrew Gaydenko
Modified: 2005-01-09 03:43 UTC (History)
0 users

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


Attachments
Modified ebuild to add jack support (jmax-4.1.0-r1.ebuild,1.73 KB, text/plain)
2004-12-13 06:35 UTC, Dale Whittaker
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Gaydenko 2004-10-13 05:17:05 UTC
In spite of (global) "+jack" USE flag, jmax is emerging
without jack support.


Reproducible: Always
Steps to Reproduce:
Comment 1 Jeremy Huddleston (RETIRED) gentoo-dev 2004-11-12 17:09:23 UTC
Can you please elaborate...
Comment 2 Andrew Gaydenko 2004-11-12 17:35:51 UTC
The app distribution contains 'configure' with JACK-support
turned off by default. To have JACK support the option must
be added explicitly.
Comment 3 Dale Whittaker 2004-12-13 06:35:05 UTC
Created attachment 45908 [details]
Modified ebuild to add jack support

Modified ebuild adds jack flags to compile if USE="jack" is set.
Comment 4 Jan Brinkmann (RETIRED) gentoo-dev 2005-01-09 03:43:43 UTC
slightly modified version commited. i've replaced 

local myconf=""

if use jack ; then
einfo "Compiling with Jack Support"
myconf="${myconf} --enable-jack=yes"
fi
econf ${myconf} || die "econf failed"

with

econf \
`use_enable jack` || die "econf failed"


thanks for your contribution.