Ticket #38110: Portfile

File Portfile, 908 bytes (added by cooljeanius (Eric Gallager), 11 years ago)

Portfile for port-whatsnew

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