Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/emulators/freesci/Portfile

Revision 43809, 1.6 KB (checked in by jeremyhu@…, 4 weeks ago)

freesci: Doesn't build universal. Autoreconf to find X11 on Leopard. Updated X11 dependencies.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem          1.0
4name                freesci
5version             0.6.4
6categories          emulators
7maintainers         blb
8description         Interpreter for SCI (old Sierra Online) games
9long_description \
10   FreeSCI is a portable interpreter for SCI games, such as the Space \
11   Quest series (starting with SQ3) or Leisure Suit Larry (2 and sequels). \
12   FreeSCI is still incomplete.
13
14platforms           darwin
15
16homepage            http://freesci.linuxgames.com/
17master_sites        http://www-plan.cs.colorado.edu/creichen/freesci/
18use_bzip2           yes
19universal_variant   no
20
21use_autoreconf      yes
22autoreconf.args     -fvi
23
24checksums           md5     b7669c1f1db8b7b19967ed61f103df3a \
25                    sha1    2761812ab95ed9eb3225717a2d336c0b4098fc76 \
26                    rmd160  8aa189f4b9b612fe8625be6b42a9bdfd46fef33b
27
28configure.args      --datadir=${prefix}/share/${name} \
29                    --mandir=${prefix}/share/man \
30                    --with-x --without-sdl
31
32depends_lib \
33        lib:libXi.6:xorg-libXi \
34        lib:libXinerama.1:xorg-libXinerama \
35        lib:libXrender.1:xrender \
36        port:fontconfig \
37        port:libpng \
38        port:ncurses
39
40variant sdl description {Use the SDL interface instead of X11} {
41   depends_lib-delete \
42        lib:libXi.6:xorg-libXi \
43        lib:libXinerama.1:xorg-libXinerama \
44        lib:libXrender.1:xrender \
45        port:fontconfig \
46        port:libpng
47   depends_lib-append      port:libsdl
48   configure.args-delete   --with-x --without-sdl
49   configure.args-append   --without-x --with-sdl-prefix=${prefix}
50}
51
52livecheck.check     regex
53livecheck.url       ${homepage}
54livecheck.regex     "FreeSCI (\[0-9.\]+)"
Note: See TracBrowser for help on using the browser.