Alexander Afanasyev | 4c59013 | 2012-08-24 22:19:03 -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 | |
| 6 | use_configure yes |
| 7 | use_autoreconf yes |
| 8 | name ndndump |
| 9 | version 0.1 |
| 10 | revision 1 |
| 11 | description tcpdump for NDN |
| 12 | long_description \ |
| 13 | A simple tcpdump-like program that decodes and print out \ |
| 14 | ccnb-formatted packets (see www.ccnx.org). |
| 15 | maintainers ucla.edu:alexander.afanasyev |
| 16 | categories net |
| 17 | platforms darwin |
| 18 | homepage https://github.com/cawka/ndndump |
| 19 | |
| 20 | fetch.type git |
| 21 | git.url https://github.com/cawka/ndndump.git |
| 22 | git.branch master |
| 23 | |
| 24 | depends_build \ |
| 25 | port:autoconf \ |
| 26 | port:libtool \ |
| 27 | port:pkgconfig |
| 28 | depends_lib-append \ |
| 29 | port:openssl \ |
| 30 | port:ccnx \ |
| 31 | port:boost \ |
| 32 | port:libpcap |
| 33 | |
| 34 | configure.args-append --with-ccnx=${prefix} |
| 35 | configure.args-append --with-boost=${prefix} |