1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup github 1.0 |
---|
5 | |
---|
6 | github.setup mamedev mame mame0189 |
---|
7 | version 0.189 |
---|
8 | categories emulators |
---|
9 | maintainers nomaintainer |
---|
10 | platforms darwin |
---|
11 | license GPL-2 |
---|
12 | homepage http://mamedev.org/index.php |
---|
13 | |
---|
14 | description Multiple Arcade Machine Emulator |
---|
15 | long_description The purpose of MAME is to preserve decades of software history. As \ |
---|
16 | electronic technology continues to rush forward, MAME prevents this important \ |
---|
17 | "vintage" software from being lost and forgotten. This is achieved by documenting \ |
---|
18 | the hardware and how it functions. The source code to MAME serves as this \ |
---|
19 | documentation. |
---|
20 | |
---|
21 | checksums rmd160 766cef7dca20cab35f429799682dd12fddb16855 \ |
---|
22 | sha256 73bb54ce1ae9c6173ee62254150e1fec73b8305dfaaf5bf410c33671fe2cac4d |
---|
23 | |
---|
24 | depends_lib-append \ |
---|
25 | port:expat \ |
---|
26 | port:flac \ |
---|
27 | port:jpeg \ |
---|
28 | port:libiconv \ |
---|
29 | port:libsdl2 \ |
---|
30 | port:libutf8proc \ |
---|
31 | port:lua \ |
---|
32 | port:portaudio \ |
---|
33 | port:portmidi \ |
---|
34 | port:sqlite3 \ |
---|
35 | port:zlib |
---|
36 | |
---|
37 | use_configure no |
---|
38 | |
---|
39 | build.args-append CC=${configure.cc} \ |
---|
40 | CXX=${configure.cxx} \ |
---|
41 | CPP=${configure.cpp} \ |
---|
42 | USE_LIBSDL=1 \ |
---|
43 | USE_SYSTEM_LIB_EXPAT=1 \ |
---|
44 | USE_SYSTEM_LIB_FLAC=1 \ |
---|
45 | USE_SYSTEM_LIB_JPEG=1 \ |
---|
46 | USE_SYSTEM_LIB_LUA=1 \ |
---|
47 | USE_SYSTEM_LIB_PORTAUDIO=1 \ |
---|
48 | USE_SYSTEM_LIB_PORTMIDI=1 \ |
---|
49 | USE_SYSTEM_LIB_SQLITE3=1 \ |
---|
50 | USE_SYSTEM_LIB_UTF8PROC=1 \ |
---|
51 | USE_SYSTEM_LIB_ZLIB=1 |
---|
52 | |
---|
53 | destroot { |
---|
54 | xinstall ${worksrcpath}/mame64 ${destroot}${prefix}/bin |
---|
55 | } |
---|