From owner-svn-ports-all@freebsd.org Wed Apr 17 05:58:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 681EE1587A52; Wed, 17 Apr 2019 05:58:07 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0B96368300; Wed, 17 Apr 2019 05:58:07 +0000 (UTC) (envelope-from pi@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 E5B4D2D03; Wed, 17 Apr 2019 05:58:06 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3H5w6u4033139; Wed, 17 Apr 2019 05:58:06 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3H5w6R8033138; Wed, 17 Apr 2019 05:58:06 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201904170558.x3H5w6R8033138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 17 Apr 2019 05:58:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r499146 - in head/cad/lepton-eda: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/cad/lepton-eda: . files X-SVN-Commit-Revision: 499146 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0B96368300 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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 Apr 2019 05:58:07 -0000 Author: pi Date: Wed Apr 17 05:58:06 2019 New Revision: 499146 URL: https://svnweb.freebsd.org/changeset/ports/499146 Log: cad/lepton-eda: fix build on 13.0-CURRENT PR: 236879 Submitted by: graahnul.grom@gmail.com (maintainer) Added: head/cad/lepton-eda/files/patch-utils_gschlas_Makefile.am (contents, props changed) Modified: head/cad/lepton-eda/Makefile Modified: head/cad/lepton-eda/Makefile ============================================================================== --- head/cad/lepton-eda/Makefile Wed Apr 17 03:00:38 2019 (r499145) +++ head/cad/lepton-eda/Makefile Wed Apr 17 05:58:06 2019 (r499146) @@ -55,7 +55,15 @@ NLS_USES= gettext-runtime # work around for errors while running # build-tools/icon-theme-installer: # -# Cannot find 'install -m 0644'; You probably want to pass -x $(INSTALL_DATA) +# Cannot find 'install -m 0644'; You probably want to pass -x ${INSTALL_DATA} +# +# +# NOTE: in the error message above (I wanted to show it +# verbatim), INSTALL_DATA actually is enclosed in +# parenthesis, not in curly brackets. +# I had to change it to appease portlint(1), which does +# not ignore comments in makefiles. +# # # for 3 dirs (attrib/data, liblepton/data, schematic/data) # the following lines should be in the generated Makefile: Added: head/cad/lepton-eda/files/patch-utils_gschlas_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/lepton-eda/files/patch-utils_gschlas_Makefile.am Wed Apr 17 05:58:06 2019 (r499146) @@ -0,0 +1,11 @@ +--- utils/gschlas/Makefile.am.orig 2018-12-11 19:24:41 UTC ++++ utils/gschlas/Makefile.am +@@ -16,7 +16,7 @@ lepton_schlas_CPPFLAGS = -I$(top_srcdir) + -I$(top_srcdir) -I$(includedir) + lepton_schlas_CFLAGS = $(GCC_CFLAGS) $(MINGW_CFLAGS) $(GLIB_CFLAGS) \ + $(GUILE_CFLAGS) $(GDK_PIXBUF_CFLAGS) +-lepton_schlas_LDFLAGS = $(GLIB_LIBS) $(GUILE_LIBS) $(GDK_PIXBUF_LIBS) ++lepton_schlas_LDFLAGS = $(GLIB_LIBS) $(GUILE_LIBS) $(GDK_PIXBUF_LIBS) $(GIO_LIBS) + lepton_schlas_LDADD = $(top_builddir)/liblepton/src/liblepton.la + + MOSTLYCLEANFILES = *.log *.ps core FILE *~