d0b4c54eb6
built-in or not into a separate builtin.mk file. The code to deal checking for built-in software is much simpler to deal with in pkgsrc. The buildlink3.mk file for a package will be of the usual format regardless of the package, which makes it simpler for packagers to update a package. The builtin.mk file for a package must define a single yes/no variable USE_BUILTIN.<pkg> that is used by bsd.buildlink3.mk to decide whether to use the built-in software or to use the pkgsrc software.
26 lines
761 B
Makefile
26 lines
761 B
Makefile
# $NetBSD: buildlink3.mk,v 1.17 2004/03/10 17:57:14 jlam Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
READLINE_BUILDLINK3_MK:= ${READLINE_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= readline
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nreadline}
|
|
BUILDLINK_PACKAGES+= readline
|
|
|
|
.if !empty(READLINE_BUILDLINK3_MK:M+)
|
|
BUILDLINK_DEPENDS.readline+= readline>=2.2
|
|
BUILDLINK_PKGSRCDIR.readline?= ../../devel/readline
|
|
|
|
BUILDLINK_FILES.readline+= include/history.h
|
|
BUILDLINK_FILES.readline+= include/readline.h
|
|
|
|
BUILDLINK_TRANSFORM.readline= \
|
|
-e "s|include/history\.h|include/readline/history.h|g" \
|
|
-e "s|include/readline\.h|include/readline/readline.h|g"
|
|
|
|
.endif # READLINE_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|