1 | # $Id: Portfile,v 1.18 2004/01/19 22:32:01 matt Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name subversion |
---|
5 | version 0.37.0 |
---|
6 | categories devel |
---|
7 | maintainers dluke@geeklair.net |
---|
8 | description a cvs like version control system, but without the suck |
---|
9 | |
---|
10 | long_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 | |
---|
14 | homepage http://subversion.tigris.org/ |
---|
15 | master_sites http://svn.collab.net/tarballs/ |
---|
16 | checksums md5 048c4d17d5880dc8f3699020eac56224 |
---|
17 | |
---|
18 | depends_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 | |
---|
22 | patchfiles patch-Makefile.in |
---|
23 | |
---|
24 | configure.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 | |
---|
29 | post-configure {reinplace "s|need_relink=yes|need_relink=no|g" \ |
---|
30 | ${worksrcpath}/libtool} |
---|
31 | |
---|
32 | variant 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} |
---|