Ticket #52968: diff

File diff, 3.8 KB (added by akkornel (A. Karl Kornel), 7 years ago)

Diff showing changes (v2)

  • new file perl/p5-sys-virt/Portfile

    diff --git a/perl/p5-sys-virt/Portfile b/perl/p5-sys-virt/Portfile
    new file mode 100644
    index 0000000..13151e1
    - +  
     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
     6PortSystem          1.0
     7PortGroup           perl5 1.0
     8
     9perl5.branches      5.24
     10perl5.setup         Sys-Virt 2.4.0
     11
     12license             LGPL-2.1+
     13platforms           darwin
     14maintainers         nomaintainer
     15
     16description         Libvirt - The Virtualization API
     17
     18long_description    This is the Perl binding for libvirt.
     19
     20checksums           rmd160  079ce02d32554ec3097fe76875317d90ac6b5c77 \
     21                    sha256  c441e805d21207791998833b12adae0dbf15bb34cc6e40445c8fbc52c79db03b
     22
     23# Depend on various Perl ports, plus libvirt itself
     24depends_lib-append  port:libvirt
     25if {${perl5.major} != ""} {
     26depends_lib-append  port:p${perl5.major}-xml-xpath \
     27                    port:p${perl5.major}-cpan-changes
     28}
     29
     30# This module breaks if parallel build is used!
     31use_parallel_build  no
  • sysutils/libvirt/Portfile

    diff --git a/sysutils/libvirt/Portfile b/sysutils/libvirt/Portfile
    index 33b726b..8cee612 100644
    a b  
    11# -*- 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$
     2
     3# NOTE: When you update this port, please also update the following
     4# language-binding ports: p5-sys-virt
    35
    46PortSystem          1.0
    57
    68name                libvirt
    7 version             1.3.5
     9version             2.4.0
    810categories          sysutils
    911license             LGPL-2.1+
    1012platforms           darwin
    long_description A toolkit to interact with the virtualization \ 
    1719
    1820homepage            http://www.libvirt.org/
    1921master_sites        ${homepage}sources/
     22use_xz              yes
    2023
    21 checksums           rmd160  6a2e0b288dcafaab0440c35523c6658ef9d3ea8d \
    22                     sha256  93a23c44eb431da46c9458f95a66e29c9b98e37515d44b6be09e75b35ec94ac8
     24checksums           rmd160  ceac4c29e03f7c29113e9a926adb21c6a72cdada \
     25                    sha256  b727c5f43ed3d7337ec2c2f2031ebd4207507978f68d00ad13d4f0f84aad6224
    2326
    2427depends_build       port:pkgconfig \
    2528                    port:xhtml1
    depends_lib port:curl \ 
    3538
    3639configure.args      --disable-silent-rules \
    3740                    --without-apparmor \
     41                    --without-attr \
    3842                    --without-audit \
    3943                    --without-avahi \
     44                    --without-blkid \
    4045                    --without-capng \
     46                    --without-dbus \
    4147                    --without-dtrace \
     48                    --without-fuse \
     49                    --without-glusterfs \
    4250                    --without-hal \
    4351                    --with-init-script=none \
    4452                    --without-libpcap \
    variant avahi description {Use Avahi to advertise remote daemon} { 
    7381    configure.args-replace  --without-avahi --with-avahi
    7482}
    7583
     84variant fuse description {FUSE support} {
     85    depends_lib-append      port:osxfuse
     86    configure.args-replace  --without-fuse --with-fuse
     87}
     88
     89variant openssl description {Use OpenSSL/LibreSSL instead of GNUTLS} {
     90    depends_lib-replace     port:gnutls path:lib/libssl.dylib:openssl
     91    configure.args-append   --without-gnutls --with-openssl
     92}
     93
     94variant qemu description {Support managing QEMU VMs} {
     95    depends_lib-append      port:qemu
     96    configure.args-replace  --without-qemu --with-qemu
     97}
     98
    7699variant sasl description {Use Cyrus SASL for authentication} {
    77100    depends_lib-append      port:cyrus-sasl2
    78101    configure.args-replace  --without-sasl --with-sasl