Ticket #1455: Portfile

File Portfile, 1.2 KB (added by danielluke (Daniel J. Luke), 20 years ago)

subversion 0.37.0 portfile

Line 
1# $Id: Portfile,v 1.18 2004/01/19 22:32:01 matt Exp $
2
3PortSystem 1.0
4name            subversion
5version         0.37.0
6categories      devel
7maintainers     dluke@geeklair.net
8description     a cvs like version control system, but without the suck
9
10long_description        Subversion is a version control system designed to be \
11                                as similar to cvs(1) as possible, while fixing many \
12                                outstanding problems with cvs(1).
13
14homepage        http://subversion.tigris.org/
15master_sites    http://svn.collab.net/tarballs/
16checksums       md5 048c4d17d5880dc8f3699020eac56224
17
18depends_lib     lib:libexpat:expat lib:libneon.24.0.4:neon \
19                lib:libapr-0.0.9.5:apr lib:libaprutil-0.0.9.5:apr-util \
20                lib:libdb-4:db4
21
22patchfiles      patch-Makefile.in
23
24configure.args  --with-berkeley-db=${prefix}/include/db4:${prefix}/lib \
25                        --with-neon=${prefix} --with-apr=${prefix} \
26                        --with-apr-util=${prefix} --without-apxs \
27                        --mandir=\\\${prefix}/share/man
28
29post-configure  {reinplace "s|need_relink=yes|need_relink=no|g" \
30                        ${worksrcpath}/libtool}
31
32variant mod_dav_svn     {depends_build path:${prefix}/apache2/bin/apxs:apache2
33                                configure.args-append \
34                                        --with-apxs=${prefix}/apache2/bin/apxs \
35                                        --disable-mod-activation
36                                configure.args-delete --without-apxs}