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 | name port-whatsnew |
---|
7 | version 0.1 |
---|
8 | revision 1 |
---|
9 | categories sysutils macports |
---|
10 | maintainers gwmail.gwu.edu:egall openmaintainer |
---|
11 | platforms darwin |
---|
12 | license BSD |
---|
13 | supported_archs noarch |
---|
14 | |
---|
15 | description Show the svn log of what changed since this port \ |
---|
16 | was installed. |
---|
17 | long_description ${description} |
---|
18 | homepage http://svn.macports.org/repository/macports/contrib/${name} |
---|
19 | |
---|
20 | livecheck.type none |
---|
21 | |
---|
22 | fetch.type svn |
---|
23 | svn.url https://svn.macports.org/repository/macports/contrib/${name} |
---|
24 | svn.revision 120482 |
---|
25 | |
---|
26 | worksrcdir ${name} |
---|
27 | |
---|
28 | use_configure no |
---|
29 | |
---|
30 | build { |
---|
31 | ui_debug "${name} has no build step." |
---|
32 | } |
---|
33 | |
---|
34 | destroot { |
---|
35 | xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/${name} |
---|
36 | } |
---|
37 | |
---|