pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/libICE Detect builtin "libICE" e.g. under Mac OS X...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/cdb90cc3a73d
branches:  trunk
changeset: 536567:cdb90cc3a73d
user:      tron <tron%pkgsrc.org@localhost>
date:      Mon Dec 17 13:27:28 2007 +0000

description:
Detect builtin "libICE" e.g. under Mac OS X Leopard.

diffstat:

 x11/libICE/buildlink3.mk |   4 +-
 x11/libICE/builtin.mk    |  49 ++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+), 2 deletions(-)

diffs (67 lines):

diff -r b39f82d522fd -r cdb90cc3a73d x11/libICE/buildlink3.mk
--- a/x11/libICE/buildlink3.mk  Mon Dec 17 12:26:25 2007 +0000
+++ b/x11/libICE/buildlink3.mk  Mon Dec 17 13:27:28 2007 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: buildlink3.mk,v 1.3 2006/11/05 16:55:28 joerg Exp $
+# $NetBSD: buildlink3.mk,v 1.4 2007/12/17 13:27:28 tron Exp $
 
 .include "../../mk/bsd.fast.prefs.mk"
 
-.if ${X11_TYPE} != "modular"
+.if ${X11_TYPE} != "modular" && !exists(${X11BASE}/lib/pkgconfig/ice.pc)
 .include "../../mk/x11.buildlink3.mk"
 .else
 
diff -r b39f82d522fd -r cdb90cc3a73d x11/libICE/builtin.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/libICE/builtin.mk     Mon Dec 17 13:27:28 2007 +0000
@@ -0,0 +1,49 @@
+# $NetBSD: builtin.mk,v 1.1 2007/12/17 13:27:29 tron Exp $
+
+BUILTIN_PKG:=  libICE
+
+BUILTIN_FIND_FILES_VAR:=       H_ICE
+BUILTIN_FIND_FILES.H_ICE=      ${X11BASE}/include/X11/ICE/ICE.h
+
+.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 ${X11BASE} == ${LOCALBASE}
+IS_BUILTIN.libICE=     no
+.elif !defined(IS_BUILTIN.libICE)
+IS_BUILTIN.libICE=     no
+.  if empty(H_ICE:M__nonexistent__)
+IS_BUILTIN.libICE=     yes
+.  endif
+.endif
+MAKEVARS+=     IS_BUILTIN.libICE
+
+###
+### 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.libICE)
+.  if ${PREFER.libICE} == "pkgsrc"
+USE_BUILTIN.libICE=    no
+.  else
+USE_BUILTIN.libICE=    ${IS_BUILTIN.libICE}
+.    if defined(BUILTIN_PKG.libICE) && \
+        !empty(IS_BUILTIN.libICE:M[yY][eE][sS])
+USE_BUILTIN.libICE=    yes
+.      for _dep_ in ${BUILDLINK_API_DEPENDS.libICE}
+.        if !empty(USE_BUILTIN.libICE:M[yY][eE][sS])
+USE_BUILTIN.libICE!=                                                   \
+       if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.libICE:Q}; then \
+               ${ECHO} yes;                                            \
+       else                                                            \
+               ${ECHO} no;                                             \
+       fi
+.        endif
+.      endfor
+.    endif
+.  endif  # PREFER.libICE
+.endif
+MAKEVARS+=     USE_BUILTIN.libICE



Home | Main Index | Thread Index | Old Index