1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/x11/pixman/Makefile
Eitan Adler 1fc9a198d6 Update to 0.24.2
Changes:
       - Fix for broken gradients with repeat mode NONE
       - Misc. other bug fixes.

Reviewed by:	miwi
Obtained from:	xorg-dev repo
2012-02-03 16:25:16 +00:00

36 lines
723 B
Makefile

# New ports collection makefile for: pixman
# Date Created: Aug 9 2003
# Whom: Florent Thoumie <flz@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= pixman
PORTVERSION= 0.24.2
CATEGORIES= x11
MAINTAINER= x11@FreeBSD.org
COMMENT= Low-level pixel manipulation library
XORG_CAT= lib
USE_AUTOTOOLS= libtool
USE_PERL5_BUILD=yes
USE_GNOME= ltverhack:9
CONFIGURE_ARGS= --disable-gtk
OPTIONS= SIMD "Enable SIMD features autodetection (MMX, SSE2, VMX)" off
.include <bsd.port.pre.mk>
.if defined(WITHOUT_SIMD)
CONFIGURE_ARGS= --disable-vmx --disable-arm-simd
. if ! ${MACHINE_CPU:Mmmx}
CONFIGURE_ARGS+= --disable-mmx
. endif
. if ! ${MACHINE_CPU:Msse2}
CONFIGURE_ARGS+= --disable-sse2
. endif
.endif
.include <bsd.port.post.mk>