1 | # $Id: Portfile,v 1.2 2003/06/24 05:59:11 rshaw Exp $ |
---|
2 | PortSystem 1.0 |
---|
3 | name ddclient |
---|
4 | version 3.6.3beta2 |
---|
5 | categories net |
---|
6 | maintainers ? |
---|
7 | description Update dynamic DNS entries |
---|
8 | long_description ddclient is a Perl client used to update dynamic DNS \ |
---|
9 | entries for accounts on many dynamic DNS services. |
---|
10 | homepage http://burry.ca:4141/ddclient/ |
---|
11 | master_sites http://burry.ca:4141/ddclient/ |
---|
12 | checksums md5 98edbaea5459f47eb9164f8e58bc162a |
---|
13 | #patchfiles patch-tree.c |
---|
14 | configure {} |
---|
15 | post-configure { |
---|
16 | reinplace "s|^#!.*/perl\\(.*\\)$|#!/usr/bin/perl\\1|" ${worksrcpath}/${portname} |
---|
17 | } |
---|
18 | build {} |
---|
19 | install { |
---|
20 | system "install -m 755 -d ${destroot}${prefix}/etc" |
---|
21 | system "install -m 555 ${worksrcpath}/sample-etc_ddclient.conf \ |
---|
22 | ${destroot}${prefix}/etc/ddclient.conf.sample" |
---|
23 | system "install -m 755 -d ${destroot}${prefix}/sbin" |
---|
24 | system "install -m 555 ${worksrcpath}/${portname} \ |
---|
25 | ${destroot}${prefix}/sbin" |
---|
26 | system "install -m 755 -d ${destroot}${prefix}/share/${portname}" |
---|
27 | system "install -m 444 ${worksrcpath}/COPY* \ |
---|
28 | ${destroot}${prefix}/share/${portname}" |
---|
29 | system "install -m 444 ${worksrcpath}/README* \ |
---|
30 | ${destroot}${prefix}/share/${portname}" |
---|
31 | system "install -m 444 ${worksrcpath}/sample-* \ |
---|
32 | ${destroot}${prefix}/share/${portname}" |
---|
33 | } |
---|
34 | |
---|