Ticket #49823: Portfile-subversion.diff
File Portfile-subversion.diff, 1.3 KB (added by Schamschula (Marius Schamschula), 9 years ago) |
---|
-
Portfile
old new 4 4 5 5 name subversion 6 6 version 1.9.2 7 revision 1 7 8 categories devel 8 9 platforms darwin 9 10 maintainers geeklair.net:dluke blair … … 22 23 23 24 depends_lib port:expat \ 24 25 port:apr port:apr-util \ 25 port:db4 6port:sqlite3 \26 port:db48 port:sqlite3 \ 26 27 port:gettext port:libiconv \ 27 28 port:serf1 port:cyrus-sasl2 \ 28 29 port:libmagic port:libcomerr \ … … 39 40 post-patch { reinplace "s|__PREFIX__|${prefix}|" ${worksrcpath}/subversion/libsvn_subr/config_impl.h 40 41 } 41 42 42 configure.args --with-berkeley-db=:${prefix}/include/db4 6:${prefix}/lib/db46:db-4.6\43 configure.args --with-berkeley-db=:${prefix}/include/db48:${prefix}/lib/db48:db-4.8 \ 43 44 --with-apr=${prefix}/bin/apr-1-config \ 44 45 --with-apr-util=${prefix}/bin/apu-1-config --without-apxs \ 45 46 --mandir=\\\${prefix}/share/man \ … … 95 96 } 96 97 97 98 variant no_bdb description {Build without support for BerkeleyDB repositories} { 98 depends_lib-delete port:db4 699 configure.args-delete --with-berkeley-db=:${prefix}/include/db4 6:${prefix}/lib/db46:db-4.699 depends_lib-delete port:db48 100 configure.args-delete --with-berkeley-db=:${prefix}/include/db48:${prefix}/lib/db48:db-4.8 100 101 configure.args-append --without-berkeley-db 101 102 } 102 103