Ticket #31027: gwenhywfar4.patch
File gwenhywfar4.patch, 2.0 KB (added by drkp (Dan Ports), 13 years ago) |
---|
-
Portfile
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 1 2 # $Id$ 2 3 3 4 PortSystem 1.0 … … 11 12 12 13 categories devel net finance 13 14 maintainers mk openmaintainer 15 license {LGPL-2.1 OpenSSLException} 14 16 15 17 description a utility library required by aqbanking and related software 16 18 long_description ${description} … … 29 31 port:libgcrypt \ 30 32 port:gettext \ 31 33 port:libxml2 \ 32 port:gnutls \ 33 port:qt4-mac 34 port:gnutls 34 35 35 36 depends_build port:libtool \ 36 37 port:pkgconfig 37 38 38 configure.args --with-qt4-libs=${prefix}/lib \ 39 --with-qt4-includes=${prefix}/include \ 40 --with-qt4-moc=${prefix}/bin/moc \ 41 --with-qt4-uic=${prefix}/bin/uic \ 42 --with-guis=qt4 \ 43 --enable-static 39 configure.args --enable-static 44 40 45 41 patch.dir ${workpath}/${distname} 46 42 patch.pre_args -p1 47 43 44 if {$subport == $name} { 45 conflicts gwenhywfar4-gtk 46 configure.args-append --with-qt4-libs=${prefix}/lib \ 47 --with-qt4-includes=${prefix}/include \ 48 --with-qt4-moc=${prefix}/bin/moc \ 49 --with-qt4-uic=${prefix}/bin/uic \ 50 --with-guis=qt4 51 depends_lib-append port:qt4-mac 52 } 53 54 subport gwenhywfar4-gtk { 55 conflicts gwenhywfar4 56 depends_lib-append port:gtk2 57 configure.args-append --with-guis=gtk2 --disable-qt4 58 } 59 48 60 variant enable_local_install description "Enable local installation mode (plugins, data, locale and config are located relatively to the binary)" { 49 61 configure.args-append --enable-local-install 50 62 }