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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | PortGroup perl5 1.0 |
---|
7 | |
---|
8 | perl5.branches 5.14 5.16 5.18 5.20 |
---|
9 | perl5.setup DBD-Firebird 1.18 |
---|
10 | license {Artistic-1 GPL} |
---|
11 | maintainers nomaintainer |
---|
12 | description perl dbd interface to Firebird SQL |
---|
13 | long_description ${description} |
---|
14 | platforms darwin |
---|
15 | |
---|
16 | checksums rmd160 eec43b53497baa756ceeebbcacd3b95af6a25fc5 \ |
---|
17 | sha256 f7578b62ac4999fbb2b67d09edb260ca5cb06e919e4fff6c6726c5cfa13a9590 |
---|
18 | |
---|
19 | #depends_build port:p5-file-which |
---|
20 | ## if building against firebird binary package |
---|
21 | configure.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 | |
---|
30 | if {${perl5.major} != ""} { |
---|
31 | depends_lib-append port:p${perl5.major}-dbi port:p${perl5.major}-file-which |
---|
32 | } |
---|
33 | |
---|