Ticket #20211: Portfile

File Portfile, 1.4 KB (added by stefan.van.der.eijk@…, 15 years ago)
Line 
1# $Id: Portfile 37263 2008-06-01 22:06:23Z mr_bond@macports.org $
2
3PortSystem                      1.0
4
5name                            asterisk
6version                         1.6.1.1
7categories                      net
8platforms                       darwin
9maintainers                     viagente.ca:marc.blanchet mr_bond openmaintainer
10
11description                     An Open Source PBX and telephony toolkit
12long_description        Asterisk is an open source PBX and telephony toolkit.  It \
13                                        provides the ability to develop telephony applications on top of internet \
14                                        telephony (Voice over IP) as well as traditional telephony connectivity (PSTN).
15                               
16homepage                        http://www.asterisk.org
17master_sites            http://downloads.digium.com/pub/asterisk/releases/
18patchfiles              20090420__bug14930.diff
19                                       
20depends_lib                     port:ncurses \
21                                        port:openssl \
22                                        port:zlib \
23                                        port:bison \
24                                        port:curl \
25                                        port:wget
26                                       
27checksums                       md5  7e4dccc79c504ae497ff42062279905d \
28                                        sha1  cd976cf05ba4c4b53b50e7af69fd6d684f070f86 \
29                                        rmd160 2fd9fc82a3f9cf23bbe2ed974b008a7a5bfdd570
30
31startupitem.create      yes
32startupitem.netchange   yes
33startupitem.executable  ${prefix}/sbin/asterisk -d
34
35#configure.args         --localstatedir=${prefix}/var --sysconfdir=${prefix}/etc/ \
36configure.args          --without-h323 --without-zaptel
37
38build.env                       ASTCFLAGS=-I${prefix}/include \
39                                ASTLDFLAGS=-L${prefix}/lib
40
41post-destroot {
42        system "rsync -a $worksrcpath/configs/*.sample ${destroot}/${prefix}/etc/asterisk"
43        file mkdir "${destroot}/${prefix}/var/run"
44        file mkdir "${destroot}/${prefix}/var/log/asterisk"
45}