Added helper method to ensure that when FEATURE=test, then USE=test as well, or dies...
authorJoshua Nichols <nichoj@gentoo.org>
Sat, 5 Aug 2006 21:14:59 +0000 (21:14 +0000)
committerJoshua Nichols <nichoj@gentoo.org>
Sat, 5 Aug 2006 21:14:59 +0000 (21:14 +0000)
eclass/java-utils-2.eclass

index ab0f19ed1150a7581aa21116eeb3f2fe9dc2af4f..eac0b12d0bb1f32e449e6efb896a8410029a2400 100644 (file)
@@ -1195,6 +1195,14 @@ java-pkg_ensure-gcj() {
        fi
 }
 
+java-pkg_ensure-test() {
+       if hasq test ${FEATURES} && ! hasq -test ${FEATURES} && ! use test; then
+               eerror "You specified FEATURES=test, but USE=test is needed"
+               eerror "to pull in the additional dependencies for testing"
+               die "Need USE=test enabled"
+       fi
+}
+
 # ------------------------------------------------------------------------------
 # @section-end helper
 # ------------------------------------------------------------------------------