c5ded5b610
Marcus Meissner discovered that imlib's BMP decoder would crash when loading the test BMP file created by Chris Evans for testing a previous Qt vulnerability. It is believed that this bug could be exploited for arbitrary code execution. ok brad@
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.48 2004/09/15 19:41:44 robert Exp $
|
|
# $FreeBSD: Makefile,v 1.45 1999/03/09 01:08:57 nectar Exp $
|
|
|
|
COMMENT= "image manipulation library for X11"
|
|
|
|
V= 1.9.14
|
|
DISTNAME= imlib-${V}
|
|
PKGNAME= imlib-${V}p3
|
|
CATEGORIES= graphics devel
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/imlib/1.9/}
|
|
|
|
MODULES= devel/gettext
|
|
LIB_DEPENDS= gtk.1.2,gdk.1.2::x11/gtk+ \
|
|
jpeg.62::graphics/jpeg \
|
|
ungif.5::graphics/libungif \
|
|
png.2::graphics/png \
|
|
tiff.35::graphics/tiff
|
|
|
|
MAINTAINER= Brad Smith <brad@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
VMEM_WARNING= Yes
|
|
|
|
USE_X11= Yes
|
|
USE_GMAKE= Yes
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ARGS+= --disable-modules
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/libpng -I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/aclocal
|
|
${INSTALL_DATA} ${WRKSRC}/imlib.m4 ${PREFIX}/share/aclocal
|
|
|
|
.include <bsd.port.mk>
|