p5-subversion

If you look at the top of the Makefile of p5-subversion you'll see this:
Code:
.if defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == 18
MASTERDIR=      ${.CURDIR}/../../devel/subversion18
.else                       
MASTERDIR=      ${.CURDIR}/../../devel/subversion
.endif                                  
PKGDIR=         ${.CURDIR}
This basically means it's a so-called slave port with devel/subversion being the "master". A slave port usually only deals with a certain set of options while the rest of the options are set in the "master" port.
 
Back
Top