On Thu, Sep 13, 2007 at 12:18:30PM -0700, Roland Philippsen wrote:
> However, in order to install the -ap2 sub-package, I had to specify
> the FLAVOR and the SUBPACKGE like so:
>
> $ env FLAVOR=ap2 SUBPACKAGE=-ap2 make install
That's exactly right.
>From bsd.port.mk(5), the target you're looking for is install-all to
install all subpackages:
install-all Install all packages in a multi-packages port.
"install" only installs the -main subpackage.
Or, make it two steps:
1. FLAVOR=ap2 make package
2. pkg_add /usr/ports/packages/`arch -s`/all/ap2-mod_fastcgi
-ME