Ticket #576: Portfile

File Portfile, 840 bytes (added by blb@…, 21 years ago)

Portfile

Line 
1# $Id: $
2
3PortSystem              1.0
4name                    freesci
5version                 0.3.4a
6categories              emulators
7maintainers             blb@pobox.com
8description             Interpreter for SCI (old Sierra Online) games
9long_description        \
10FreeSCI is a portable interpreter for SCI games, such as the Space Quest \
11series (starting with SQ3) or Leisure Suit Larry (2 and sequels). \
12FreeSCI is still incomplete.
13
14platforms               darwin
15homepage                http://freesci.linuxgames.com/
16master_sites            http://savannah.nongnu.org/download/freesci/stable.pkg/${version}/
17use_bzip2               yes
18
19checksums               md5 135bcfc64496b0b7f11e756bbb8fdaf9
20configure.env           CPPFLAGS="-I${prefix}/include" LDFLAGS="-L${prefix}/lib"
21
22# Default to X11 graphics
23configure.args          --with-x --without-sdl
24depends_lib             lib:libX11.6:XFree86
25
26variant sdl             {
27        depends_lib     lib:libSDL:libsdl
28        configure.args  --without-x --with-sdl-prefix=${prefix}
29}
30