summaryrefslogtreecommitdiff
path: root/x11/pixman/builtin.mk
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2008-09-16 13:10:41 +0000
committertron <tron@pkgsrc.org>2008-09-16 13:10:41 +0000
commit0858b4dc533d3e8e5bdfa0f2db33ba21f88fe512 (patch)
tree6df8862a293120ac6aac7426bf61b5f56fbb847e /x11/pixman/builtin.mk
parent8dceb553100aef1ddb19ceea1c59360f2c63e8b4 (diff)
downloadpkgsrc-0858b4dc533d3e8e5bdfa0f2db33ba21f88fe512.tar.gz
Remove this file again:
- There's a better version in the "cube-native-xorg" branch. - Using the bundled "pixman" library doesn't work under Mac OS X anyway because Apple didn't update the ".la" file at same point. [It is likely that the second issue will require attention after the "cube-native-xorg" branch has been merged.]
Diffstat (limited to 'x11/pixman/builtin.mk')
-rw-r--r--x11/pixman/builtin.mk54
1 files changed, 0 insertions, 54 deletions
diff --git a/x11/pixman/builtin.mk b/x11/pixman/builtin.mk
deleted file mode 100644
index c6ec20c5305..00000000000
--- a/x11/pixman/builtin.mk
+++ /dev/null
@@ -1,54 +0,0 @@
-# $NetBSD: builtin.mk,v 1.2 2008/09/16 11:41:33 tron Exp $
-
-BUILTIN_PKG:= pixman
-
-BUILTIN_FIND_FILES_VAR:= H_PIXMAN
-BUILTIN_FIND_FILES.H_PIXMAN= ${X11BASE}/include/pixman-1/pixman.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.pixman= no
-.elif !defined(IS_BUILTIN.pixman)
-IS_BUILTIN.pixman= no
-. if empty(H_PIXMAN:M__nonexistent__)
-IS_BUILTIN.pixman= yes
-. endif
-.endif
-MAKEVARS+= IS_BUILTIN.pixman
-
-###
-### 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.pixman)
-. if ${PREFER.pixman} == "pkgsrc"
-USE_BUILTIN.pixman= no
-. else
-USE_BUILTIN.pixman= ${IS_BUILTIN.pixman}
-. if defined(BUILTIN_PKG.pixman) && \
- !empty(IS_BUILTIN.pixman:M[yY][eE][sS])
-USE_BUILTIN.pixman= yes
-. for _dep_ in ${BUILDLINK_API_DEPENDS.pixman}
-. if !empty(USE_BUILTIN.pixman:M[yY][eE][sS])
-USE_BUILTIN.pixman!= \
- if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.pixman:Q}; then \
- ${ECHO} yes; \
- else \
- ${ECHO} no; \
- fi
-. endif
-. endfor
-. endif
-. endif # PREFER.pixman
-.endif
-MAKEVARS+= USE_BUILTIN.pixman
-
-.if !empty(USE_BUILTIN.pixman:M[yY][eE][sS])
-BUILDLINK_PREFIX.pixman= ${X11BASE}
-BUILDLINK_PASSTHRU_DIRS+= ${X11BASE}/include ${X11BASE}/lib
-.endif