Ticket #43019: Portfile

File Portfile, 1.2 KB (added by jul_bsd@…, 9 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# $Id$
3
4PortSystem          1.0
5
6PortGroup           perl5 1.0
7
8perl5.branches      5.14 5.16 5.18 5.20
9perl5.setup         DBD-Firebird 1.18
10license             {Artistic-1 GPL}
11maintainers         nomaintainer
12description         perl dbd interface to Firebird SQL
13long_description    ${description}
14platforms           darwin
15
16checksums           rmd160  eec43b53497baa756ceeebbcacd3b95af6a25fc5 \
17                    sha256  f7578b62ac4999fbb2b67d09edb260ca5cb06e919e4fff6c6726c5cfa13a9590
18
19#depends_build          port:p5-file-which
20## if building against firebird binary package
21configure.env          FIREBIRD_HOME=/Library/Frameworks/Firebird.framework/Resources \
22              FIREBIRD_INCLUDE=/Library/Frameworks/Firebird.framework/Headers \
23              FIREBIRD_LIB=/Library/Frameworks/Firebird.framework/Libraries
24## if building against firebird macports
25#configure.env          FIREBIRD_HOME=${prefix} \
26#              FIREBIRD_INCLUDE=${prefix}/include \
27#              FIREBIRD_LIB=${prefix}/lib
28
29
30if {${perl5.major} != ""} {
31    depends_lib-append    port:p${perl5.major}-dbi port:p${perl5.major}-file-which
32}
33