Alexander Afanasyev | 20cc34e | 2014-05-07 01:28:34 -0700 | [diff] [blame^] | 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 | # $Id$ |
| 3 | |
| 4 | PortSystem 1.0 |
| 5 | PortGroup github 1.0 |
| 6 | |
| 7 | github.setup named-data ndn-cxx ndn-cxx-0.1.0-rc1 |
| 8 | checksums rmd160 630723ee5f1cac30eca5a5eb0a93b063b869afc9 \ |
| 9 | sha256 80db2472aad0f6852e542e34f509da72f759218997fd3df04a998eb4c1cbb299 |
| 10 | |
| 11 | name ndn-cxx |
| 12 | homepage http://named-data.net/doc/ndn-cxx/ |
| 13 | license BSD |
| 14 | version 0.1.0-rc1 |
| 15 | |
| 16 | categories net |
| 17 | platforms darwin |
| 18 | maintainers ucla.edu:alexander.afanasyev |
| 19 | |
| 20 | description NDN C++ library with eXperimental eXtensions |
| 21 | |
| 22 | long_description ndn-cxx is a C++ library, implementing Named Data Networking (NDN) primitives \ |
| 23 | that can be used to implement various NDN applications |
| 24 | |
| 25 | depends_lib-append port:boost \ |
| 26 | port:openssl \ |
| 27 | port:libcryptopp \ |
| 28 | port:sqlite3 |
| 29 | |
| 30 | depends_build-append port:pkgconfig \ |
| 31 | port:py27-sphinx |
| 32 | |
| 33 | use_configure yes |
| 34 | |
| 35 | configure.env-append SPHINX_BUILD=${prefix}/bin/sphinx-build-2.7 |
| 36 | configure.cmd ./waf configure |
| 37 | |
| 38 | build.cmd ./waf |
| 39 | build.target build |
| 40 | |
| 41 | destroot.cmd ./waf |
| 42 | destroot.target install |
| 43 | destroot.destdir --destdir=${destroot} |