diff options
Diffstat (limited to 'x11/pixman/Makefile')
-rw-r--r-- | x11/pixman/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/x11/pixman/Makefile b/x11/pixman/Makefile new file mode 100644 index 000000000..6d519a5e6 --- /dev/null +++ b/x11/pixman/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: pixman +# Date Created: Aug 9 2003 +# Whom: Florent Thoumie <flz@FreeBSD.org> +# +# $FreeBSD: ports/x11/pixman/Makefile,v 1.14 2010/02/11 16:26:04 rnoland Exp $ +# + +PORTNAME= pixman +PORTVERSION= 0.18.2 +CATEGORIES= x11 + +MAINTAINER= x11@FreeBSD.org +COMMENT= Low-level pixel manipulation library + +XORG_CAT= lib +USE_AUTOTOOLS= libtool:22 +USE_PERL5_BUILD=yes +USE_GNOME= ltverhack:9 + +OPTIONS= SIMD "Enable autodection of SIMD features (MMX, SSE2, VMX)" off + +.include <bsd.port.pre.mk> + +.if defined(WITHOUT_SIMD) +CONFIGURE_ARGS= --disable-vmx --disable-arm-simd + +.if ${ARCH:Namd64} +CONFIGURE_ARGS+= --disable-mmx --disable-sse2 +.endif + +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|gtk+-2\.0|disable-gtk|g' \ + ${WRKSRC}/configure + +.include <bsd.port.post.mk> |