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 | |
---|
3 | # NOTE: If you want to update this port, you should also update libvirt at the |
---|
4 | # same time. |
---|
5 | |
---|
6 | PortSystem 1.0 |
---|
7 | PortGroup perl5 1.0 |
---|
8 | |
---|
9 | perl5.branches 5.24 |
---|
10 | perl5.setup Sys-Virt 2.4.0 |
---|
11 | |
---|
12 | license LGPL-2.1+ |
---|
13 | platforms darwin |
---|
14 | maintainers openmaintainer |
---|
15 | |
---|
16 | description Libvirt - The Virtualization API |
---|
17 | |
---|
18 | long_description This is the Perl binding for libvirt. |
---|
19 | |
---|
20 | checksums rmd160 079ce02d32554ec3097fe76875317d90ac6b5c77 \ |
---|
21 | sha256 c441e805d21207791998833b12adae0dbf15bb34cc6e40445c8fbc52c79db03b |
---|
22 | |
---|
23 | # Depend on various Perl ports, plus libvirt itself |
---|
24 | depends_lib-append port:libvirt |
---|
25 | if {${perl5.major} != ""} { |
---|
26 | depends_lib-append port:p${perl5.major}-xml-xpath \ |
---|
27 | port:p${perl5.major}-cpan-changes |
---|
28 | } else { |
---|
29 | depends_lib-append port:p5-xml-xpath \ |
---|
30 | port:p5-cpan-changes |
---|
31 | } |
---|
32 | |
---|
33 | # This module breaks if parallel build is used! |
---|
34 | use_parallel_build no |
---|