Ticket #38110: Portfile.2

File Portfile.2, 995 bytes (added by cooljeanius (Eric Gallager), 10 years ago)

Portfile for version of port-whatsnew that works with MacPorts 2.3.0

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