Ticket #785: Portfile

File Portfile, 1.7 KB (added by charlie@…, 21 years ago)

Portfile v1.1

Line 
1# $Id: $
2
3PortSystem                      1.0
4name                            dnetc
5version                         2.9005.484
6categories                      net # I don't like this.
7maintainers                     charlie@rubberduck.com
8description                     distributed.net client
9long_description        distributed.net believes in the capability and potential \
10                                        of distributed computing. Their mission consists of three \
11                                        interdependent goals: development, deployment, and \
12                                        advocacy, to be pursued in the advancement of distributed \
13                                        computing. \
14                                        \
15                                        They advocate distributed computing, by encouraging global \
16                                        participation and contributions of processing power, \
17                                        bandwidth, and expertise\; by providing a forum for \
18                                        discussion\; and by raising awareness on the Internet and \
19                                        in the mainstream. \
20                                        \
21                                        *** Please Note! You _will_ need to run this with -config \
22                                        the first time you run it, or exec the rc.d/dnetc.sh. ***
23
24homepage                        http://distributed.net/
25platforms                       darwin
26distfiles                       dnetc-macosx-ppc.tar.gz
27checksums                       md5 8da11892b7640fb14c9d2b5ab7b3d8ef
28master_sites            ftp://ftp.distributed.net/pub/dcti/current-client/ \
29                                        http://http.distributed.net/pub/dcti/current-client/
30worksrcdir                      dnetc484-macosx-ppc
31
32depends_run     path:/Library/StartupItems/DarwinPortsStartup:DarwinPortsStartup
33
34configure                       {}
35build                           {}
36destroot                        {
37        file mkdir ${destroot}${prefix}/bin
38        system "install -m 755 ${worksrcpath}/dnetc ${destroot}${prefix}/bin"
39        system "install -m 644 ${worksrcpath}/dnetc.1 ${destroot}${prefix}/man/man1"
40        system "install -o root -m 755 -d ${destroot}${prefix}/etc/rc.d"
41        system "install -o root -m 755 -c \
42                ${portpath}/files/dnetc.sh ${destroot}${prefix}/etc/rc.d"
43        reinplace "s|__PREFIX|${prefix}|g" \
44                ${destroot}${prefix}/etc/rc.d/dnetc.sh
45                                }