1 | --- Portfile.orig 2006-03-16 09:43:17.000000000 -0600 |
---|
2 | +++ Portfile 2006-03-16 09:44:41.000000000 -0600 |
---|
3 | @@ -1,15 +1,26 @@ |
---|
4 | # $Id: Portfile,v 1.8 2006/03/01 08:47:53 blb Exp $ |
---|
5 | |
---|
6 | -PortSystem 1.0 |
---|
7 | -PortGroup perl5 1.0 |
---|
8 | -perl5.setup DBD-mysql 3.0002 |
---|
9 | -maintainers narf_tm@trulycertifiable.com |
---|
10 | -description Perl5 Database Interface to the MySQL database |
---|
11 | +PortSystem 1.0 |
---|
12 | +PortGroup perl5 1.0 |
---|
13 | +perl5.setup DBD-mysql 3.0002 |
---|
14 | +revision 1 |
---|
15 | +maintainers narf_tm@trulycertifiable.com |
---|
16 | +description Perl5 Database Interface to the MySQL database |
---|
17 | long_description ${description} |
---|
18 | |
---|
19 | -platforms darwin |
---|
20 | +platforms darwin |
---|
21 | |
---|
22 | -checksums md5 df70ba084c97f5f7c2a997c3de2f0ad0 |
---|
23 | +checksums md5 df70ba084c97f5f7c2a997c3de2f0ad0 |
---|
24 | |
---|
25 | -depends_lib-append port:p5-dbi bin:mysql:mysql4 lib:libz:zlib |
---|
26 | +depends_lib-append port:p5-dbi port:mysql5 port:zlib |
---|
27 | + |
---|
28 | +variant mysql3 conflicts mysql4 mysql5 { |
---|
29 | + depends_lib-delete port:mysql5 |
---|
30 | + depends_lib-append port:mysql3 |
---|
31 | +} |
---|
32 | + |
---|
33 | +variant mysql4 conflicts mysql3 mysql5 { |
---|
34 | + depends_lib-delete port:mysql5 |
---|
35 | + depends_lib-append port:mysql4 |
---|
36 | +} |
---|
37 | |
---|