This is a security update addressing the following: CAN-2004-0782: Heap-based overflow in pixbuf_create_from_xpm CAN-2004-0783: Stack-based overflow in xpm_extract_color CAN-2004-0788: ico loader integer overflow Patches to -stable will be along in the next day or two.
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.18 2004/09/27 03:15:07 marcm Exp $
|
|
|
|
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
|
|
|
|
COMMENT= "multi-platform graphical toolkit"
|
|
COMMENT-docs= "gtk+-2 documentation"
|
|
|
|
VERSION= 2.4.10
|
|
DISTNAME= gtk+-${VERSION}
|
|
PKGNAME= gtk+2-${VERSION}
|
|
PKGNAME-docs= gtk+2-docs-${VERSION}
|
|
CATEGORIES= x11 devel
|
|
|
|
HOMEPAGE= http://www.gtk.org
|
|
MAINTAINER= Marc Matteo <marcm@openbsd.org>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://ftp.gtk.org/pub/gtk/v2.4/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MULTI_PACKAGES= -docs
|
|
SUBPACKAGE?=
|
|
|
|
.if ${SUBPACKAGE} != "-docs"
|
|
LIB_DEPENDS= glib-2.0.400.0,gmodule-2.0.400.0,gobject-2.0.400.0::devel/glib2 \
|
|
pango-1.0.399.1,pangoft2-1.0.399.1,pangox-1.0.399.1,pangoxft-1.0.399.1::devel/pango \
|
|
atk-1.0.0.1::devel/atk \
|
|
tiff.35::graphics/tiff \
|
|
png.3::graphics/png \
|
|
jpeg.62::graphics/jpeg
|
|
BUILD_DEPENDS= :pkgconfig-*:devel/pkgconfig
|
|
.endif
|
|
|
|
.if defined(PACKAGING) && ${SUBPACKAGE} == "-docs"
|
|
PKG_ARCH= *
|
|
.endif
|
|
|
|
USE_X11= Yes
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --disable-gtk-doc
|
|
CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include/freetype2/ -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|