summaryrefslogtreecommitdiffstats
path: root/graphics/colord/Makefile
blob: 8324ee5d4eec62991f4f275a9d3cca0757ce0599 (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# New ports collection makefile for:   colord
# Date Created:         16 Sep 2011
# Whom:             Koop Mast <kwm@FreeBSD.org>
#
# $FreeBSD$
#    $MCom: ports/graphics/colord/Makefile,v 1.7 2012/05/15 21:57:40 kwm Exp $
#

PORTNAME=   colord
PORTVERSION=    0.1.20
PORTREVISION=   1
CATEGORIES= graphics
MASTER_SITES=   http://www.freedesktop.org/software/colord/releases/

MAINTAINER= kwm@FreeBSD.org
COMMENT=    Manage color profiles to accurately color input/output devices

BUILD_DEPENDS=  g-ir-scanner:${PORTSDIR}/devel/gobject-introspection \
        vala-vapigen>=0.13.0:${PORTSDIR}/lang/vala-vapigen
LIB_DEPENDS=    polkit-gobject-1.0:${PORTSDIR}/sysutils/polkit \
        dbus-1.3:${PORTSDIR}/devel/dbus \
        lcms2.2:${PORTSDIR}/graphics/lcms2 \
        sqlite3.8:${PORTSDIR}/databases/sqlite3

USE_XZ=     yes
USE_GNOME=  gnomehier gnomehack glib20 intlhack
USE_GMAKE=  yes
USE_GETTEXT=    yes
GNU_CONFIGURE=  yes
USE_LDCONFIG=   yes
MAKE_JOBS_UNSAFE=yes
CONFIGURE_ARGS= --disable-gudev --enable-gtk-doc-html=no --disable-gtk
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
CONFIGURE_ENV=  USB_CFLAGS="-I/usr/include" \
        USB_LIBS="-L/usr/lib -lusb"

OPTIONS=    SANE "Build sane colord support" off \
        MANPAGES "Build man pages" on

.include <bsd.port.options.mk>

.if defined(WITHOUT_SANE)
CONFIGURE_ARGS+=--disable-sane
.else
CONFGIURE_ARGS+=--enable-sane=yes
LIB_DEPENDS+=   sane.1:${PORTSDIR}/graphics/sane-backends
.endif

.if defined(WITH_MANPAGES)
BUILD_DEPENDS+= docbook2html:${PORTSDIR}/textproc/docbook-utils \
        ${LOCALBASE}/share/sgml/docbook/4.1/dtd/catalog:${PORTSDIR}/textproc/docbook-410
MAN1=       cd-create-profile.1 cd-fix-profile.1 colormgr.1
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|-Wclobbered||g' \
        -e 's|-Wempty-body||g' \
        -e 's|-Wignored-qualifiers||g' \
        -e 's|-Wtype-limits||g' \
        -e 's|-Wmissing-parameter-type||g' \
        -e 's|LIBS="-lusb-1.0|LIBS="-lusb|g' \
        ${WRKSRC}/configure
#   @${REINPLACE_CMD} -e 's|libusb-1.0/libusb.h|libusb.h|g' \
#       ${WRKSRC}/src/cd-sensor-munki.c \
#       ${WRKSRC}/src/cd-usb.c \
#       ${WRKSRC}/src/cd-usb.h \
#       ${WRKSRC}/src/cd-sensor-huey.c
.if defined(WITHOUT_MANPAGES)
    @${REINPLACE_CMD} -e "s|2MAN_TRUE=$$|2MAN_TRUE='#'|g ; \
        s|2MAN_FALSE='#'|2MAN_FALSE=|g" ${WRKSRC}/configure
.endif

.include <bsd.port.mk>