aac155ba17
- update xrandr to the latest version in the xorg-devel tree - update xproto to the latest version in xorg-devel tree as required by xset and xrandr - update pixman to the latest version in the xorg-devel tree Reviewed by: kwm Approved by: bapt (mentor)
37 lines
723 B
Makefile
37 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.22.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
|
|
|
|
OPTIONS= SIMD "Enable autodetection 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>
|