From owner-svn-ports-all@freebsd.org Wed Jan 17 14:35:31 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 834E9E7419D; Wed, 17 Jan 2018 14:35:31 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5E55E722D6; Wed, 17 Jan 2018 14:35:31 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9C32310B49; Wed, 17 Jan 2018 14:35:30 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0HEZU95016283; Wed, 17 Jan 2018 14:35:30 GMT (envelope-from bsam@FreeBSD.org) Received: (from bsam@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0HEZU0A016282; Wed, 17 Jan 2018 14:35:30 GMT (envelope-from bsam@FreeBSD.org) Message-Id: <201801171435.w0HEZU0A016282@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bsam set sender to bsam@FreeBSD.org using -f From: Boris Samorodov Date: Wed, 17 Jan 2018 14:35:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459261 - head/print/photoprint X-SVN-Group: ports-head X-SVN-Commit-Author: bsam X-SVN-Commit-Paths: head/print/photoprint X-SVN-Commit-Revision: 459261 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jan 2018 14:35:31 -0000 Author: bsam Date: Wed Jan 17 14:35:30 2018 New Revision: 459261 URL: https://svnweb.freebsd.org/changeset/ports/459261 Log: print/photoprint: Fix build with clang6, USES+=localbase . fix build with clang6 by forcing --std=gnu++98; . incorporate USES+=localbase; . spaces->tabs at a makefile assignment. Modified: head/print/photoprint/Makefile Modified: head/print/photoprint/Makefile ============================================================================== --- head/print/photoprint/Makefile Wed Jan 17 14:30:51 2018 (r459260) +++ head/print/photoprint/Makefile Wed Jan 17 14:35:30 2018 (r459261) @@ -21,13 +21,12 @@ LIB_DEPENDS= libcups.so:print/cups \ libtiff.so:graphics/tiff GNU_CONFIGURE= yes -USES= desktop-file-utils gettext jpeg libtool pkgconfig -USE_GNOME= cairo gdkpixbuf2 gtk20 +USES= desktop-file-utils gettext jpeg libtool localbase pkgconfig +USE_GNOME= cairo gdkpixbuf2 gtk20 USE_XORG= x11 +USE_CXXSTD= gnu++98 +LIBS+= -lX11 INSTALLS_ICONS= yes - -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib -lX11 post-patch: @${REINPLACE_CMD} -e 's|glib/gstrfuncs.h|glib.h|g' \