Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 197271 - sys-kernel/kccmp-0.2 - incorrent QT dependencies
Summary: sys-kernel/kccmp-0.2 - incorrent QT dependencies
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal
Assignee: Mike Pagano
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-28 08:33 UTC by Jakub Moc (RETIRED)
Modified: 2007-10-29 00:19 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 Jakub Moc (RETIRED) gentoo-dev 2007-10-28 08:33:07 UTC
You need just one QT slot, not both, even w/ USE="qt3 qt4". Patch below:

<snip>
--- kccmp-0.2.ebuild	2007-10-08 16:06:39.000000000 +0200
+++ kccmp-0.2.ebuild	2007-10-28 09:30:53.000000000 +0100
@@ -12,9 +12,9 @@
 SLOT="0"
 KEYWORDS="~x86"
 
-IUSE="qt3 qt4"
-DEPEND="qt3? (  $(qt_min_version 3.3.8-r4) )
-	qt4? ( $(qt4_min_version 4.3.1-r1) >=dev-libs/boost-1.33.1-r1 )"
+IUSE="qt4"
+DEPEND="qt4? ( $(qt4_min_version 4.3.1-r1) >=dev-libs/boost-1.33.1-r1 )"
+	!qt4? (  $(qt_min_version 3.3.8-r4) )
 
 src_unpack() {
 	unpack "${A}"
</snip>
Comment 1 Mike Pagano gentoo-dev 2007-10-29 00:19:14 UTC
Fix has been committed. Thank-you, Jakub.