Ticket #660: Portfile

File Portfile, 1.2 KB (added by robert@…, 21 years ago)

ATTACHMENT: ddclient-3.6.3beta2

Line 
1# $Id: Portfile,v 1.2 2003/06/24 05:59:11 rshaw Exp $
2PortSystem 1.0
3name                            ddclient
4version                         3.6.3beta2
5categories                      net
6maintainers                     ?
7description                     Update dynamic DNS entries
8long_description        ddclient is a Perl client used to update dynamic DNS \
9                                        entries for accounts on many dynamic DNS services.
10homepage                        http://burry.ca:4141/ddclient/
11master_sites            http://burry.ca:4141/ddclient/ 
12checksums                       md5 98edbaea5459f47eb9164f8e58bc162a
13#patchfiles                     patch-tree.c
14configure                       {}
15post-configure          {
16        reinplace "s|^#!.*/perl\\(.*\\)$|#!/usr/bin/perl\\1|" ${worksrcpath}/${portname}
17}
18build                           {}
19install                         {
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