1 | # $Id: Portfile,v 1.3 2004/08/03 22:36:44 mww Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name scummvm |
---|
6 | version 0.6.1b |
---|
7 | platforms darwin |
---|
8 | categories emulators games |
---|
9 | maintainers phw@opendarwin.org |
---|
10 | description cross-platform interpreter for several adventure engines |
---|
11 | long_description ScummVM is a cross-platform interpreter for several \ |
---|
12 | point-and-click adventure engines. This includes all \ |
---|
13 | SCUMM-based adventures by LucasArts, Simon the \ |
---|
14 | Sorcerer by AdventureSoft, and Beneath a Steel Sky and \ |
---|
15 | Broken Sword 2 by Revolution |
---|
16 | |
---|
17 | homepage http://scummvm.org |
---|
18 | #distfiles ${name}-${version}-src.tar.bz2 |
---|
19 | master_sites sourceforge |
---|
20 | use_bzip2 yes |
---|
21 | checksums md5 143dd7cfe0995922c49e1f8a6cdf2055 |
---|
22 | depends_lib bin:sdl-config:libsdl \ |
---|
23 | lib:libmad:libmad \ |
---|
24 | lib:libogg:libogg \ |
---|
25 | lib:libvorbis:libvorbis \ |
---|
26 | lib:libvorbisfile:libvorbis \ |
---|
27 | lib:libmpeg2:libmpeg2 |
---|
28 | |
---|
29 | configure.env LDFLAGS="-L${prefix}/lib" \ |
---|
30 | CPPFLAGS="-I${prefix}/include" |
---|
31 | configure.pre_args |
---|
32 | post-configure { reinplace "s|/sw|${prefix}|g" ${worksrcpath}/Makefile } |
---|
33 | build.env ${configure.env} |
---|
34 | build.target bundle |
---|
35 | destroot { |
---|
36 | xinstall -m 755 -d ${destroot}/Applications/DarwinPorts |
---|
37 | file copy ${worksrcpath}/ScummVM.app \ |
---|
38 | ${destroot}/Applications/DarwinPorts |
---|
39 | } |
---|