# -*- mode: Makefile; tab-width: 4; -*- # ex: ts=4 # # bsd.local.mk - Sandbox for local modification to ports framework. # # Created by: Mark Linimon # # $FreeBSD: ports/Mk/bsd.local.mk,v 1.2 2006/12/10 18:15:33 linimon Exp $ # .if !defined(_POSTMKINCLUDED) && !defined(Local_Pre_Include) Local_Pre_Include= bsd.local.mk .if defined(STRIP_PERL5) PKGNAMESUFFIX := $(PKGNAMESUFFIX)+noperl . undef USE_PERL5 . undef USE_PERL5_BUILD . undef USE_PERL5_RUN .elif defined(STRIP_PERL5_BUILD) USE_PERL5_RUN := ${USE_PERL5} . undef USE_PERL5 . undef USE_PERL5_BUILD .elif defined(STRIP_PERL5_RUN) PKGNAMESUFFIX := $(PKGNAMESUFFIX)+noperl USE_PERL5_BUILD := ${USE_PERL5} . undef USE_PERL5 . undef USE_PERL5_RUN .endif .if defined(STRIP_PYTHON) PKGNAMESUFFIX := $(PKGNAMESUFFIX)+nopython . undef USE_PYTHON . undef USE_PYTHON_BUILD . undef USE_PYTHON_RUN .elif defined(STRIP_PYTHON_BUILD) USE_PYTHON_RUN := ${USE_PYTHON} . undef USE_PYTHON . undef USE_PYTHON_BUILD .elif defined(STRIP_PYTHON_RUN) PKGNAMESUFFIX := $(PKGNAMESUFFIX)+nopython USE_PYTHON_BUILD := ${USE_PYTHON} . undef USE_PYTHON . undef USE_PYTHON_RUN .endif # # Here is where any code that needs to run at bsd.port.pre.mk inclusion # time should live. # .endif # !defined(_POSTMKINCLUDED) && !defined(Local_Pre_Include) .if defined(_POSTMKINCLUDED) && !defined(Local_Post_Include) Local_Post_Include= bsd.local.mk # # here is where any code that needs to run at bsd.port.post.mk inclusion # time should live. # .endif # defined(_POSTMKINCLUDED) && !defined(Local_Post_Include)