Remove package.
This was replaced by renderproto in April.
This commit is contained in:
parent
a817607afc
commit
e05aa0fb52
5 changed files with 0 additions and 138 deletions
|
@ -1,3 +0,0 @@
|
|||
This package contains header files and documentation for the X
|
||||
render extension (renderext). Library and server implementations
|
||||
are separate.
|
|
@ -1,21 +0,0 @@
|
|||
# $NetBSD: Makefile,v 1.3 2006/03/31 23:26:19 reed Exp $
|
||||
|
||||
DISTNAME= renderext-0.9
|
||||
PKGREVISION= 1
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= http://xlibs.freedesktop.org/release/
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= http://pdx.freedesktop.org/software/fontconfig/releases/
|
||||
COMMENT= Headers for X11 render extension
|
||||
|
||||
CONFLICTS+= Xrender<0.8 render-[0-9]* renderproto-[0-9]*
|
||||
|
||||
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
||||
|
||||
USE_LANGUAGES= # empty
|
||||
USE_PKGLOCALEDIR= yes
|
||||
PKGCONFIG_OVERRIDE+= render.pc.in
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
.include "../../mk/bsd.pkg.mk"
|
|
@ -1,8 +0,0 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/15 16:36:57 wiz Exp $
|
||||
include/X11/extensions/render.h
|
||||
include/X11/extensions/renderproto.h
|
||||
lib/pkgconfig/render.pc
|
||||
share/doc/render/library
|
||||
share/doc/render/protocol
|
||||
@dirrm share/doc/render
|
||||
@unexec ${RMDIR} %D/include/X11/extensions 2>/dev/null || ${TRUE}
|
|
@ -1,19 +0,0 @@
|
|||
# $NetBSD: buildlink3.mk,v 1.3 2006/04/12 10:27:43 rillig Exp $
|
||||
|
||||
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
||||
RENDEREXT_BUILDLINK3_MK:= ${RENDEREXT_BUILDLINK3_MK}+
|
||||
|
||||
.if !empty(BUILDLINK_DEPTH:M+)
|
||||
BUILDLINK_DEPENDS+= renderext
|
||||
.endif
|
||||
|
||||
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nrenderext}
|
||||
BUILDLINK_PACKAGES+= renderext
|
||||
|
||||
.if !empty(RENDEREXT_BUILDLINK3_MK:M+)
|
||||
BUILDLINK_API_DEPENDS.renderext+= renderext>=0.9
|
||||
BUILDLINK_PKGSRCDIR.renderext?= ../../x11/renderext
|
||||
BUILDLINK_DEPMETHOD.renderext?= build
|
||||
.endif # RENDEREXT_BUILDLINK3_MK
|
||||
|
||||
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|
|
@ -1,87 +0,0 @@
|
|||
# $NetBSD: builtin.mk,v 1.3 2006/04/06 06:23:03 reed Exp $
|
||||
|
||||
BUILTIN_PKG:= renderext
|
||||
|
||||
BUILTIN_FIND_FILES_VAR:= H_RENDER
|
||||
BUILTIN_FIND_FILES.H_RENDER= ${X11BASE}/include/X11/extensions/render.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 !defined(IS_BUILTIN.renderext)
|
||||
IS_BUILTIN.renderext= no
|
||||
#
|
||||
# Here, we skip checking whether the files are under ${LOCALBASE} since
|
||||
# we'll consider this X11 package to be built-in even if it's a part
|
||||
# of one of the pkgsrc-installed X11 distributions.
|
||||
#
|
||||
. if empty(H_RENDER:M__nonexistent__)
|
||||
IS_BUILTIN.renderext= yes
|
||||
. endif
|
||||
.endif
|
||||
MAKEVARS+= IS_BUILTIN.renderext
|
||||
|
||||
###
|
||||
### 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.renderext) && \
|
||||
!empty(IS_BUILTIN.renderext:M[yY][eE][sS]) && \
|
||||
empty(H_RENDER:M__nonexistent__)
|
||||
BUILTIN_VERSION.renderext!= \
|
||||
${AWK} '/\#define[ ]*RENDER_MAJOR/ { M = $$3 } \
|
||||
/\#define[ ]*RENDER_MINOR/ { m = "."$$3 } \
|
||||
END { printf "%s%s\n", M, m }' \
|
||||
${H_RENDER}
|
||||
BUILTIN_PKG.renderext= renderext-${BUILTIN_VERSION.renderext}
|
||||
.endif
|
||||
MAKEVARS+= BUILTIN_PKG.renderext
|
||||
|
||||
###
|
||||
### 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.renderext)
|
||||
. if ${PREFER.renderext} == "pkgsrc"
|
||||
USE_BUILTIN.renderext= no
|
||||
. else
|
||||
USE_BUILTIN.renderext= ${IS_BUILTIN.renderext}
|
||||
. if defined(BUILTIN_PKG.renderext) && \
|
||||
!empty(IS_BUILTIN.renderext:M[yY][eE][sS])
|
||||
USE_BUILTIN.renderext= yes
|
||||
. for _dep_ in ${BUILDLINK_API_DEPENDS.renderext}
|
||||
. if !empty(USE_BUILTIN.renderext:M[yY][eE][sS])
|
||||
USE_BUILTIN.renderext!= \
|
||||
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.renderext:Q}; then \
|
||||
${ECHO} yes; \
|
||||
else \
|
||||
${ECHO} no; \
|
||||
fi
|
||||
. endif
|
||||
. endfor
|
||||
. endif
|
||||
. endif # PREFER.renderext
|
||||
.endif
|
||||
MAKEVARS+= USE_BUILTIN.renderext
|
||||
|
||||
###
|
||||
### The section below only applies if we are not including this file
|
||||
### solely to determine whether a built-in implementation exists.
|
||||
###
|
||||
CHECK_BUILTIN.renderext?= no
|
||||
.if !empty(CHECK_BUILTIN.renderext:M[nN][oO])
|
||||
|
||||
. if !empty(USE_BUILTIN.renderext:M[nN][oO])
|
||||
BUILDLINK_API_DEPENDS.renderext+= renderext>=0.9
|
||||
. endif
|
||||
|
||||
. if !empty(USE_BUILTIN.renderext:M[yY][eE][sS])
|
||||
BUILDLINK_PREFIX.renderext= ${X11BASE}
|
||||
. include "../../mk/x11.buildlink3.mk"
|
||||
. include "../../mk/x11.builtin.mk"
|
||||
. endif
|
||||
|
||||
.endif # CHECK_BUILTIN.renderext
|
Loading…
Reference in a new issue