fd011562ca
"David Costanzo has reported a vulnerability in GdkPixbuf, which can be exploited by malicious people to crash certain applications on a user's system. The vulnerability is caused due to a double free error in the BMP loader. This can be exploited to crash an application linked against GdkPixbuf when a specially crafted BMP image is processed." Bump PKGREVISION. Patch from Fedora.
27 lines
749 B
Makefile
27 lines
749 B
Makefile
# $NetBSD: Makefile,v 1.31 2005/04/01 11:37:23 salo Exp $
|
|
#
|
|
|
|
.include "Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME}
|
|
PKGREVISION= 5
|
|
COMMENT= The GNOME image loading library
|
|
|
|
# XXX hopefully there is no x.gnome-config.x in PATH
|
|
post-patch:
|
|
${SED} -e 's/gnome-config/x.gnome-config.x/g' \
|
|
${WRKSRC}/configure >${WRKSRC}/.tmp && \
|
|
${MV} ${WRKSRC}/.tmp ${WRKSRC}/configure
|
|
${CHMOD} a+x ${WRKSRC}/configure
|
|
|
|
post-configure:
|
|
${SED} -e 's/ doc$$//' ${WRKSRC}/Makefile >${WRKSRC}/.tmp && \
|
|
${MV} ${WRKSRC}/.tmp ${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
${TEST} ${PREFIX} = ${LOCALBASE} || \
|
|
${LN} -fs ${PREFIX}/share/aclocal/gdk-pixbuf.m4 \
|
|
${LOCALBASE}/share/aclocal/gdk-pixbuf.m4
|
|
${RM} ${PREFIX}/lib/gnomecanvaspixbufConf.sh
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|