Changeset 40493 for trunk/dports


Ignore:
Timestamp:
Oct 3, 2008, 5:27:41 PM (16 years ago)
Author:
macsforever2000@…
Message:

De-tab and whitespace fixes. Comment out variant enable_geldkarte until port libchipcard is added. Tweak to python variant description and name.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/devel/aqbanking/Portfile

    r40487 r40493  
     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
    12# $Id$
    23
     
    1415description       a generic online banking interface
    1516long_description  aqbanking is a generic online banking interface mainly \
    16                   supporting Home Banking Computer Interface, a standard \
    17                   used for German checking accounts, but also suitable \
    18                   for OFX as used in several other countries. \
    19                   Note that the YellowNet backend (for Suisse Postfinance) \
    20                   is not available for OS X (upstream only has a Linux binary).
     17                  supporting Home Banking Computer Interface, a standard \
     18                  used for German checking accounts, but also suitable \
     19                  for OFX as used in several other countries. \
     20                  Note that the YellowNet backend (for Suisse Postfinance) \
     21                  is not available for OS X (upstream only has a Linux binary).
    2122
    2223homepage          http://www.aquamaniac.de/sites/aqbanking/index.php
     
    3031                  # unverified -- upstream does not publish signatures!
    3132                                   
    32 depends_lib       port:gwenhywfar \
    33                   port:qt3 \
    34                   port:ktoblzcheck \
    35                   port:libglade2 \
    36                   port:libofx \
     33depends_lib       port:gwenhywfar \
     34                  port:qt3 \
     35                  port:ktoblzcheck \
     36                  port:libglade2 \
     37                  port:libofx \
    3738                  port:gmp
    38 depends_build     port:libtool
     39depends_build     port:libtool
    3940
    40 configure.cppflags-append       "-L${prefix}/lib"
    41 configure.cflags-append "-L${prefix}/lib"
    42 configure.ldflags-append "-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib"
    43 configure.env             QTDIR=${prefix}/lib/qt3
    44 configure.args    --with-qt-dir=${prefix}/lib/qt3 \
    45                   --disable-dependency-tracking \
    46                   --with-frontends="cbanking g2banking qbanking" \
    47                   --with-backends="aqhbci aqofxconnect aqnone" \
    48                   --enable-libofx \
    49                   --disable-chipcard-client \
    50                   --disable-chipcard-client-test
     41configure.cppflags-append "-L${prefix}/lib"
     42configure.cflags-append   "-L${prefix}/lib"
     43configure.ldflags-append  "-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib"
     44configure.env             QTDIR=${prefix}/lib/qt3
     45configure.args            --with-qt-dir=${prefix}/lib/qt3 \
     46                          --disable-dependency-tracking \
     47                          --with-frontends="cbanking g2banking qbanking" \
     48                          --with-backends="aqhbci aqofxconnect aqnone" \
     49                          --enable-libofx \
     50                          --disable-chipcard-client \
     51                          --disable-chipcard-client-test
    5152
    5253variant disable_ofx description "Disable OFX support" {
    53         depends_lib-delete      port:libofx
    54         configure.args-delete   --with-backends="aqhbci aqofxconnect aqnone"
    55         configure.args-delete   --enable-libofx
    56         configure.args-append   --with-backends="aqhbci aqnone" \
    57                                 --disable-libofx
     54    depends_lib-delete      port:libofx
     55    configure.args-delete   --with-backends="aqhbci aqofxconnect aqnone"
     56    configure.args-delete   --enable-libofx
     57    configure.args-append   --with-backends="aqhbci aqnone" \
     58                            --disable-libofx
    5859}
    5960
    60 variant enable_geldkarte conflicts disable_ofx description "Enable geldkarte" {
    61         depends_lib-append      port:libchipcard
    62         configure.args-delete   --disable-chipcard-client
    63         configure.args-delete   --disable-chipcard-client-test
    64         configure.args-append   --with-backends="aqhbci aqofxconnect aqgeldkarte aqnone" \
    65                                 --enable-chipcard-client \
    66                                 --enable-chipcard-client-test
     61#variant enable_geldkarte conflicts disable_ofx description "Enable geldkarte" {
     62#    depends_lib-append      port:libchipcard
     63#    configure.args-delete   --disable-chipcard-client
     64#    configure.args-delete   --disable-chipcard-client-test
     65#    configure.args-append   --with-backends="aqhbci aqofxconnect aqgeldkarte aqnone" \
     66#                            --enable-chipcard-client \
     67#                            --enable-chipcard-client-test
     68#}
     69
     70variant python24 description "Enable ctypes support. This is only needed if you are using Python 2.4. It is not needed if Python 2.5 or later is installed." {
     71    depends_build-append    port:py-ctypes
    6772}
    68 
    69 variant python description "Enable ctypes support. This is only needed if you are using Python 2.4 or earlier. Not needed if Python 2.5 or later is installed." {
    70         depends_build-append    port:py-ctypes
    71 }
Note: See TracChangeset for help on using the changeset viewer.