Revision: 144354 https://trac.macports.org/changeset/144354 Author: ryandesign@macports.org Date: 2016-01-06 18:56:12 -0800 (Wed, 06 Jan 2016) Log Message: ----------- quickfix: add modeline and adjust whitespace to match Modified Paths: -------------- trunk/dports/devel/quickfix/Portfile Modified: trunk/dports/devel/quickfix/Portfile =================================================================== --- trunk/dports/devel/quickfix/Portfile 2016-01-07 02:53:15 UTC (rev 144353) +++ trunk/dports/devel/quickfix/Portfile 2016-01-07 02:56:12 UTC (rev 144354) @@ -1,18 +1,20 @@ +# -*- 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 # $Id$ PortSystem 1.0 + name quickfix version 1.14.3 license Permissive # http://www.quickfixengine.org/quickfix/doc/html/license.html categories devel finance +platforms darwin maintainers nomaintainer + description FIX engine implementation -long_description \ - QuickFIX is a full-featured open source FIX engine, currently compatible \ - with the FIX 4.0-4.4 spec. -platforms darwin +long_description QuickFIX is a full-featured open source FIX engine, \ + currently compatible with the FIX 4.0-4.4 spec. homepage http://www.quickfixengine.org/ master_sites sourceforge:project/quickfix/quickfix/${version} @@ -26,8 +28,8 @@ patchfiles patch-UnitTest++-Makefile.diff post-patch { - reinplace "s|@CXX@|${configure.cxx}|g" ${worksrcpath}/UnitTest++/Makefile - reinplace "s|@ARCHFLAGS@|[get_canonical_archflags cxx]|g" ${worksrcpath}/UnitTest++/Makefile + reinplace "s|@CXX@|${configure.cxx}|g" ${worksrcpath}/UnitTest++/Makefile + reinplace "s|@ARCHFLAGS@|[get_canonical_archflags cxx]|g" ${worksrcpath}/UnitTest++/Makefile } configure.args --with-java \ @@ -38,17 +40,17 @@ configure.env "JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home" post-destroot { - xinstall -m 755 -d ${destroot}${prefix}/share/${name}/sql - copy ${worksrcpath}/src/sql/postgresql ${destroot}${prefix}/share/${name}/sql + xinstall -m 755 -d ${destroot}${prefix}/share/${name}/sql + copy ${worksrcpath}/src/sql/postgresql ${destroot}${prefix}/share/${name}/sql } variant postgresql84 conflicts postgresql90 description {Include PostgreSQL 8.4 support} { - depends_lib-append port:postgresql84 + depends_lib-append port:postgresql84 configure.args-replace --without-postgresql --with-postgresql=${prefix}/lib/postgresql84/bin/pg_config } variant postgresql90 conflicts postgresql84 description {Include PostgreSQL 9.0 support} { - depends_lib-append port:postgresql90 + depends_lib-append port:postgresql90 configure.args-replace --without-postgresql --with-postgresql=${prefix}/lib/postgresql90/bin/pg_config }
participants (1)
-
ryandesign@macports.org