New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80050


Ignore:
Timestamp:
07/03/11 05:38:34 (4 years ago)
Author:
ryandesign@…
Message:

redland: update to 1.0.13; disable additional databases we don't have variants for yet; prevent build error when raptor port is installed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/www/redland/Portfile

    r73785 r80050  
    33PortSystem 1.0 
    44name                redland 
    5 version             1.0.12 
     5version             1.0.13 
    66description         Redland RDF Library 
    77long_description    Redland is a set of free software libraries that provide \ 
     
    1313master_sites        http://download.librdf.org/source/ 
    1414 
    15 checksums           md5     40f37a5ad97fdfbf984f78dcea0c6115 \ 
    16                     sha1    94b0f972a62c7eed0574c0e46c79cf78ece46570 \ 
    17                     rmd160  1af4bd59ae8be265cfeb806eb7b99d8b32f231f5 
     15checksums           sha1    f1b0db76eb02946a1f794b35db726ddfdc936ad6 \ 
     16                    rmd160  1ebc4a9eb73e022691a34677c5eaf5f17da56d32 
    1817 
    1918depends_lib         port:curl \ 
     
    2221                    port:libxslt \ 
    2322                    port:openssl \ 
    24                     port:raptor \ 
     23                    port:raptor2 \ 
    2524                    port:rasqal \ 
    2625                    port:zlib 
     
    2928depends_lib-append  port:pkgconfig 
    3029 
    31 configure.args      --mandir=${prefix}/share/man \ 
    32                     --with-bdb=no \ 
     30configure.args      --with-bdb=no \ 
     31                    --with-iodbc=no \ 
    3332                    --with-mysql=no \ 
    3433                    --with-postgresql=no \ 
    35                     --with-sqlite=no 
     34                    --with-sqlite=no \ 
     35                    --with-threestore=no \ 
     36                    --with-unixodbc=no \ 
     37                    --with-virtuoso=no 
     38 
     39pre-configure { 
     40    foreach {badport badfile} "raptor ${prefix}/include/raptor.h" { 
     41        if {[file exists ${badfile}]} { 
     42            ui_error "${name} cannot be built while ${badport} is active." 
     43            ui_error "Please deactivate ${badport} and try again." 
     44            ui_error "You can reactivate ${badport} again later." 
     45            return -code error "${badport} is installed" 
     46        } 
     47    } 
     48} 
    3649 
    3750post-configure { 
Note: See TracChangeset for help on using the changeset viewer.