2014-10-07 05:32:53 -04:00
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# handle dependency on gperf
|
|
|
|
#
|
|
|
|
# Feature: gperf
|
|
|
|
# Usage: USES=gperf
|
|
|
|
#
|
|
|
|
# Take no arguments
|
|
|
|
|
2014-10-07 12:45:30 -04:00
|
|
|
.if !defined(_INCLUDE_USES_GPERF_MK)
|
2014-10-07 05:32:53 -04:00
|
|
|
_INCLUDE_USES_GPERF_MK= yes
|
|
|
|
|
|
|
|
.if !exists(/usr/bin/gperf)
|
2016-03-26 21:23:25 -04:00
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/bin/gperf:devel/gperf
|
2014-10-07 05:32:53 -04:00
|
|
|
GPERF= ${LOCALBASE}/bin/gperf
|
|
|
|
.else
|
|
|
|
_GPERF_VERSION!= /usr/bin/gperf --version | head -1 || true
|
|
|
|
_GPERF_MAJ_VERSION= ${_GPERF_VERSION:M[0-9].[0-9].[0-9]:C/.*([0-9]).[0-9].[0-9].*/\1/g}
|
|
|
|
|
|
|
|
.if empty(_GPERF_MAJ_VERSION)
|
|
|
|
_GPERF_MAJ_VERSION= 0
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${_GPERF_MAJ_VERSION} < 3
|
2016-03-26 21:23:25 -04:00
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/bin/gperf:devel/gperf
|
2014-10-07 05:32:53 -04:00
|
|
|
GPERF= ${LOCALBASE}/bin/gperf
|
|
|
|
.else
|
|
|
|
GPERF= /usr/bin/gperf
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
|
|
|
CONFIGURE_ENV+= GPERF=${GPERF}
|
|
|
|
MAKE_ENV+= GPERF=${GPERF}
|
|
|
|
|
|
|
|
.endif
|