Ticket #35295: Portfile

File Portfile, 1.0 KB (added by icaines77@…, 12 years ago)
Line 
1# $Id$
2
3PortSystem 1.0
4
5name            cputhrottle
6#can't find any designated version number, so we'll call it 1.0
7version         1.0
8revision        0
9categories      sysutils
10maintainers     none
11description     a tool to for throttling process cpu usage
12long_description    Cputhrottle is a tool which allows cpu usage to be limited on a \
13                per-PID basis.   
14homepage        http://www.willnolan.com/cputhrottle/cputhrottle.html
15platforms       darwin
16distfiles       cputhrottle.tar.gz
17master_sites    http://www.willnolan.com/cputhrottle/
18distname        cputhrottle
19worksrcdir      ${distname}
20checksums       md5     21b8c53310111dabe4d6b58cc702deb6 \
21                sha1    e88c7264cb09399f2e4c54f9d10978ffbb99078b \
22                rmd160  4fc0e11712e6fd308c955d821091c9bd2188b720
23depends_lib     port:boost
24
25#patch the makefile so we can use it to install to destroot.
26patchfiles      makefile.diff
27post-patch {
28  reinplace "s|@@PREFIX@@|${prefix}|g" ${worksrcpath}/GNUmakefile
29}
30
31# no configuration script provided
32use_configure   no