blob: f5dcc09cdc887d09bd090554834a577f5e02c97f (
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
|
# ports collection makefile for: gimp-print
# Date Created: 2002 01 02
# Whom: dgilbert@velocet.ca
# $FreeBSD$
PORTNAME= gimp-print
PORTVERSION= 4.2.1
CATEGORIES= print
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= dgilbert@velocet.ca
LIB_DEPENDS= intl.2:${PORTSDIR}/devel/gettext
USE_GMAKE= yes
USE_LIBTOOL= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --with-gimp=no
INSTALLS_SHLIB= yes
MAN1= escputil.1 gimpprint-config.1
MAN3= gimpprint.3
MAN8= cups-calibrate.8
.if defined(WITHOUT_CUPS)
PLIST_SUB+= CUPS="@comment "
.else
LIB_DEPENDS= cups.2:${PORTSDIR}/print/cups-base
CONFIGURE_ARGS+= --with-cups=${PREFIX}
PLIST_SUB+= CUPS=""
.endif
.if defined(WITHOUT_IJS)
PLIST_SUB+= IJS="@comment "
.else
LIB_DEPENDS= ijs.1:${PORTSDIR}/print/libijs
CONFIGURE_ARGS+= --with-ijs=yes
PLIST_SUB+= IJS=""
.endif
.if defined(NOPORTDOCS)
CONFIGURE_ARGS+= --with-user-guide=no
.endif
pre-everything::
@${ECHO_MSG}
@${ECHO_MSG} "You may use the following build options:"
@${ECHO_MSG}
@${ECHO_MSG} "WITHOUT_CUPS=yes build without CUPS driver"
@${ECHO_MSG} "WITHOUT_IJS=yes build without IJS-based Ghostscript driver"
@${ECHO_MSG}
post-extract:
@${RM} -f ${WRKSRC}/doc/gimpprint.info*
post-patch:
@${PERL} -pi -e 's|makeinfo$$|"makeinfo --no-split"|g ; \
s|\$$\{CFLAGS:=\} -O|\$$\{CFLAGS\}|g' ${WRKSRC}/configure
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${PERL} -pi -e \
's|\$$\(PACKAGE\)/doc|doc/\$$\(PACKAGE\)|g ; \
s|\$$\(RM\) -r|\$$\(RM\) -f -r|g'
.include <bsd.port.mk>
|