2012-05-23 08:17:49 +00:00
#-*- tab-width: 4; -*-
2010-05-25 00:25:02 +00:00
# ex:ts=4
#
# $FreeBSD$
2011-03-17 14:29:58 +00:00
2014-06-19 05:54:02 +00:00
# ** Please run changes to this file by eadler@ first **
2011-03-17 14:29:58 +00:00
Licenses_Include_MAINTAINER = portmgr@FreeBSD.org
2010-05-25 00:25:02 +00:00
#
# bsd.licenses.mk - License auditing framework.
#
# Created by: Alejandro Pulver <alepulver@FreeBSD.org>
#
# Please view me with 4 column tabs!
#
# TODO:
# - Bring back save and checksum with new dialog interface (only offers to do
# so if ran by root, otherwise silently remove the options). Also only allow
# saving per-port options (known or unknown), and only when accepted.
# - Add custom restriction targets for better integration (now some files are
# removed from FTP if restricted for CDROM for example, as the old
# behavior).
# The following cases are not considered:
#
# - Redistribution of modified distfiles, because is never done.
# - Creating binaries from modified sources, because packages almost always
# contain modifications to the source, can not be autodetected (i.e.
# patch-* in ${FILESDIR}, post-* targets, etc), and these licenses tend to
# have more restrictions anyways.
#
# Integration with target sequences
#
# _SANITY_SEQ+= check-license (after check-vulnerable)
# _PATCH_SEQ+= ask-license (before any other targets)
# _INSTALL_SUSEQ+= install-license (after install-desktop-entries)
#
# The 'check-license' target will determine if the license was accepted,
# rejected or has to be asked later to the user in 'ask-license' (by then
# licenses should be extracted). The 'install-license' target installs the
# applications' licenses, a general package license mentioning them, and a
# restriction report (to be used by ports, scripts and similar tools).
# Variables provided to the ports system and users in general, to modify the
# behavior of the framework
#
2010-08-20 12:15:02 +00:00
# DISABLE_LICENSES - Disable license auditing framework completely.
2010-05-25 00:25:02 +00:00
# NO_LICENSES_INSTALL - Do not install catalog, report and licenses.
# NO_LICENSES_DIALOGS - Disable interactive menus for asking licenses.
#NO_LICENSES_INSTALL= yes
#NO_LICENSES_DIALOGS= yes
# Variables provided to users (can be passed to make or set in /etc/make.conf)
#
# LICENSES_ACCEPTED - Accepted licenses.
# LICENSES_REJECTED - Rejected licenses.
# LICENSES_GROUPS_ACCEPTED - Accepted license groups.
# LICENSES_GROUPS_REJECTED - Rejected license groups.
# LICENSES_ASK - Require explicit user approval for all licenses not
# present in previous variables (for example, stock
# accepted licenses will ask confirmation).
#
# Variables provided to ports
#
# LICENSE - Code of license (short name).
# LICENSE_PERMS - Permissions; use "none" if empty.
# LICENSE_GROUPS - Groups the license belongs.
# LICENSE_NAME - Full license name (for the reports).
# LICENSE_FILE - Full path to license (or use LICENSE_TEXT).
# LICENSE_TEXT - Text to use as a license, useful when referencing to
# another place if it's not in the distfile.
# LICENSE_DISTFILES - Name of licensed files (defaults to ${_DISTFILES}).
# LICENSE_COMB - Set to "dual" or "multi", for OR/AND behavior
# (defaults to "single" if undefined, the common case)
#
# The following cases are supported after defining LICENSE:
#
# Case 1: license defined in the framework (aka "known").
#
# In this case the only allowed variables to set are LICENSE_FILE and
# LICENSE_DISTFILES. The rest are managed by the framework and are not allowed
# to change.
#
# Case 2: license only known by the port (aka "unknown").
#
# In this case LICENSE_{PERMS,NAME} are mandatory, in addition to
2014-05-18 01:57:57 +00:00
# either LICENSE_FILE or LICENSE_TEXT. Optional variable is
# LICENSE_GROUPS.
2010-05-25 00:25:02 +00:00
#
# Available components for LICENSE_PERMS:
2014-06-16 05:45:15 +00:00
# dist-mirror - Redistribution of distfile is permitted
# (like FTP mirroring; port is not RESTRICTED).
# dist-sell - Selling of distfile, e.g. on CD-ROM is permitted
# (port does not need to set NO_CDROM).
# pkg-mirror - Free redistribution of package is permitted
# (like FTP upload; port does not set NO_PACKAGE).
# pkg-sell - Selling of package is permitted, e.g. on CD-ROM.
# auto-accept - License is accepted by default, without presented
2012-03-13 17:01:54 +00:00
# agreement, unless the user defines LICENSES_ASK.
2010-05-25 00:25:02 +00:00
#
# Notes about permissions:
2014-06-16 05:45:15 +00:00
# - Permissions use a default-deny policy (e.g. not setting "dist-mirror"
# means it is automatically excluded).
2010-05-25 00:25:02 +00:00
# - Components can be negated by prefixing them with "no-" (like
# "no-pkg-sell").
# - In case a component is present and also excluded (i.e. no-dist-sell and
# dist-sell together in LICENSE_PERMS), it will be excluded.
# - XXX Currently there is no point in "no-" prefixes, as permissions are not
# inherited from groups. Maybe it looks more clear that way than leaving the
# variable empty?
#
# Dual/multiple licenses:
#
# If LICENSE_COMB is set to "dual", then LICENSE can (must, actually) have
# more than one component. After that each license "lic" in LICENSE falls in
# previous cases (known or unknown), but their variables are prefixed by
# _LICENSE_ and suffixed by _lic. The main license name, perms and groups will
# be set automatically (following appropiate logic). The idea is that any
# license from LICENSE can be chosen to use the package.
#
# The case when LICENSE_COMB is set to "multi" is similar. But the idea is
# that all of the licenses in LICENSE must be agreed to use the package.
#
. i f d e f i n e d ( _ P O S T M K I N C L U D E D ) & & ! d e f i n e d ( B E F O R E P O R T M K )
2011-03-31 03:37:14 +00:00
. i f d e f i n e d ( L I C E N S E )
2010-05-25 00:25:02 +00:00
# Include known licenses from database
. i n c l u d e "${PORTSDIR}/Mk/bsd.licenses.db.mk"
# Lists of variables and valid components
#
# _LICENSE_LIST_PERMS - Valid permission components
# _LICENSE_LIST_PORT_VARS - License variables defined by the port
_LICENSE_LIST_PERMS = dist-mirror dist-sell pkg-mirror pkg-sell auto-accept none
_LICENSE_LIST_PORT_VARS = PERMS NAME GROUPS
# Path variables
#
# _LICENSE_DIR - Directory to install licenses
2012-02-27 17:33:55 +00:00
# _LICENSE_STORE - Store for known license files
2010-05-25 00:25:02 +00:00
# _LICENSE_CATALOG - License catalog (make include file) to be created (dst)
# _LICENSE_CATALOG_TMP - Same as above, but in WRKDIR (src)
# _LICENSE_REPORT - License summary, shows licenses and how they are combined (dst)
# _LICENSE_REPORT_TMP - Same as above, but in WRKDIR (src)
# _LICENSE_COOKIE - Set when license is accepted, it is not present in
# bsd.port.mk to avoid creating LICENSE_{REQ,SEQ} for a
# few more targets only.
_LICENSE_DIR ?= ${ PREFIX } /share/licenses/${ PKGNAME }
2012-02-27 17:33:55 +00:00
_LICENSE_STORE ?= ${ PORTSDIR } /Templates/Licenses
2010-05-25 00:25:02 +00:00
_LICENSE_CATALOG ?= ${ _LICENSE_DIR } /catalog.mk
_LICENSE_CATALOG_TMP ?= ${ WRKDIR } /.license-catalog.mk
_LICENSE_REPORT ?= ${ _LICENSE_DIR } /LICENSE
_LICENSE_REPORT_TMP ?= ${ WRKDIR } /.license-report
_LICENSE_COOKIE ?= ${ WRKDIR } /.license_done.${ PORTNAME } .${ PREFIX : S / \/ /_/g }
# Defaults (never overriden for now)
#
# _LICENSE - Copy of LICENSE (for now)
# _LICENSE_COMB - Copy of LICENSE_COMB (but "single" instead of empty)
_LICENSE ?= ${ LICENSE }
. i f ! d e f i n e d ( L I C E N S E _ C O M B )
_LICENSE_COMB = single
. e l s e
_LICENSE_COMB = ${ LICENSE_COMB }
. e n d i f
# Check if single or dual/multiple license
#
# Make sure LICENSE_COMB is only used with more than one license.
. i f ${_LICENSE_COMB} != "single" && ${ _LICENSE_COMB } != "dual" && ${ _LICENSE_COMB } != "multi"
_LICENSE_ERROR ?= invalid value for LICENSE_COMB: " ${ _LICENSE_COMB } " ( should be "single" , "dual" or "multi" )
. e n d i f
. f o r l i c i n $ { _ L I C E N S E }
. i f d e f i n e d ( _ L I C E N S E _ D E F I N E D )
. i f ${_LICENSE_COMB} = = "single"
_LICENSE_ERROR ?= multiple licenses in LICENSE, but LICENSE_COMB is set to "single" ( or undefined)
. e l s e
_LICENSE_MULTI = yes
. e n d i f
. e l s e
_LICENSE_DEFINED = yes
. e n d i f
. e n d f o r
. i f ${_LICENSE_COMB} != "single" && !defined( _LICENSE_MULTI)
_LICENSE_ERROR ?= single license in LICENSE, but LICENSE_COMB is set to " ${ _LICENSE_COMB } " ( requires more than one)
. e n d i f
. i f ! d e f i n e d ( _ L I C E N S E _ D E F I N E D )
_LICENSE_ERROR ?= no licenses present in LICENSE ( empty string)
. e n d i f
. u n d e f _ L I C E N S E _ D E F I N E D
. u n d e f _ L I C E N S E _ M U L T I
# Evaluate port license groups and permissions
#
# Available values for _LICENSE_TYPE:
#
# Case 1: "known" (license info taken from internal database)
# Case 2: "unknown" (LICENSE is not known, and info taken from port)
#
# Make sure required variables are defined, and remove conflicting (positive
# and negative) duplicated components.
. i f ${_LICENSE_COMB} = = "single"
# Defaults to empty
_LICENSE_GROUPS ?= #
# Start
. f o r l i c i n $ { _ L I C E N S E }
. if ${_LICENSE_LIST : M ${lic }} != ""
# Case 1: license defined in the framework.
_LICENSE_TYPE = known
. f o r v a r i n $ { _ L I C E N S E _ L I S T _ P O R T _ V A R S }
. i f d e f i n e d ( L I C E N S E _ $ { v a r } )
_LICENSE_ERROR ?= redefining LICENSE_${ var } is not allowed for known licenses, to define a custom license try another LICENSE name like ${ _LICENSE } -variant
. e n d i f
. i f ! d e f i n e d ( _ L I C E N S E _ $ { v a r } _ $ { l i c } )
2010-05-26 02:20:27 +00:00
_LICENSE_ERROR ?= ERROR: missing _LICENSE_${ var } _${ lic } in bsd.licenses.db.mk
2010-05-25 00:25:02 +00:00
. e l s e
_LICENSE_${var} = ${ _LICENSE_ ${ var } _ ${ lic } }
. e n d i f
. e n d f o r
# Check for LICENSE_FILE or at least LICENSE_TEXT (which simulates it)
. i f ! d e f i n e d ( L I C E N S E _ F I L E )
. i f ! d e f i n e d ( L I C E N S E _ T E X T )
2012-02-27 17:33:55 +00:00
. i f e x i s t s ( $ { _ L I C E N S E _ S T O R E } / $ { l i c } )
_LICENSE_FILE = ${ _LICENSE_STORE } /${ lic }
. e l s e
# No license file in /usr/ports/Templates/Licenses
2010-05-25 00:25:02 +00:00
_LICENSE_TEXT = The license: ${ _LICENSE } ( ${ _LICENSE_NAME } ) is standard, please read from the web.
_LICENSE_FILE = ${ WRKDIR } /${ lic }
2012-02-27 17:33:55 +00:00
. e n d i f
2010-05-25 00:25:02 +00:00
. e l s e
_LICENSE_ERROR ?= defining LICENSE_TEXT is not allowed for known licenses
. e n d i f
. e l s e
_LICENSE_FILE = ${ LICENSE_FILE }
. e n d i f
. e l s e
# Case 2: license only known by the port.
_LICENSE_TYPE = unknown
. f o r v a r i n $ { _ L I C E N S E _ L I S T _ P O R T _ V A R S }
. i f d e f i n e d ( L I C E N S E _ $ { v a r } )
_LICENSE_${var} = ${ LICENSE_ ${ var } }
. e l i f ! d e f i n e d ( _ L I C E N S E _ $ { v a r } )
_LICENSE_ERROR ?= for unknown licenses, defining LICENSE_${ var } is mandatory ( otherwise use a known LICENSE)
. e n d i f
. e n d f o r
# Check LICENSE_PERMS for invalid, ambiguous and duplicate components
__LICENSE_PERMS := #
. f o r c o m p i n $ { _ L I C E N S E _ P E R M S }
. if ${_LICENSE_LIST_PERMS : M ${comp :C /^no -//}} == ""
_LICENSE_ERROR ?= invalid LICENSE_PERMS component " ${ comp } "
. elif ${__LICENSE_PERMS : M ${comp }} == "" && \
${ _LICENSE_PERMS : Mno - ${ comp : C /^no-// } } = = ""
__LICENSE_PERMS += ${ comp }
. e n d i f
. e n d f o r
_LICENSE_PERMS := ${ __LICENSE_PERMS }
. u n d e f _ _ L I C E N S E _ P E R M S
# Check for LICENSE_FILE or at least LICENSE_TEXT (which simulates it)
. i f ! d e f i n e d ( L I C E N S E _ F I L E )
. i f ! d e f i n e d ( L I C E N S E _ T E X T )
_LICENSE_ERROR ?= either LICENSE_FILE or LICENSE_TEXT must be defined
. e l s e
_LICENSE_TEXT = ${ LICENSE_TEXT }
_LICENSE_FILE = ${ WRKDIR } /${ lic }
. e n d i f
. e l s e
_LICENSE_FILE = ${ LICENSE_FILE }
. e n d i f
. e n d i f
# Only one is allowed
. i f d e f i n e d ( L I C E N S E _ F I L E ) & & d e f i n e d ( L I C E N S E _ T E X T )
_LICENSE_ERROR ?= defining both LICENSE_FILE and LICENSE_TEXT is not allowed
. e n d i f
# Distfiles
. i f ! d e f i n e d ( L I C E N S E _ D I S T F I L E S )
_LICENSE_DISTFILES = ${ _DISTFILES }
. e l s e
_LICENSE_DISTFILES = ${ LICENSE_DISTFILES }
. e n d i f
. e n d f o r
. e l s e
. f o r l i c i n $ { _ L I C E N S E }
# Defaults to empty
_LICENSE_GROUPS_${lic} ?= #
. if ${_LICENSE_LIST : M ${lic }} != ""
# Case 1: license defined in the framework.
_LICENSE_TYPE_${lic} = known
. f o r v a r i n $ { _ L I C E N S E _ L I S T _ P O R T _ V A R S }
. i f d e f i n e d ( L I C E N S E _ $ { v a r } _ $ { l i c } )
_LICENSE_ERROR ?= redefining LICENSE_${ var } _${ lic } is not allowed for known licenses, to define a custom license try another LICENSE name for ${ lic } like ${ lic } -variant
. e n d i f
. i f ! d e f i n e d ( _ L I C E N S E _ $ { v a r } _ $ { l i c } )
2010-05-26 02:20:27 +00:00
_LICENSE_ERROR ?= ERROR: missing _LICENSE_${ var } _${ lic } in bsd.licenses.db.mk
2010-05-25 00:25:02 +00:00
. e n d i f
. e n d f o r
# Check for LICENSE_FILE or at least LICENSE_TEXT (which simulates it)
. i f ! d e f i n e d ( L I C E N S E _ F I L E _ $ { l i c } )
. i f ! d e f i n e d ( L I C E N S E _ T E X T _ $ { l i c } )
2012-02-27 17:33:55 +00:00
. i f e x i s t s ( $ { _ L I C E N S E _ S T O R E } / $ { l i c } )
_LICENSE_FILE_${lic} = ${ _LICENSE_STORE } /${ lic }
. e l s e
# No license file in /usr/ports/Templates/Licenses
2010-05-25 00:25:02 +00:00
_LICENSE_TEXT_${lic} = The license: ${ lic } ( ${ _LICENSE_NAME_ ${ lic } } ) is standard, please read from the web.
_LICENSE_FILE_${lic} = ${ WRKDIR } /${ lic }
2012-02-27 17:33:55 +00:00
. e n d i f
2010-05-25 00:25:02 +00:00
. e l s e
2012-02-27 17:33:55 +00:00
_LICENSE_ERROR ?= defining LICENSE_TEXT_${ lic } is not allowed for known licenses
2010-05-25 00:25:02 +00:00
. e n d i f
. e l s e
_LICENSE_FILE_${lic} = ${ LICENSE_FILE_ ${ lic } }
. e n d i f
. e l s e
# Case 2: license only known by the port.
_LICENSE_TYPE_${lic} = unknown
. f o r v a r i n $ { _ L I C E N S E _ L I S T _ P O R T _ V A R S }
. i f d e f i n e d ( L I C E N S E _ $ { v a r } _ $ { l i c } )
_LICENSE_${var}_${lic} = ${ LICENSE_ ${ var } _ ${ lic } }
. e l i f ! d e f i n e d ( _ L I C E N S E _ $ { v a r } _ $ { l i c } )
_LICENSE_ERROR ?= for unknown licenses, defining LICENSE_${ var } _${ lic } is mandatory ( otherwise use a known LICENSE)
. e n d i f
. e n d f o r
# Check LICENSE_PERMS for invalid, ambiguous and duplicate components
__LICENSE_PERMS := #
. f o r c o m p i n $ { _ L I C E N S E _ P E R M S _ $ { l i c } }
. if ${_LICENSE_LIST_PERMS : M ${comp :C /^no -//}} == ""
_LICENSE_ERROR ?= invalid LICENSE_PERMS_${ var } component " ${ comp } "
. elif ${__LICENSE_PERMS : M ${comp }} == "" && \
${ _LICENSE_PERMS_ ${ lic } : Mno - ${ comp : C /^no-// } } = = ""
__LICENSE_PERMS += ${ comp }
. e n d i f
. e n d f o r
_LICENSE_PERMS_${lic} := ${ __LICENSE_PERMS }
. u n d e f _ _ L I C E N S E _ P E R M S
# Check for LICENSE_FILE or at least LICENSE_TEXT (which simulates it)
. i f ! d e f i n e d ( L I C E N S E _ F I L E _ $ { l i c } )
. i f ! d e f i n e d ( L I C E N S E _ T E X T _ $ { l i c } )
_LICENSE_ERROR ?= either LICENSE_FILE_${ lic } or LICENSE_TEXT_${ lic } must be defined
. e l s e
_LICENSE_TEXT_${lic} = ${ LICENSE_TEXT_ ${ lic } }
_LICENSE_FILE_${lic} = ${ WRKDIR } /${ lic }
. e n d i f
. e l s e
_LICENSE_FILE_${lic} = ${ LICENSE_FILE_ ${ lic } }
. e n d i f
. e n d i f
# Only one is allowed
. i f d e f i n e d ( L I C E N S E _ F I L E _ $ { l i c } ) & & d e f i n e d ( L I C E N S E _ T E X T _ $ { l i c } )
_LICENSE_ERROR ?= defining both LICENSE_FILE_${ lic } and LICENSE_TEXT_${ lic } is not allowed
. e n d i f
# Distfiles
. i f ! d e f i n e d ( L I C E N S E _ D I S T F I L E S _ $ { l i c } )
_LICENSE_DISTFILES_${lic} = ${ _DISTFILES }
. e l s e
_LICENSE_DISTFILES_${lic} = ${ LICENSE_DISTFILES_ ${ lic } }
. e n d i f
. e n d f o r
. e n d i f
# Check if the user agrees with the license
# Make sure these are defined
LICENSES_ACCEPTED ?= #
LICENSES_REJECTED ?= #
LICENSES_GROUPS_ACCEPTED ?= #
LICENSES_GROUPS_REJECTED ?= #
# Evaluate per-license status
. i f ${_LICENSE_COMB} = = "single"
. f o r l i c i n $ { _ L I C E N S E }
. if ${LICENSES_REJECTED : M ${lic }} != ""
_LICENSE_STATUS ?= rejected
. e n d i f
. f o r g r o u p i n $ { _ L I C E N S E _ G R O U P S }
. if ${LICENSES_GROUPS_REJECTED : M ${group }} != ""
_LICENSE_STATUS ?= rejected
. e n d i f
. if ${LICENSES_GROUPS_ACCEPTED : M ${group }} != ""
_LICENSE_STATUS ?= accepted
. e n d i f
. e n d f o r
. if ${LICENSES_ACCEPTED : M ${lic }} != ""
_LICENSE_STATUS ?= accepted
. e n d i f
. if ${_LICENSE_PERMS : Mauto -accept } != "" && !defined (LICENSES_ASK )
_LICENSE_STATUS ?= accepted
. e n d i f
_LICENSE_STATUS ?= ask
. e n d f o r
. e l s e
. f o r l i c i n $ { _ L I C E N S E }
. if ${LICENSES_REJECTED : M ${lic }} != ""
_LICENSE_STATUS_${lic} ?= rejected
. e n d i f
. f o r g r o u p i n $ { _ L I C E N S E _ G R O U P S _ $ { l i c } }
. if ${LICENSES_GROUPS_REJECTED : M ${group }} != ""
_LICENSE_STATUS_${lic} ?= rejected
. e n d i f
. if ${LICENSES_GROUPS_ACCEPTED : M ${group }} != ""
_LICENSE_STATUS_${lic} ?= accepted
. e n d i f
. e n d f o r
. if ${LICENSES_ACCEPTED : M ${lic }} != ""
_LICENSE_STATUS_${lic} ?= accepted
. e n d i f
. if ${_LICENSE_PERMS_${lic} : Mauto -accept } != "" && !defined (LICENSES_ASK )
_LICENSE_STATUS_${lic} ?= accepted
. e n d i f
_LICENSE_STATUS_${lic} ?= ask
. e n d f o r
. e n d i f
# Evaluate general status
. i f ${_LICENSE_COMB} = = "dual"
. f o r l i c i n $ { _ L I C E N S E }
. i f ${_LICENSE_STATUS_${lic}} = = "accepted"
_LICENSE_STATUS = accepted
. e l i f ${_LICENSE_STATUS_${lic}} = = "ask"
_LICENSE_STATUS ?= ask
_LICENSE_TO_ASK += ${ lic }
. e n d i f
_LICENSE_STATUS ?= rejected
. e n d f o r
. e l i f ${_LICENSE_COMB} = = "multi"
. f o r l i c i n $ { _ L I C E N S E }
. i f ${_LICENSE_STATUS_${lic}} = = "rejected"
_LICENSE_STATUS = rejected
. e l i f ${_LICENSE_STATUS_${lic}} = = "ask"
_LICENSE_STATUS ?= ask
_LICENSE_TO_ASK += ${ lic }
. e n d i f
. e n d f o r
_LICENSE_STATUS ?= accepted
. e n d i f
# For dual/multi licenses, after processing all sub-licenses, the following
# must be determined: _LICENSE_NAME, _LICENSE_PERMS and _LICENSE_GROUPS.
. i f ${_LICENSE_COMB} = = "dual"
_LICENSE_NAME = Dual ( any of) : ${ _LICENSE }
# Calculate least restrictive permissions (union)
_LICENSE_PERMS := #
. f o r l i c i n $ { _ L I C E N S E }
. f o r c o m p i n $ { _ L I C E N S E _ L I S T _ P E R M S }
. if ${_LICENSE_PERMS_${lic} : M ${comp }} != "" && \
${ _LICENSE_PERMS : M ${ comp } } = = ""
_LICENSE_PERMS += ${ comp }
. e n d i f
. e n d f o r
. e n d f o r
# Calculate least restrictive groups (union)
_LICENSE_GROUPS := #
. f o r l i c i n $ { _ L I C E N S E }
. f o r c o m p i n $ { _ L I C E N S E _ L I S T _ G R O U P S }
. if ${_LICENSE_GROUPS_${lic} : M ${comp }} != "" && \
${ _LICENSE_GROUPS : M ${ comp } } = = ""
_LICENSE_GROUPS += ${ comp }
. e n d i f
. e n d f o r
. e n d f o r
. e l i f ${_LICENSE_COMB} = = "multi"
_LICENSE_NAME = Multiple ( all of) : ${ _LICENSE }
# Calculate most restrictive permissions (intersection)
_LICENSE_PERMS := ${ _LICENSE_LIST_PERMS }
. f o r l i c i n $ { _ L I C E N S E }
. f o r c o m p i n $ { _ L I C E N S E _ L I S T _ P E R M S }
. if ${_LICENSE_PERMS_${lic} : M ${comp }} == ""
_LICENSE_PERMS := ${ _LICENSE_PERMS : N ${ comp } }
. e n d i f
. e n d f o r
. e n d f o r
# Calculate most restrictive groups (intersection)
_LICENSE_GROUPS := ${ _LICENSE_LIST_GROUPS }
. f o r l i c i n $ { _ L I C E N S E }
. f o r c o m p i n $ { _ L I C E N S E _ L I S T _ G R O U P S }
. if ${_LICENSE_GROUPS_${lic} : M ${comp }} == ""
_LICENSE_GROUPS := ${ _LICENSE_GROUPS : N ${ comp } }
. e n d i f
. e n d f o r
. e n d f o r
. e n d i f
# Prepare information for asking license to the user
. i f ${_LICENSE_STATUS} = = "ask" && ${ _LICENSE_COMB } != "single"
2011-03-31 03:37:14 +00:00
_LICENSE_ASK_DATA != mktemp -ut portslicense
2010-05-25 00:25:02 +00:00
. e n d i f
# Calculate restrictions and set RESTRICTED_FILES when
# appropiate, together with cleaning targets.
#
# XXX For multiple licenses restricted distfiles are always removed from both
# CDROM and FTP, but the current framework supports separating them (would
# require better/new delete-package and delete-distfiles targets)
.if ${_LICENSE_PERMS : Mpkg -mirror } == ""
_LICENSE_RESTRICTED += delete-package
.elif ${_LICENSE_PERMS : Mpkg -sell } == ""
_LICENSE_CDROM += delete-package
. e n d i f
. i f ${_LICENSE_COMB} = = "multi"
. f o r l i c i n $ { _ L I C E N S E }
. if ${_LICENSE_PERMS_${lic} : Mdist -mirror } == "" | | ${_LICENSE_PERMS_ ${lic }:Mdist -sell } == ""
RESTRICTED_FILES += ${ _LICENSE_DISTFILES_ ${ lic } }
. e n d i f
. e n d f o r
. i f d e f i n e d ( R E S T R I C T E D _ F I L E S )
RESTRICTED_FILES += ${ _PATCHFILES }
_LICENSE_RESTRICTED += delete-distfiles
_LICENSE_CDROM += delete-distfiles
. e n d i f
. e l s e
. if ${_LICENSE_PERMS : Mdist -mirror } == ""
_LICENSE_RESTRICTED += delete-distfiles
RESTRICTED_FILES = ${ _PATCHFILES } ${ _DISTFILES }
. elif ${_LICENSE_PERMS : Mdist -sell } == ""
_LICENSE_CDROM += delete-distfiles
RESTRICTED_FILES = ${ _PATCHFILES } ${ _DISTFILES }
. e n d i f
. e n d i f
. i f d e f i n e d ( _ L I C E N S E _ R E S T R I C T E D )
2014-08-21 18:08:00 +00:00
# _LICENSE_RESTRICTED contains 'delete-distfiles' and 'delete-package' if
# needed with RESTRICTED_FILES filled from above.
2010-05-25 00:25:02 +00:00
clean-restricted : ${_LICENSE_RESTRICTED }
clean-restricted-list : ${_LICENSE_RESTRICTED :C /$/-list /}
. e l s e
clean-restricted :
clean-restricted-list :
. e n d i f
. i f d e f i n e d ( _ L I C E N S E _ C D R O M )
clean-for-cdrom : ${_LICENSE_CDROM }
clean-for-cdrom-list : ${_LICENSE_CDROM :C /$/-list /}
. e l s e
clean-for-cdrom :
clean-for-cdrom-list :
. e n d i f
# Check variables are correctly defined and print status up to here
2012-06-26 15:27:54 +00:00
. i f ${_LICENSE_STATUS} = = "ask" && defined( BATCH)
IGNORE = License ${ _LICENSE } needs confirmation, but BATCH is defined
. e n d i f
2010-05-25 00:25:02 +00:00
check-license :
. i f d e f i n e d ( _ L I C E N S E _ E R R O R )
@${ ECHO_MSG } " ===> License not correctly defined: ${ _LICENSE_ERROR } "
@exit 1
. e n d i f
2012-06-26 15:27:54 +00:00
. i f ${_LICENSE_STATUS} = = "rejected"
2011-01-07 01:29:45 +00:00
@${ ECHO_MSG } " ===> License ${ _LICENSE } rejected by the user "
2010-05-25 00:25:02 +00:00
@${ ECHO_MSG }
@${ ECHO_MSG } " If you want to install this port make sure the following license(s) are not present in LICENSES_REJECTED, either in make arguments or /etc/make.conf: ${ _LICENSE } . Also check LICENSES_GROUPS_REJECTED in case they contain a group this license(s) belong to. " | ${ FMT }
@${ ECHO_MSG }
@exit 1
2012-06-26 15:27:54 +00:00
. e l i f ${_LICENSE_STATUS} = = "accepted"
2011-01-07 01:29:45 +00:00
@${ ECHO_MSG } " ===> License ${ _LICENSE } accepted by the user "
2012-06-26 15:27:54 +00:00
. e l i f ${_LICENSE_STATUS} = = "ask"
2011-01-07 01:29:45 +00:00
@${ ECHO_MSG } " ===> License ${ _LICENSE } needs confirmation, will ask later "
2012-06-26 15:27:54 +00:00
. e n d i f
2010-05-25 00:25:02 +00:00
# Display, ask and save preference if requested
ask-license : ${_LICENSE_COOKIE }
${_LICENSE_COOKIE} :
# Make sure all required license files exist
. i f ${_LICENSE_COMB} = = "single"
. i f ! d e f i n e d ( L I C E N S E _ F I L E ) & & d e f i n e d ( _ L I C E N S E _ T E X T )
@test -f ${ _LICENSE_FILE } || ${ ECHO_CMD } " ${ _LICENSE_TEXT } " | ${ FMT } > ${ _LICENSE_FILE }
. e n d i f
@test -f ${ _LICENSE_FILE } || \
( ${ ECHO_MSG } " ===> Missing license file for ${ _LICENSE } in ${ _LICENSE_FILE } " ; exit 1)
. e l s e
. f o r l i c i n $ { _ L I C E N S E }
. i f ! d e f i n e d ( L I C E N S E _ F I L E _ $ { l i c } ) & & d e f i n e d ( _ L I C E N S E _ T E X T _ $ { l i c } )
@test -f ${ _LICENSE_FILE_ ${ lic } } || ${ ECHO_CMD } " ${ _LICENSE_TEXT_ ${ lic } } " | ${ FMT } > ${ _LICENSE_FILE_ ${ lic } }
. e n d i f
@test -f ${ _LICENSE_FILE_ ${ lic } } || \
( ${ ECHO_MSG } " ===> Missing license file for ${ lic } in ${ _LICENSE_FILE_ ${ lic } } " ; exit 1)
. e n d f o r
. e n d i f
. i f ${_LICENSE_STATUS} = = "ask"
. i f ! d e f i n e d ( N O _ L I C E N S E S _ D I A L O G S )
# Dialog interface
. i f ${_LICENSE_COMB} = = "single"
2012-02-27 17:33:55 +00:00
@trap '${RM} -f $$tmpfile' EXIT INT TERM; \
2011-03-31 03:37:14 +00:00
tmpfile = $$ ( mktemp -t portlicenses) ; \
while true; do \
2010-05-25 00:25:02 +00:00
${ DIALOG } --menu " License for ${ PKGNAME } ( ${ _LICENSE } ) " 21 70 15 accept "Accept license" reject "Reject license" view "View license" 2>" $$ {tmpfile} " ; \
result = ` ${ CAT } $$ { tmpfile} ` ; \
case $$ { result} in \
accept) break ; ; \
reject) exit 1; ; \
view) ${ DIALOG } --textbox " ${ _LICENSE_FILE } " 21 75 ; ; \
esac ; \
done
. e l i f ${_LICENSE_COMB} = = "dual"
@${ RM } -f ${ _LICENSE_ASK_DATA }
. f o r l i c i n $ { _ L I C E N S E _ T O _ A S K }
@${ ECHO_CMD } " ${ lic } : ${ _LICENSE_FILE_ ${ lic } } " >> ${ _LICENSE_ASK_DATA }
. e n d f o r
2012-02-27 17:33:55 +00:00
@menu_cmd= " ${ DIALOG } --hline \"This port requires you to accept at least one license\" --menu \"License for ${ PKGNAME } (dual)\" 21 70 15 " ; \
2011-03-31 03:37:14 +00:00
trap '${RM} -f $$tmpfile' EXIT INT TERM; \
2010-05-25 00:25:02 +00:00
tmpfile = $$ ( mktemp -t portlicenses) ; \
for lic in ${ _LICENSE_TO_ASK } ; do \
menu_cmd = " $$ {menu_cmd} VIEW_ $$ {lic} \"View the license $$ {lic}\" USE_ $$ {lic} \"Accept the license $$ {lic}\" " ; \
done ; \
menu_cmd = " $$ {menu_cmd} REJECT \"Reject the licenses (all)\" " ; \
while true; do \
${ SH } -c " $$ {menu_cmd} 2>\" $$ {tmpfile}\" " ; \
result = $$ ( ${ CAT } " $$ {tmpfile} " ) ; \
case $$ { result} in \
REJECT) exit 1; ; \
VIEW_*) name = $$ ( ${ ECHO_CMD } $$ { result} | ${ SED } -e 's/^VIEW_//' ) ; \
file = $$ ( ${ GREP } " ^ $$ {name}: " ${ _LICENSE_ASK_DATA } | ${ CUT } -d : -f 2) ; \
${ DIALOG } --textbox " $$ {file} " 21 75 ; ; \
USE_*) name = $$ ( ${ ECHO_CMD } $$ { result} | ${ SED } -e 's/^USE_//' ) ; \
${ ECHO_CMD } $$ { name} > ${ _LICENSE_COOKIE } ; \
break ; ; \
esac ; \
done
. e l i f ${_LICENSE_COMB} = = "multi"
@${ RM } -f ${ _LICENSE_ASK_DATA }
. f o r l i c i n $ { _ L I C E N S E _ T O _ A S K }
@${ ECHO_CMD } " ${ lic } : ${ _LICENSE_FILE_ ${ lic } } " >> ${ _LICENSE_ASK_DATA }
. e n d f o r
2012-02-27 17:33:55 +00:00
@menu_cmd= " ${ DIALOG } --hline \"This port requires you to accept all mentioned licenses\" --menu \"License for ${ PKGNAME } (multi)\" 21 70 15 " ; \
2011-03-31 03:37:14 +00:00
trap '${RM} -f $$tmpfile' EXIT INT TERM; \
2010-05-25 00:25:02 +00:00
tmpfile = $$ ( mktemp -t portlicenses) ; \
for lic in ${ _LICENSE_TO_ASK } ; do \
menu_cmd = " $$ {menu_cmd} VIEW_ $$ {lic} \"View the license $$ {lic}\" " ; \
done ; \
menu_cmd = " $$ {menu_cmd} ACCEPT \"Accept the licenses (all)\" REJECT \"Reject the licenses (all)\" " ; \
while true; do \
${ SH } -c " $$ {menu_cmd} 2>\" $$ {tmpfile}\" " ; \
result = $$ ( ${ CAT } " $$ {tmpfile} " ) ; \
case $$ { result} in \
ACCEPT) break ; ; \
REJECT) exit 1 ; ; \
VIEW_*) name = $$ ( ${ ECHO_CMD } $$ { result} | ${ SED } -e 's/^VIEW_//' ) ; \
file = $$ ( ${ GREP } " ^ $$ {name}: " ${ _LICENSE_ASK_DATA } | ${ CUT } -d : -f 2) ; \
${ DIALOG } --textbox " $$ {file} " 21 75 ; ; \
esac ; \
done
. e n d i f
. e l s e
# Text interface
@${ ECHO_MSG }
. i f ${_LICENSE_COMB} = = "single"
@${ ECHO_MSG } " To install the port you must agree to the license: ${ _LICENSE } ( ${ _LICENSE_NAME } ). " | ${ FMT }
@${ ECHO_MSG }
@${ ECHO_MSG } " You can view the license at ${ _LICENSE_FILE : S / ${ WRKDIR } \/ / ${ WRKDIR : T } \/ / } . "
. e l i f ${_LICENSE_COMB} = = "dual"
@${ ECHO_MSG } "To install the port you must agree to any of the following licenses:"
. e l i f ${_LICENSE_COMB} = = "multi"
@${ ECHO_MSG } "To install the port you must agree to all of the following licenses:"
. e n d i f
@${ ECHO_MSG }
. i f ${_LICENSE_COMB} != "single"
. f o r l i c i n $ { _ L I C E N S E _ T O _ A S K }
2014-05-25 13:39:16 +00:00
. i f d e f i n e d ( W R K D I R P R E F I X )
@${ ECHO_MSG } " - ${ lic } ( ${ _LICENSE_NAME_ ${ lic } } ), available at ${ _LICENSE_FILE_ ${ lic } } "
. e l s e
2010-05-25 00:25:02 +00:00
@${ ECHO_MSG } " - ${ lic } ( ${ _LICENSE_NAME_ ${ lic } } ), available at ${ _LICENSE_FILE_ ${ lic } : S / ${ WRKDIR } \/ / ${ WRKDIR : T } \/ / } "
2014-05-25 13:39:16 +00:00
. e n d i f
2010-05-25 00:25:02 +00:00
. e n d f o r
@${ ECHO_MSG }
. e n d i f
@${ ECHO_MSG } "If you agree with the corresponding license(s), add them to LICENSES_ACCEPTED either in make arguments or /etc/make.conf." | ${ FMT }
@${ ECHO_MSG }
@exit 1
. e n d i f
2011-03-31 03:37:14 +00:00
@${ RM } -f ${ _LICENSE_ASK_DATA }
2010-05-25 00:25:02 +00:00
. e n d i f
# Create report and catalog
. i f ! d e f i n e d ( N O _ L I C E N S E S _ I N S T A L L )
@${ RM } -f ${ _LICENSE_CATALOG_TMP } ${ _LICENSE_REPORT_TMP }
. i f ${_LICENSE_COMB} = = "single"
# Catalog
. f o r v a r i n _ L I C E N S E _ L I C E N S E _ N A M E _ L I C E N S E _ P E R M S _ L I C E N S E _ G R O U P S _ L I C E N S E _ D I S T F I L E S
@${ ECHO_CMD } " ${ var } = ${ ${ var } : C /^[[ : blank : ]]*// } " >> ${ _LICENSE_CATALOG_TMP }
. e n d f o r
# Report
@${ ECHO_CMD } " This package has a single license: ${ _LICENSE } ( ${ _LICENSE_NAME } ). " > ${ _LICENSE_REPORT_TMP }
. e l s e
# Catalog
. f o r v a r i n _ L I C E N S E _ L I C E N S E _ C O M B _ L I C E N S E _ N A M E _ L I C E N S E _ P E R M S _ L I C E N S E _ G R O U P S
@${ ECHO_CMD } " ${ var } = ${ ${ var } : C /^[[ : blank : ]]*// } " >> ${ _LICENSE_CATALOG_TMP }
. e n d f o r
. i f ${_LICENSE_COMB} = = "dual" && ${ _LICENSE_STATUS } = = "ask"
@${ SED } -e 's/^/_LICENSE_SELECTED=/' ${ _LICENSE_COOKIE } >> ${ _LICENSE_CATALOG_TMP }
. e n d i f
. f o r l i c i n $ { _ L I C E N S E }
. f o r v a r i n N A M E P E R M S G R O U P S D I S T F I L E S
@${ ECHO_CMD } " _LICENSE_ ${ var } _ ${ lic } = ${ _LICENSE_ ${ var } _ ${ lic } : C /^[[ : blank : ]]*// } " >> ${ _LICENSE_CATALOG_TMP }
. e n d f o r
. e n d f o r
# Report
. i f ${_LICENSE_COMB} = = "dual"
@${ ECHO_CMD } "This package has dual licenses (any of):" >> ${ _LICENSE_REPORT_TMP }
. e l i f ${_LICENSE_COMB} = = "multi"
@${ ECHO_CMD } "This package has multiple licenses (all of):" >> ${ _LICENSE_REPORT_TMP }
. e n d i f
. f o r l i c i n $ { _ L I C E N S E }
@${ ECHO_CMD } " - ${ lic } ( ${ _LICENSE_NAME_ ${ lic } } ) " >> ${ _LICENSE_REPORT_TMP }
. e n d f o r
. e n d i f
. e n d i f
# Cookie (done here)
@${ TOUCH } ${ _LICENSE_COOKIE }
# Package list entries, and installation
. i f ! d e f i n e d ( N O _ L I C E N S E S _ I N S T A L L )
2014-09-23 12:42:00 +00:00
PLIST_FILES += ${ _LICENSE_CATALOG } \
${ _LICENSE_REPORT }
2010-05-25 00:25:02 +00:00
. i f ${_LICENSE_COMB} = = "single"
2014-09-23 12:42:00 +00:00
PLIST_FILES += ${ _LICENSE_DIR } /${ _LICENSE }
2010-05-25 00:25:02 +00:00
. e l s e
. f o r l i c i n $ { _ L I C E N S E }
. i f d e f i n e d ( _ L I C E N S E _ F I L E _ $ { l i c } )
2014-09-23 12:42:00 +00:00
PLIST_FILES += ${ _LICENSE_DIR } /${ lic }
2010-05-25 00:25:02 +00:00
. e n d i f
. e n d f o r
. e n d i f
install-license :
Add support for staging area in the ports tree
The ports tree is now staged by default. With pkgng the sequence hasn't
changed, the main difference is that creating package is now independent
from installing it. With pkg_install, the package is now created first
and make install, do install the package.
New macros:
- STAGEDIR: PATH to the directory where the port will be staged.
- NO_STAGE: Keep the old behaviour of the ports tree (aka no staging area)
Unsupported macro if NO_STAGE is not set:
- MAN* with staging man page compression and handling of hardlinks and
symlinks is automatically done in the stage. the manpages becomes then a
"normal" plist files and should be tracked in pkg-plist.
- MANCOMPRESSED the compress-man target is able to only compress when it
needed.
New target:
- stage: this installs everything into the stage directory
- makeplist: this will create a pkg-plist and print it to stdout. This is
a sample plist and it should always be _reviewed_ not directly used.
NOTE: with staging only what is in the plist will be installed, nothing more,
meaning a port staged cannot have leftovers exect directories left. It is
really important to double check the pkg-plist to make sure all the files
the maintainer want to package are in! make makeplist can help in that area.
The goal is to handle as quickly as possible a full removal of the NO_STAGE
support.
More features can be added once the full ports tree is converted to using the
staging area
Conversion notes:
- Remove NO_STAGE
- in {pre,do,post}-install
* Before any usage of ${PREFIX}, ${ETCDIR}, ${PORTSDIR}, ${PORTEXAMPLES}
prepend ${STAGEDIR}
* Remove any thing that is done by @exec or +INSTALL script it will be
done automatically when syncing packages
* Remove any code to show PKG-MESSAGE it will be done automatically when
syncing packages
* Directory creation should remain in post-install (in particular because
pkgng doesn't work like pkg_install in that area and pkgng ignores the
@exec mkdir but directly pack the directory even if empty)
- PORTDOCS/PORTEXAMPELS
To support PORTDOCS, PORTEXAMPLES most of the time there is no more need
for hacks. just add the right %%PORTDOCS%% or %%PORTEXAMPLES%% in your
plist then the given files from the stagedir will or will not sync
according to NOPORTDOCS and NOPORTEXAMPLES.
With hat: portmgr
Reviewed by: bdrewery
2013-09-23 05:56:35 +00:00
@${ MKDIR } ${ STAGEDIR } ${ _LICENSE_DIR }
@${ INSTALL_DATA } ${ _LICENSE_CATALOG_TMP } ${ STAGEDIR } ${ _LICENSE_CATALOG }
@${ INSTALL_DATA } ${ _LICENSE_REPORT_TMP } ${ STAGEDIR } ${ _LICENSE_REPORT }
2010-05-25 00:25:02 +00:00
. i f ${_LICENSE_COMB} = = "single"
Add support for staging area in the ports tree
The ports tree is now staged by default. With pkgng the sequence hasn't
changed, the main difference is that creating package is now independent
from installing it. With pkg_install, the package is now created first
and make install, do install the package.
New macros:
- STAGEDIR: PATH to the directory where the port will be staged.
- NO_STAGE: Keep the old behaviour of the ports tree (aka no staging area)
Unsupported macro if NO_STAGE is not set:
- MAN* with staging man page compression and handling of hardlinks and
symlinks is automatically done in the stage. the manpages becomes then a
"normal" plist files and should be tracked in pkg-plist.
- MANCOMPRESSED the compress-man target is able to only compress when it
needed.
New target:
- stage: this installs everything into the stage directory
- makeplist: this will create a pkg-plist and print it to stdout. This is
a sample plist and it should always be _reviewed_ not directly used.
NOTE: with staging only what is in the plist will be installed, nothing more,
meaning a port staged cannot have leftovers exect directories left. It is
really important to double check the pkg-plist to make sure all the files
the maintainer want to package are in! make makeplist can help in that area.
The goal is to handle as quickly as possible a full removal of the NO_STAGE
support.
More features can be added once the full ports tree is converted to using the
staging area
Conversion notes:
- Remove NO_STAGE
- in {pre,do,post}-install
* Before any usage of ${PREFIX}, ${ETCDIR}, ${PORTSDIR}, ${PORTEXAMPLES}
prepend ${STAGEDIR}
* Remove any thing that is done by @exec or +INSTALL script it will be
done automatically when syncing packages
* Remove any code to show PKG-MESSAGE it will be done automatically when
syncing packages
* Directory creation should remain in post-install (in particular because
pkgng doesn't work like pkg_install in that area and pkgng ignores the
@exec mkdir but directly pack the directory even if empty)
- PORTDOCS/PORTEXAMPELS
To support PORTDOCS, PORTEXAMPLES most of the time there is no more need
for hacks. just add the right %%PORTDOCS%% or %%PORTEXAMPLES%% in your
plist then the given files from the stagedir will or will not sync
according to NOPORTDOCS and NOPORTEXAMPLES.
With hat: portmgr
Reviewed by: bdrewery
2013-09-23 05:56:35 +00:00
@${ INSTALL_DATA } ${ _LICENSE_FILE } ${ STAGEDIR } ${ _LICENSE_DIR } /${ _LICENSE }
2010-05-25 00:25:02 +00:00
. e l s e
. f o r l i c i n $ { _ L I C E N S E }
Add support for staging area in the ports tree
The ports tree is now staged by default. With pkgng the sequence hasn't
changed, the main difference is that creating package is now independent
from installing it. With pkg_install, the package is now created first
and make install, do install the package.
New macros:
- STAGEDIR: PATH to the directory where the port will be staged.
- NO_STAGE: Keep the old behaviour of the ports tree (aka no staging area)
Unsupported macro if NO_STAGE is not set:
- MAN* with staging man page compression and handling of hardlinks and
symlinks is automatically done in the stage. the manpages becomes then a
"normal" plist files and should be tracked in pkg-plist.
- MANCOMPRESSED the compress-man target is able to only compress when it
needed.
New target:
- stage: this installs everything into the stage directory
- makeplist: this will create a pkg-plist and print it to stdout. This is
a sample plist and it should always be _reviewed_ not directly used.
NOTE: with staging only what is in the plist will be installed, nothing more,
meaning a port staged cannot have leftovers exect directories left. It is
really important to double check the pkg-plist to make sure all the files
the maintainer want to package are in! make makeplist can help in that area.
The goal is to handle as quickly as possible a full removal of the NO_STAGE
support.
More features can be added once the full ports tree is converted to using the
staging area
Conversion notes:
- Remove NO_STAGE
- in {pre,do,post}-install
* Before any usage of ${PREFIX}, ${ETCDIR}, ${PORTSDIR}, ${PORTEXAMPLES}
prepend ${STAGEDIR}
* Remove any thing that is done by @exec or +INSTALL script it will be
done automatically when syncing packages
* Remove any code to show PKG-MESSAGE it will be done automatically when
syncing packages
* Directory creation should remain in post-install (in particular because
pkgng doesn't work like pkg_install in that area and pkgng ignores the
@exec mkdir but directly pack the directory even if empty)
- PORTDOCS/PORTEXAMPELS
To support PORTDOCS, PORTEXAMPLES most of the time there is no more need
for hacks. just add the right %%PORTDOCS%% or %%PORTEXAMPLES%% in your
plist then the given files from the stagedir will or will not sync
according to NOPORTDOCS and NOPORTEXAMPLES.
With hat: portmgr
Reviewed by: bdrewery
2013-09-23 05:56:35 +00:00
@${ INSTALL_DATA } ${ _LICENSE_FILE_ ${ lic } } ${ STAGEDIR } ${ _LICENSE_DIR } /${ lic }
2010-05-25 00:25:02 +00:00
. e n d f o r
. e n d i f
. e n d i f
2011-03-31 03:37:14 +00:00
. e l s e # !LICENSE
2010-05-25 00:25:02 +00:00
check-license :
2012-06-26 15:27:54 +00:00
. i f d e f i n e d ( L I C E N S E _ V E R B O S E )
2010-05-25 00:25:02 +00:00
@${ ECHO_MSG } "===> License check disabled, port has not defined LICENSE"
2012-06-26 15:27:54 +00:00
. e n d i f
2010-05-25 00:25:02 +00:00
. e n d i f # LICENSE
. e n d i f