freebsd-ports/print/cups/Makefile.common
Alan Eldridge 31b3988864 Fixed "Print Test Page" bug with help from Mike at Easy SW. Portrevision
bumped to 4. Changed package message back to package-users-only message.

PR:		47423
2003-01-25 16:20:46 +00:00

73 lines
2.1 KiB
Makefile

# ex:ts=8 -*-mode: makefile-*-
# Common file for CUPS ports
# $FreeBSD$
CUPS_MASTER_SITES=\
ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/cups/${CUPS_VERSION}/ \
ftp://ftp.ntua.gr/pub/gnu/cups/${CUPS_VERSION}/ \
ftp://ftp.easysw.com/pub/cups/${CUPS_VERSION}/ \
ftp://ftp.fisek.com.tr/pub/cups/${CUPS_VERSION}/ \
ftp://ftp.mpg.goe.ni.schule.de/pub/internet/printing/cups/${CUPS_VERSION}/
CUPS_VERSION= 1.1.18
CUPS_REVISION= 0
CUPS_PORTVER= ${CUPS_VERSION}.${CUPS_REVISION}
CUPS_PORTREV= 4
CUPS_PORTEPOCH= 0
CUPS_FILESDIR= ${.CURDIR}/../../print/cups/files
CUPS_ETCDIR= ${PREFIX}/etc/cups
CUPS_RCDIR= ${PREFIX}/etc/rc.d
CUPS_DOCSDIR= ${PREFIX}/share/doc/cups
CUPS_SPOOLDIR= /var/spool/cups
# file, dir ownership
CUPSGRP= daemon
CUPSOWN= root
######################################################################
# The rest of the file is for components (cups-base, cups-lpr) only.
######################################################################
.if ${PORTNAME} == "cups-base" || ${PORTNAME} == "cups-lpr"
MANLANG= "" fr
.if ${CUPS_REVISION} < 1
DISTNAME= cups-${CUPS_VERSION}-source
.else
DISTNAME= cups-${CUPS_VERSION}-${CUPS_REVISION}-source
.endif # ${CUPS_REVISION} < 1
DISTFILES= ${DISTNAME}.tar.bz2
WRKSRC= ${WRKDIR}/cups-${CUPS_VERSION}
LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg \
png.5:${PORTSDIR}/graphics/png \
tiff.4:${PORTSDIR}/graphics/tiff
WANT_AUTOCONF_VER= 253
USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5_RUN= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --localstatedir=/var \
--disable-pam \
--disable-slp \
--with-cups-user=${CUPSOWN} \
--with-cups-group=${CUPSGRP} \
--with-docdir=${CUPS_DOCSDIR} \
--with-rcdir=${CUPS_RCDIR}
CONFIGURE_ARGS+= CPPFLAGS="-I${PREFIX}/include"
CONFIGURE_ARGS+= CFLAGS="${CFLAGS} -I.. -I${PREFIX}/include"
CONFIGURE_ARGS+= CXXFLAGS="${CFLAGS} -I.. -I${PREFIX}/include"
CONFIGURE_ARGS+= DSOFLAGS="-Wl,-rpath,${PREFIX}/lib -L${PREFIX}/lib"
CONFIGURE_ARGS+= LDFLAGS="-L${PREFIX}/lib"
pre-configure::
@${ECHO_CMD} Configuring CUPS with options:
@${ECHO_CMD} ${CONFIGURE_ARGS} | fmt
.endif # ${PORTNAME} != "cups"