40c9c7f7eb
- Bump PORTREVISION of dependent ports for shlib change Changes: https://tiswww.case.edu/php/chet/readline/CHANGES PR: 236156 Exp-run by: antoine
25 lines
449 B
Makefile
25 lines
449 B
Makefile
# $FreeBSD$
|
|
#
|
|
# handle dependency on the readline port
|
|
#
|
|
# Feature: readline
|
|
# Usage: USES=readline
|
|
# Valid ARGS: port
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_READLINE_MK)
|
|
_INCLUDE_USES_READLINE_MK= yes
|
|
|
|
.if !exists(/usr/lib/libreadline.so)
|
|
readline_ARGS= port
|
|
.endif
|
|
|
|
.if ${readline_ARGS} == port
|
|
LIB_DEPENDS+= libreadline.so.8:devel/readline
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
.endif
|
|
|
|
.endif
|