4e687431bf
* Merged the endianness conversion fixes from the GDK version into the Xlib version; oops (Federico). * Merged fixes from GTK+ 2.0 * Minor documentation improvements (Federico). * Fixed endianness conversion in the 16-bit gdk-pixbuf-drawable functions (Federico). * Minor fixes for the IBM/AIX compiler (Christian Schaller). * The image loaders are now linked against the pixbuf and GTK+ libraries so that the Python bindings work (Johan Dahlin). * Backported the BMP loader from GTK+ 1.3 (Federico). * Added support for BI_BITFIELDS coding to the BMP loader [Ximian bug #12125] (Federico). * Fixed stupid bug in the ICO loader. ICO pixbufs should always have an alpha channel [Ximian bug #11224]. (Federico) * Slight tweaks to the documentation Makefile. (Federico) * Added support for 16-bpp BMPs and ICOs (Federico). * Added support for 32-bpp ICOs (Federico). * Use the correct visual and colormap for the pixbuf-demo widgets * Install the headers in a versioned directory so that they don't collide with the GNOME 2 platform (Havoc).
28 lines
930 B
Makefile
28 lines
930 B
Makefile
# $NetBSD: Makefile,v 1.15 2002/05/11 11:56:58 rh Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/gdk-pixbuf-/gdk-pixbuf-gnome-/}
|
|
COMMENT= the GNOME image loading library GNOME canvas support add-on
|
|
|
|
CONFLICTS+= gdk-pixbuf<0.10.1
|
|
|
|
USE_BUILDLINK_ONLY= # defined
|
|
BUILDLINK_DEPENDS.gdk-pixbuf= gdk-pixbuf>=0.11.0nb1
|
|
|
|
.include "../gdk-pixbuf/Makefile.common"
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/gdk-pixbuf/gnome-canvas-pixbuf.h \
|
|
${PREFIX}/include/gdk-pixbuf-1.0/gdk-pixbuf
|
|
${INSTALL_DATA} ${WRKSRC}/gnomecanvaspixbufConf.sh \
|
|
${PREFIX}/lib
|
|
cd ${WRKSRC}/gdk-pixbuf && \
|
|
${SH} ../libtool --mode=install ${INSTALL_DATA} \
|
|
libgnomecanvaspixbuf.la ${PREFIX}/lib
|
|
cd ${WRKSRC}/doc && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKEFILE} \
|
|
${INSTALL_TARGET}
|
|
|
|
.include "../../graphics/gdk-pixbuf/buildlink.mk"
|
|
.include "../../x11/gnome-libs/buildlink.mk"
|
|
.include "../../mk/x11.buildlink.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|