pkgsrc/devel/gmp/builtin.mk

77 lines
2.2 KiB
Makefile
Raw Normal View History

# $NetBSD: builtin.mk,v 1.12 2023/08/05 07:08:26 adam Exp $
BUILTIN_PKG:= gmp
BUILTIN_FIND_HEADERS_VAR:= H_GMP
BUILTIN_FIND_HEADERS.H_GMP= gmp.h gmp/gmp.h
BUILTIN_VERSION_SCRIPT.gmp= ${AWK} \
'/\#define[ \t]*__GNU_MP_VERSION[ \t]/ { major = $$3; } \
/\#define[ \t]*__GNU_MP_VERSION_MINOR[ \t]/ { minor = $$3; } \
/\#define[ \t]*__GNU_MP_VERSION_PATCHLEVEL[ \t]/ { patch = $$3; } \
END { if (major!="" && minor!="" && patch!="") \
print major "." minor "." patch; else print ""; }'
.include "../../mk/buildlink3/bsd.builtin.mk"
###
### Determine if there is a built-in implementation of the package and
### set IS_BUILTIN.<pkg> appropriately ("yes" or "no").
###
.if !defined(IS_BUILTIN.gmp)
IS_BUILTIN.gmp= no
. if empty(H_GMP:M__nonexistent__) && empty(H_GMP:M${LOCALBASE}/*)
IS_BUILTIN.gmp= yes
. endif
.endif
MAKEVARS+= IS_BUILTIN.gmp
###
### If there is a built-in implementation, then set BUILTIN_PKG.<pkg> to
### a package name to represent the built-in package.
###
.if !defined(BUILTIN_PKG.gmp) && \
${IS_BUILTIN.gmp:tl} == yes && \
empty(H_GMP:M__nonexistent__)
BUILTIN_VERSION.gmp!= ${BUILTIN_VERSION_SCRIPT.gmp} ${H_GMP}
2014-04-18 12:49:01 +02:00
BUILTIN_PKG.gmp= gmp-${BUILTIN_VERSION.gmp}
.endif
MAKEVARS+= BUILTIN_PKG.gmp
###
### Determine whether we should use the built-in implementation if it
### exists, and set USE_BUILTIN.<pkg> appropriate ("yes" or "no").
###
.if !defined(USE_BUILTIN.gmp)
. if ${PREFER.gmp} == "pkgsrc"
2014-04-18 12:49:01 +02:00
USE_BUILTIN.gmp= no
. else
2014-04-18 12:49:01 +02:00
USE_BUILTIN.gmp= ${IS_BUILTIN.gmp}
. if defined(BUILTIN_PKG.gmp) && ${IS_BUILTIN.gmp:tl} == yes
2014-04-18 12:49:01 +02:00
USE_BUILTIN.gmp= yes
. for _dep_ in ${BUILDLINK_API_DEPENDS.gmp}
. if ${USE_BUILTIN.gmp:tl} == yes
2014-04-18 12:49:01 +02:00
USE_BUILTIN.gmp!= \
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.gmp}; then \
2014-04-18 12:49:01 +02:00
${ECHO} yes; \
else \
2014-04-18 12:49:01 +02:00
${ECHO} no; \
fi
. endif
. endfor
. endif
. endif # PREFER.gmp
.endif
MAKEVARS+= USE_BUILTIN.gmp
2011-09-14 18:10:12 +02:00
2014-03-02 09:00:00 +01:00
CHECK_BUILTIN.gmp?= no
.if ${CHECK_BUILTIN.gmp:tl} == no
. if ${USE_BUILTIN.gmp:tl} == yes
GMP_INCLUDE= ${H_GMP:H}
BUILDLINK_INCDIRS.gmp= ${GMP_INCLUDE}
BUILDLINK_LIBDIRS.gmp= lib${LIBABISUFFIX}
2011-09-14 18:10:12 +02:00
CPPFLAGS+= -I${GMP_INCLUDE}
CFLAGS+= -I${GMP_INCLUDE}
2014-03-02 09:00:00 +01:00
. endif
.endif # CHECK_BUILTIN.gmp