1 | # $Id: Portfile,v 1.7 2006/04/12 20:38:25 mww Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name wine |
---|
5 | version 0.9.29 |
---|
6 | categories x11 |
---|
7 | maintainers nomaintainer@macosports.org |
---|
8 | description Wine is an Open Source implementation of the Windows API \ |
---|
9 | on top of X11 and Unix. |
---|
10 | long_description \ |
---|
11 | blah blah blah |
---|
12 | homepage http://www.winehq.org/ |
---|
13 | master_sites sourceforge:wine |
---|
14 | use_bzip2 yes |
---|
15 | checksums sha1 6bab2eb5426f5a4c88ff82cad7ef71fae30ed166 |
---|
16 | |
---|
17 | depends_lib port:icu port:lcms port:libungif port:libxml2 port:libxslt \ |
---|
18 | port:libgphoto2 port:fontforge lib:libX11.6:XFree86 \ |
---|
19 | port:freetype |
---|
20 | # libhal -- freedesktop.org. Looks to be linux specific |
---|
21 | # libsane -- I'm too lazy to port this |
---|
22 | |
---|
23 | configure.env CPPFLAGS=-I${prefix}/include \ |
---|
24 | LDFLAGS=-L${prefix}/lib |
---|
25 | configure.args --verbose |
---|
26 | build.cmd make depend && make |
---|
27 | build.env DYLD_LIBRARY_PATH=${prefix} |
---|
28 | |
---|
29 | platform powerpc { |
---|
30 | ui_error "Wine requires a Mac with an Intel processor." |
---|
31 | exit 1 |
---|
32 | } |
---|