Commits
Chih-Hsuan Yen authored and Perry E. Metzger committed 4fc2c5b641d
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 + | |
3 + | PortSystem 1.0 |
4 + | PortGroup github 1.0 |
5 + | |
6 + | github.setup CyberShadow dhcptest 0.7 |
7 + | |
8 + | categories net |
9 + | license Boost-1 |
10 + | platforms darwin |
11 + | maintainers {gmail.com:yan12125 @yan12125} openmaintainer |
12 + | |
13 + | description Cross-platform DHCP test client |
14 + | long_description This is a DHCP test tool. It can send DHCP discover \ |
15 + | packets, and listen for DHCP replies. |
16 + | |
17 + | checksums rmd160 4b3ab0bb209ed449e22ac3779346de402edb58e2 \ |
18 + | sha256 1da188de642b47a31b3516caf27f820aa0298ec2bf91c1a2c01fc06dcc8a4bc5 \ |
19 + | size 10422 |
20 + | |
21 + | depends_build port:dmd \ |
22 + | port:druntime \ |
23 + | port:phobos |
24 + | |
25 + | use_configure no |
26 + | |
27 + | build { |
28 + | system -W ${worksrcpath} "dmd dhcptest.d" |
29 + | } |
30 + | |
31 + | destroot { |
32 + | xinstall -m 755 ${worksrcpath}/dhcptest ${destroot}${prefix}/bin/dhcptest |
33 + | } |