Solved linux-f10-* ports [SOLVED]

I cannot install any linux-f10-* ports using make or portmaster. I can only install the ones that have packages available using pkg install. Unfortunately security/linux-f10-gnutls. I found and downloaded a version of the package that is not in the repository but I can't figure out how to install it. Anyways... all the FORBIDDEN lines have been commented out (I wish there was a way to ignore FORBIDDEN in make.conf... maybe there is, I'll have to go through some man pages some more. Anyways, here's an example of what happens when I try to install using the traditional method:
Code:
root@fbsd:/usr/ports/security/linux-f10-gnutls # make install clean
*** Error code 1

Stop.
make: stopped in /usr/ports/security/linux-f10-gnutls
Not really a lot of information to go off of....
 
Re: linux-f10-* ports

I've been using this in /etc/make.conf:
Code:
# Allow building forbidden linux ports
.if ${.CURDIR:M*/linux-f10-*}
DISABLE_VULNERABILITIES=yes
NO_IGNORE=yes
.endif
 
Back
Top