Trying to compile Wine 1.4.1 port in FreeBSD 10.0-RELEASE

Is it possible? Because I need to install wine 1.4.1, instead of the 1.6 version that is in the 10.0 ports tree. Already tried portdowngrade, but it says there is no 1.4.1 in the current ports tree.
I need to do that because newer versions of wine don't run very well certain games, like Postal 2 (Yes, Postal, not Portal :P).
Thanks.
 
Re: Install a 9.1 port in FreeBSD 10.0-RELEASE

Thanks, but looks like those packages are for amd64, and I'm on i386.
I'd to like to compile it from ports, but ports has only the 1.6 version... Is there a way I can edit the files so it compiles and installs 1.4.1?
 
Re: Install a 9.1 port in FreeBSD 10.0-RELEASE

Well, looks like I managed to do that... I was compiling, and saw the same error a lot of times
Code:
Warning: unkown warning option '-wunused-but-set-parameter'; did you mean '-Wunused-parameter'? [-Wunkown-warning-option]

Screenshot.png


Then, when the build finished:

Screenshot_1.png


Tried
Code:
make install
anyways, and saw a lot of times
Code:
gmake[3]: Nothing to be done for 'all'.

Screenshot_2.png


...Not sure if that is a good or a bad thing.
I guess is bad, because I wasn't able to finish the installation:

Screenshot_3.png


I've no idea what should I do to fix this :P
 
Re: Trying to compile Wine 1.4.1 port in FreeBSD 10.0-RELEAS

Posting text instead of images would be easier to read. Since it's an older obsolete port from before staging was implemented, it should both be built and installed with NO_STAGE set:
Code:
make clean
make NO_STAGE=yes install

Whether that will work, I don't know.
 
Back
Top