|
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 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | name freesci |
|---|
| 5 | version 0.6.4 |
|---|
| 6 | categories emulators |
|---|
| 7 | maintainers blb |
|---|
| 8 | description Interpreter for SCI (old Sierra Online) games |
|---|
| 9 | long_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 | |
|---|
| 14 | platforms darwin |
|---|
| 15 | |
|---|
| 16 | homepage http://freesci.linuxgames.com/ |
|---|
| 17 | master_sites http://www-plan.cs.colorado.edu/creichen/freesci/ |
|---|
| 18 | use_bzip2 yes |
|---|
| 19 | universal_variant no |
|---|
| 20 | |
|---|
| 21 | use_autoreconf yes |
|---|
| 22 | autoreconf.args -fvi |
|---|
| 23 | |
|---|
| 24 | checksums md5 b7669c1f1db8b7b19967ed61f103df3a \ |
|---|
| 25 | sha1 2761812ab95ed9eb3225717a2d336c0b4098fc76 \ |
|---|
| 26 | rmd160 8aa189f4b9b612fe8625be6b42a9bdfd46fef33b |
|---|
| 27 | |
|---|
| 28 | configure.args --datadir=${prefix}/share/${name} \ |
|---|
| 29 | --mandir=${prefix}/share/man \ |
|---|
| 30 | --with-x --without-sdl |
|---|
| 31 | |
|---|
| 32 | depends_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 | |
|---|
| 40 | variant 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 | |
|---|
| 52 | livecheck.check regex |
|---|
| 53 | livecheck.url ${homepage} |
|---|
| 54 | livecheck.regex "FreeSCI (\[0-9.\]+)" |
|---|