没有任何数据可供显示
开源项目社区 | 当前位置 : |
|
www.trustie.net/open_source_projects | 主页 > 开源项目社区 > portgrep |
portgrep
|
1 | 0 | 2 |
贡献者 | 讨论 | 代码提交 |
概述
portgrep is a tool that can help to analize existing FreeBSD ports and how they use different variables and etc.
It is similar to this command:
find /usr/ports/ -name Makefile -exec grep -H STRING {} \;Installationfetch current version of portgrep extract it change directory make make install UsageFor example I want to know were and how Boost's shared_prt library is used:
portgrep Makefile shared_ptrOutput:
Found in: /usr/ports/devel/libopkele/Makefile
BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs
Found in: /usr/ports/devel/monotone/Makefile
BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs \
...
创建时间:2014-05-06 16:39