blob: ede12c21c7a02a7a75e9b8acee00a65916144506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Created by: Michael Johnson <ahze@FreeBSD.org>
# $FreeBSD$
PORTNAME= babl
PORTVERSION= 0.1.66
PORTREVISION= 1
CATEGORIES= x11
MASTER_SITES= GIMP
MAINTAINER= gnome@FreeBSD.org
COMMENT= Dynamic pixel format conversion library
LICENSE= LGPL3
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= liblcms2.so:graphics/lcms2
USES= compiler:c11 gmake libtool pathfix pkgconfig tar:bzip2
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
OPTIONS_DEFINE= SIMD
OPTIONS_DEFAULT=SIMD
SIMD_CONFIGURE_OFF= --disable-mmx --disable-sse --disable-sse2 \
--disable-sse3 --disable-sse4_1 --disable-f16c \
--disable-altivec
post-patch:
@${REINPLACE_CMD} -e 's|x86_64|amd64|g' \
${WRKSRC}/configure
.include <bsd.port.mk>
|