On Tue, Dec 21, 2010 at 09:50:50AM -0600, J Sisson wrote:
> Hi,
>
> I'm creating a port for umurmur (BSD license), and I noted that it contains
> protobuf-c library code (apache 2.0 license).
>
> My question is how do I set the license information in the port's master
> Makefile? I currently have:
>
> # BSD
> PERMIT_PACKAGE_CDROM = Yes
> PERMIT_PACKAGE_FTP = Yes
> PERMIT_DISTFILES_CDROM =Yes
> PERMIT_DISTFILES_FTP = Yes
>
> Is this sufficient, or do I need more detail to cover the library code here?
The PERMIT_* should be set for the least permissive license. In this
case, Yes is still fine, but I'd do
# BSD and Apache 2.0 (see src/protobuf.c)
or something along those lines.
Joachim