Ticket #22809: Portfile

File Portfile, 1.2 KB (added by pedromartins.pt@…, 14 years ago)

Fixed version number

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                    thrift
7version                 0.2-SVN
8categories              devel
9maintainers             nomaintainer
10description             Service Development Framework
11long_description        Thrift is a software framework for scalable \
12                        cross-language services development.
13homepage                http://incubator.apache.org/thrift/
14platforms               darwin
15depends_build           port:boost \
16                        port:pkgconfig \
17                        port:automake \
18                        port:libtool
19fetch.type              svn
20svn.url                 http://svn.apache.org/repos/asf/incubator/thrift/trunk
21worksrcdir              trunk
22configure.args          --without-csharp \
23                        --without-java \
24                        --without-erlang \
25                        --without-py \
26                        --without-perl \
27                        --without-ruby
28pre-configure {
29    system "cd ${worksrcpath} && sh ./bootstrap.sh"
30}