diff options
author | jlam <jlam> | 2004-01-03 23:06:43 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-01-03 23:06:43 +0000 |
commit | 0d6c711ce586532632e1ae1b985d86085faa4580 (patch) | |
tree | 7815453a8a5d5cc91288c15c8c52893726b1e2bc /devel/ncurses | |
parent | 7c4feed9a8d4596547ef84ababb069e65e478323 (diff) | |
download | pkgsrc-0d6c711ce586532632e1ae1b985d86085faa4580.tar.gz |
Initial sprinkling of work-in-progress buildlink3.mk files for using the
buildlink3 framework.
Diffstat (limited to 'devel/ncurses')
-rw-r--r-- | devel/ncurses/buildlink3.mk | 116 |
1 files changed, 116 insertions, 0 deletions
diff --git a/devel/ncurses/buildlink3.mk b/devel/ncurses/buildlink3.mk new file mode 100644 index 00000000000..5c4634971d5 --- /dev/null +++ b/devel/ncurses/buildlink3.mk @@ -0,0 +1,116 @@ +# $NetBSD: buildlink3.mk,v 1.1 2004/01/03 23:06:43 jlam Exp $ +# +# Optionally define: +# +# USE_NCURSES force use of ncurses +# INCOMPAT_CURSES specify MACHINE_PLATFORM versions that are missing +# some needed functions. + +BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ +NCURSES_BUILDLINK3_MK:= ${NCURSES_BUILDLINK3_MK}+ + +.if !empty(NCURSES_BUILDLINK3_MK:M\+) +. include "../../mk/bsd.prefs.mk" + +BUILDLINK_DEPENDS.ncurses?= ncurses>=5.3nb1 +BUILDLINK_PKGSRCDIR.ncurses?= ../../devel/ncurses +.endif # NCURSES_BUILDLINK3_MK + +BUILDLINK_CHECK_BUILTIN.ncurses?= NO + +.if !defined(BUILDLINK_IS_BUILTIN.ncurses) +BUILDLINK_IS_BUILTIN.ncurses= NO +.endif + +.if !defined(_BLNK_LIBNCURSES_FOUND) +_BLNK_LIBNCURSES_FOUND!= \ + if [ "`${ECHO} /usr/lib/libncurses.*`" = "/usr/lib/libncurses.*" ]; then \ + ${ECHO} NO; \ + else \ + ${ECHO} YES; \ + fi +MAKEFLAGS+= _BLNK_LIBNCURSES_FOUND=${_BLNK_LIBNCURSES_FOUND} +.endif + +.if ${_BLNK_LIBNCURSES_FOUND} == "YES" +BUILDLINK_IS_BUILTIN.ncurses= YES +.endif + +.if !empty(BUILDLINK_CHECK_BUILTIN.ncurses:M[yY][eE][sS]) +_NEED_NCURSES= NO +.endif + +.if !defined(_NEED_NCURSES) +. if !empty(BUILDLINK_IS_BUILTIN.ncurses:M[nN][oO]) +_NEED_NCURSES= NO +. else +# +# These versions of NetBSD didn't have a curses library that was capable of +# replacing ncurses. +# +_INCOMPAT_CURSES= NetBSD-0.*-* NetBSD-1.[0123]*-* +_INCOMPAT_CURSES+= NetBSD-1.4.*-* NetBSD-1.4[A-X]-* +# +# These catch-alls are probably too broad, but better to err on the safe +# side. We can narrow down the match when we have better information. +# +_INCOMPAT_CURSES+= SunOS-*-* +_INCOMPAT_CURSES+= IRIX-*-* +_INCOMPAT_CURSES+= Darwin-*-* + +INCOMPAT_CURSES?= # empty +. for _pattern_ in ${_INCOMPAT_CURSES} ${INCOMPAT_CURSES} +. if !empty(MACHINE_PLATFORM:M${_pattern_}) +_NEED_NCURSES= YES +. endif +. endfor +. endif +MAKEFLAGS+= _NEED_NCURSES="${_NEED_NCURSES}" +.endif + +.if ${_NEED_NCURSES} == "YES" +. if !empty(BUILDLINK_DEPTH:M\+) +BUILDLINK_DEPENDS+= ncurses +. endif +.endif + +.if !empty(NCURSES_BUILDLINK3_MK:M\+) +. if ${_NEED_NCURSES} == "YES" +BUILDLINK_PACKAGES+= ncurses +. else +BUILDLINK_PREFIX.ncurses= /usr +. if ${_BLNK_LIBNCURSES_FOUND} == "NO" +BUILDLINK_TRANSFORM.ncurses+= -e "s|/curses.h|/ncurses.h|g" +BUILDLINK_TRANSFORM+= l:ncurses:curses +. endif +. endif + +BUILDLINK_FILES.ncurses= include/curses.h +BUILDLINK_FILES.ncurses+= include/term.h + +BUILDLINK_TARGETS+= buildlink-ncurses-curses-h +BUILDLINK_TARGETS+= buildlink-ncurses-extra-includes + +.PHONY: buildlink-ncurses-extra-includes +buildlink-ncurses-extra-includes: + ${_PKG_SILENT}${_PKG_DEBUG} \ + extra_includes=" \ + include/term.h \ + "; \ + for f in $${extra_includes}; do \ + if [ ! -f ${BUILDLINK_DIR}/$${f} ]; then \ + ${ECHO_BUILDLINK_MSG} "Touching extra ncurses header ($${f}) in ${BUILDLINK_DIR}."; \ + ${TOUCH} ${TOUCH_FLAGS} ${BUILDLINK_DIR}/$${f}; \ + fi; \ + done + +.PHONY: buildlink-ncurses-curses-h +buildlink-ncurses-curses-h: + ${_PKG_SILENT}${_PKG_DEBUG} \ + if [ ! -f ${BUILDLINK_DIR}/include/curses.h ]; then \ + ${ECHO_BUILDLINK_MSG} "Linking curses.h to ncurses.h in ${BUILDLINK_DIR}."; \ + ${LN} -s ncurses.h ${BUILDLINK_DIR}/include/curses.h; \ + fi +.endif # NCURSES_BUILDLINK3_MK + +BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:C/\+$//} |