Ticket #54699: Portfile.3

File Portfile.3, 2.1 KB (added by mf2k (Frank Schima), 7 years ago)
Line 
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
3PortSystem          1.0
4PortGroup github    1.0
5
6github.setup        mamedev mame mame0189
7version             0.189
8categories          emulators
9maintainers         nomaintainer
10platforms           darwin
11license             GPL-2
12homepage            http://mamedev.org/index.php
13
14description         Multiple Arcade Machine Emulator
15long_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
21checksums           rmd160  766cef7dca20cab35f429799682dd12fddb16855 \
22                    sha256  73bb54ce1ae9c6173ee62254150e1fec73b8305dfaaf5bf410c33671fe2cac4d
23
24patchfiles          patch-rendutil.cpp.diff
25
26depends_lib-append  \
27                    port:expat \
28                    port:flac \
29                    port:jpeg \
30                    port:libiconv \
31                    port:libsdl2 \
32                    port:libutf8proc \
33                    port:lua \
34                    port:portaudio \
35                    port:portmidi \
36                    port:sqlite3 \
37                    port:zlib
38
39use_configure       no
40use_parallel_build  no
41
42build.args-append   CC=${configure.cc} \
43                    CXX=${configure.cxx} \
44                    CPP=${configure.cpp} \
45                    USE_LIBSDL=1 \
46                    USE_SYSTEM_LIB_EXPAT=1 \
47                    USE_SYSTEM_LIB_FLAC=1 \
48                    USE_SYSTEM_LIB_JPEG=1 \
49                    USE_SYSTEM_LIB_LUA=1 \
50                    USE_SYSTEM_LIB_PORTAUDIO=1 \
51                    USE_SYSTEM_LIB_PORTMIDI=1 \
52                    USE_SYSTEM_LIB_SQLITE3=1 \
53                    USE_SYSTEM_LIB_UTF8PROC=1 \
54                    USE_SYSTEM_LIB_ZLIB=1
55
56destroot {
57    xinstall ${worksrcpath}/mame64 ${destroot}${prefix}/bin
58}