Changelog: 2.36.0 ====== * Translation updates 2.35.5 ====== * Fix undefined behavior in overflow checks (#770986) * Fix a typo (#770756) * Avoid segfault in some tests (#771026) * Translation updates 2.35.4 ====== * Translation updates 2.35.3 ====== * Add API to determine supported save options (#683371) * Add helper API for pixbuf options (#768043) * Fix invalid gettext use (#758552) * Fix a compiler warning in the xpm loader (#768042) * Fix integer overflows in the bmp loader (#768688, #768738) * Fix a crash in the ico loader (#769170) * Translation updates 2.35.2 ====== * Use compiler directives for exporting symbols (#767164) * Fix a problem with nearest scaling (#766842) * Avoid redundant property notification * Translation updates 2.35.1 ====== * Add non-varargs variant to save to stream (#683063) * Add a common autotools module (#765034) * Translation updates
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.32 2016/10/09 17:49:38 ryoon Exp $
|
|
|
|
DISTNAME= gdk-pixbuf-${PIXBUF2_VERSION}
|
|
PKGNAME= ${DISTNAME:S/pixbuf/pixbuf2/}
|
|
CATEGORIES= graphics gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gdk-pixbuf/${MSITE_VERSION}/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://developer.gnome.org/gdk-pixbuf
|
|
COMMENT= Image loaders for gtk2
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
CONFLICTS+= gtk2+<2.22
|
|
|
|
.include "../../graphics/gdk-pixbuf2/Makefile.version"
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config gmake
|
|
USE_PKGLOCALEDIR= yes
|
|
|
|
PKGCONFIG_OVERRIDE+= contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.0.pc.in
|
|
PKGCONFIG_OVERRIDE+= gdk-pixbuf-2.0.pc.in
|
|
|
|
_BUILDING_GTK2= yes
|
|
.include "loaders.mk"
|
|
|
|
# We remove the loader database during post-install since we create it
|
|
# anew in the +INSTALL script as part of the POST-INSTALL action.
|
|
#
|
|
post-install:
|
|
${RM} -f ${DESTDIR}${GDK_PIXBUF_LOADERS_DB}
|
|
|
|
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.37.2
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
BUILDLINK_DEPMETHOD.gobject-introspection:= build
|
|
.include "../../devel/gobject-introspection/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|