Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Apr 2019 05:58:06 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
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
Message-ID:  <201904170558.x3H5w6R8033138@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 *~



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904170558.x3H5w6R8033138>