blob: b8d7f20e44a6ddda612043739eae8896787085d2 (
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
75
76
77
78
79
80
81
82
83
|
# Created by: David Yeske <dyeske@gmail.com>
# $FreeBSD$
PORTNAME= cinepaint
DISTVERSION= 1.0-4
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}/CinePaint/CinePaint-${DISTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Editing tool used for painting and retouching of movies
LICENSE= GPLv2 LGPL21 MIT
LICENSE_COMB= multi
LIB_DEPENDS= IlmImf:${PORTSDIR}/graphics/OpenEXR \
ftgl:${PORTSDIR}/graphics/ftgl \
jpeg:${PORTSDIR}/graphics/jpeg \
lcms:${PORTSDIR}/graphics/lcms \
png15:${PORTSDIR}/graphics/png \
tiff:${PORTSDIR}/graphics/tiff \
fltk:${PORTSDIR}/x11-toolkits/fltk
OPTIONS_DEFINE= OYRANOS PRINT
OYRANOS_DESC= ICC profile support via Oyranos
PRINT_DESC= Gutenprint (gimp-print) plugin
USES= gettext pkgconfig
USE_XORG= xmu
USE_GNOME= gtk20
USE_GHOSTSCRIPT_RUN=yes
USE_PYTHON= yes
USE_GMAKE= yes
USE_AUTOTOOLS= libtoolize aclocal automake autoconf
LIBTOOLIZE_ARGS=--force
ACLOCAL_ARGS= -I aclocal
AUTOMAKE_ARGS= --copy --force-missing --foreign --add-missing
USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
PLIST_SUB= VER="${DISTVERSION}"
MAN1= cinepaint.1 cinepainttool.1
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOYRANOS}
LIB_DEPENDS+= oyranos:${PORTSDIR}/graphics/oyranos
.else
CONFIGURE_ENV+= ac_cv_path_OY_CONFIG=no
.endif
.if ${PORT_OPTIONS:MPRINT}
LIB_DEPENDS+= gutenprint:${PORTSDIR}/print/gutenprint-base
PLIST_SUB+= PRINT=""
.else
CONFIGURE_ARGS+= --disable-print
PLIST_SUB+= PRINT="@comment "
.endif
post-extract:
@${LN} -sf gimprc.in ${WRKSRC}/cinepaintrc.in
@${LN} -sf gimprc_user.in ${WRKSRC}/cinepaintrc_user.in
post-patch:
@${REINPLACE_CMD} -e \
'/^pkgconfigdir/s|$$(libdir)|$$(prefix)/libdata| ; \
s|gimprc|cinepaintrc|g' \
${WRKSRC}/Makefile.am
@${REINPLACE_CMD} -e \
'/cms-profile-path/s|".*"|"${LOCALBASE}/share/color/icc"| ; \
s|/usr/share|${LOCALBASE}/share|' \
${WRKSRC}/cinepaintrc.in
@${REINPLACE_CMD} -e \
's|gimprc|cinepaintrc|g' \
${WRKSRC}/user_install.in
@${REINPLACE_CMD} -e \
's|static GDrawableType|static GImageType|' \
${WRKSRC}/plug-ins/psd/psd.c
.include <bsd.port.mk>
|