From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 2 14:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id BA059850 for ; Sun, 2 Jun 2013 14:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 926E71642 for ; Sun, 2 Jun 2013 14:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r52EU1Mg048717 for ; Sun, 2 Jun 2013 14:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r52EU0OZ048716; Sun, 2 Jun 2013 14:30:00 GMT (envelope-from gnats) Date: Sun, 2 Jun 2013 14:30:00 GMT Message-Id: <201306021430.r52EU0OZ048716@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: nemysis Subject: Re: ports/174815: [PATCH] print/cups-base: Fixed 3 fatal errors, icons, ldconfig X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: nemysis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Jun 2013 14:30:01 -0000 The following reply was made to PR ports/174815; it has been noted by GNATS. From: nemysis To: bug-followup@FreeBSD.org Cc: jpaetzel@freebsd.org Subject: Re: ports/174815: [PATCH] print/cups-base: Fixed 3 fatal errors, icons, ldconfig Date: Sun, 2 Jun 2013 16:24:10 +0200 --MP_//4jGQJS2qlPrQRFYaALYCQH Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline - Trim ignore - Trim man - Fix reinstall --MP_//4jGQJS2qlPrQRFYaALYCQH Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=cups-base.diff ===> Generating patch ===> Viewing diff with more diff -ruN --exclude=CVS /usr/ports/print/cups-base/Makefile ./Makefile --- /usr/ports/print/cups-base/Makefile 2013-06-02 16:01:01.000000000 +0200 +++ ./Makefile 2013-06-02 16:06:36.000000000 +0200 @@ -21,6 +21,7 @@ USE_BZIP2= yes USE_GMAKE= yes GNU_CONFIGURE= yes +INSTALLS_ICONS= yes CFLAGS+= ${PTHREAD_CFLAGS} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib @@ -148,7 +149,7 @@ .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MGHOSTSCRIPT} .if ${PORT_OPTIONS:MXPDF} -IGNORE= you must select one and only one option to build pdftops +IGNORE= You must select one and only one option to build pdftops .endif USE_GHOSTSCRIPT= yes CONFIGURE_ARGS+= --enable-pdftops --with-pdftops=${LOCALBASE}/bin/gs @@ -175,7 +176,7 @@ .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MMDNSRESPONDER} .if ${PORT_OPTIONS:MAVAHI} -IGNORE= you must select one and only one option to build for Zeroconf +IGNORE= You must select one and only one option to build for Zeroconf .endif LIB_DEPENDS+= dns_sd:${PORTSDIR}/net/mDNSResponder CONFIGURE_ARGS+= --with-dnssd-includes=${LOCALBASE}/include @@ -231,7 +232,7 @@ MAN1= cups-config.1 .elif defined(CUPS_IMAGE) .else -MAN1= cancel.1 \ +MAN1+= cancel.1 \ cupstestdsc.1 \ cupstestppd.1 \ ipptool.1 \ @@ -387,7 +388,7 @@ .if ${PORT_OPTIONS:MGHOSTSCRIPT} || ${PORT_OPTIONS:MXPDF} ${INSTALL_PROGRAM} ${WRKSRC}/filter/pdftops ${PREFIX}/libexec/cups/filter/ .endif - ${LN} -s ${PREFIX}/bin/lpr ${PREFIX}/bin/lpr-cups + ${LN} -sf ${PREFIX}/bin/lpr ${PREFIX}/bin/lpr-cups ${INSTALL} -d ${CUPS_ETCDIR}/ ${CP} -p ${WRKSRC}/conf/snmp.conf ${WRKSRC}/conf/snmp.conf.N .for f in cupsd.conf mime.convs mime.types snmp.conf ===> Done --MP_//4jGQJS2qlPrQRFYaALYCQH--