Ticket #57919: Portfile.2

File Portfile.2, 2.2 KB (added by iEFdev, 5 years ago)

Updated version (needs review?). For ref: https://github.com/iEFdev/macports-ports/blob/maxminddb_x2/www/mod_maxminddb/Portfile

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        maxmind mod_maxminddb 1.1.0
7revision            0
8checksums           rmd160  bab39c27d8aba3e6a6cb8f010ebdab3ef23575da \
9                    sha256  b31e63764ddcc1379229059a4726c733ee0538018727b1336d02afaaa8940782 \
10                    size    99821
11
12categories          www
13platforms           darwin
14maintainers         nomaintainer
15license             Apache-2
16
17description         This module allows you to query MaxMind DB files from Apache 2.2+ \
18                    using the libmaxminddb library.
19
20long_description    ${description}
21
22homepage            https://maxmind.github.io/mod_maxminddb/
23github.tarball_from releases
24
25depends_lib         port:apache2 \
26                    port:libmaxminddb
27
28set apxs            ${prefix}/bin/apxs
29set ddir            ${prefix}/share/doc/${name}
30set dbdir           ${prefix}/share/GeoIP
31set mdir            ${prefix}/lib/apache2/modules
32
33patchfiles          Wl.patch \
34                    add-readme-dbfiles.diff
35
36configure.args      --with-apxs=${apxs} \
37                    --disable-dependency-tracking
38
39test.run            yes
40test.target         check
41
42destroot {
43    xinstall -d -m 0755 ${destroot}${mdir} ${destroot}${ddir} ${destroot}${dbdir}
44    xinstall -m 0644 -W ${worksrcpath} Changes.md CONTRIBUTING.md \
45        LICENSE README.md TESTING.md ${destroot}${ddir}
46    xinstall -m 0644 -W ${worksrcpath} ReadMe_DBFiles.md ${destroot}${dbdir}
47    xinstall -m 0755 ${worksrcpath}/src/.libs/${name}.so ${destroot}${mdir}
48}
49
50notes "
51If this your first install, you might want to enable ${name} in Apache:
52
53    cd ${mdir}
54    sudo ${apxs} -a -e -n \"maxminddb\" mod_maxminddb.so
55
56And then relaunch Apache:
57
58    $ sudo apachectl restart
59
60- - -
61
62Examples/setup: ${ddir}/README.md
63                https://github.com/maxmind/mod_maxminddb#examples
64
65Database files: https://dev.maxmind.com/geoip/geoip2/geolite2/#Downloads
66Put them in:    ${dbdir}
67
68    MaxMindDBEnable On
69    MaxMindDBFile COUNTRY_DB ${dbdir}/GeoLite2-Country.mmdb
70    MaxMindDBFile CITY_DB    ${dbdir}/GeoLite2-City.mmdb
71"