Bug 215920 - net-firewall/fwbuilder 2.1.x has wrong USE-flag check in ebuild
Bug#: 215920 Product:  Gentoo Linux Version: unspecified Platform: All
OS/Version: Linux Status: RESOLVED Severity: normal Priority: P2
Resolution: FIXED Assigned To: darkside@gentoo.org Reported By: daniel@linuxaddicted.de
Component: Unspecified
URL: 
Summary: net-firewall/fwbuilder 2.1.x has wrong USE-flag check in ebuild
Keywords:  
Status Whiteboard: 
Opened: 2008-04-02 19:03 0000
Description:   Opened: 2008-04-02 19:03 0000
The ebuild for fwbuilder-2.1.x contains a check for the USE flag nocxx on
dev-java/antlr. According to the changelog of antlr this check is wrong:

08 Mar 2008; Petteri RÀty <betelgeuse@gentoo.org> antlr-2.7.7.ebuild:
Rename nocxx and nojava to cxx and java and turn them on by default usingEAPI
1.

Reproducible: Always

Steps to Reproduce:
1. ACCEPT_KEYWORDS="~x86" emerge -uv fwbuilder
2.
3.

Actual Results:  
Install fails with "dev-java/antlr-2.7.7 does not actually support the nocxx
USE flag!"

Expected Results:  
Installation ends successful

------- Comment #1 From Robert W. Fuller 2008-05-01 22:45:00 0000 -------
I ran into this too:

Change this line:
        if built_with_use dev-java/antlr nocxx; then
to:
        if ! built_with_use dev-java/antlr cxx; then

then do an "emerge --resume"

------- Comment #2 From Łukasz Damentko 2008-05-27 13:25:05 0000 -------
r3pek was retired (#80351), reassigning remaining bugs.

------- Comment #3 From Jeremy Olexa (darkside) 2008-06-07 07:05:11 0000 -------
Many fwbuilder bugs. I'm in the process of fixing.

------- Comment #4 From Jeremy Olexa (darkside) 2008-06-09 00:56:11 0000 -------
Fixed, thanks for reporting!