freebsd-ports/print/gutenprint-base/Makefile
Daniel Harris 7aacf7a37e Actually add patchfile for rastertoprinter.c this time.
While I'm here, fix BUILD_DEPENDS to look for an executable, it is not
LIB_DEPENDS.

Submitted in part by:	Jeremy Prior <jez@netcraft.com>
2002-10-16 01:34:01 +00:00

71 lines
1.7 KiB
Makefile

# ports collection makefile for: gimp-print
# Date Created: 2002 01 02
# Whom: dgilbert@velocet.ca
# $FreeBSD$
PORTNAME= gimp-print
PORTVERSION= 4.2.2
CATEGORIES= print
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@freebsd.org
LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext
USE_REINPLACE= yes
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
BUILD_DEPENDS+= cups-config:${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:
@${REINPLACE_CMD} -e 's|=makeinfo|="makeinfo --no-split"|g ; \
s|[\$$][{]CFLAGS:=[}] -O|\$$\{CFLAGS\}|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e \
's|[\$$][{]CFLAGS:=[}] -O|\$$\{CFLAGS\}|g' ${WRKSRC}/configure
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
's|[\$$][(]PACKAGE[)]/doc|doc/\$$\(PACKAGE\)|g ; \
s|[\$$][(]RM[)] -r|\$$\(RM\) -f -r|g'
.include <bsd.port.mk>