diff options
author | David Seifert <soap@gentoo.org> | 2020-01-26 19:52:22 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-01-26 19:52:22 +0100 |
commit | 79502186a9cd671ceec44878a59f2a05fc81031b (patch) | |
tree | 6f4ff5f6b077996630ea84624a4fa9b3f35ff81a /sci-electronics/pcb/files | |
parent | sci-electronics/gerbv: Bump to 2.7.0 (diff) | |
download | gentoo-79502186a9cd671ceec44878a59f2a05fc81031b.tar.gz gentoo-79502186a9cd671ceec44878a59f2a05fc81031b.tar.bz2 gentoo-79502186a9cd671ceec44878a59f2a05fc81031b.zip |
sci-electronics/pcb: Bump to version 4.2.2
* EAPI 7
* Disable opengl unconditionally (due to EOL x11-libs/gtkglext)
* Remove USE="static-libs"
* Remove USE="motif"
* Remove USE="xrender"
Bug: https://bugs.gentoo.org/706526
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-electronics/pcb/files')
-rw-r--r-- | sci-electronics/pcb/files/pcb-4.2.2-fix-autotools.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sci-electronics/pcb/files/pcb-4.2.2-fix-autotools.patch b/sci-electronics/pcb/files/pcb-4.2.2-fix-autotools.patch new file mode 100644 index 000000000000..22a4563d2db3 --- /dev/null +++ b/sci-electronics/pcb/files/pcb-4.2.2-fix-autotools.patch @@ -0,0 +1,36 @@ +1. avoid rebuilding documentation +2. avoid non-portable syntax + +--- a/configure.ac ++++ b/configure.ac +@@ -7,6 +7,9 @@ + AC_GNU_SOURCE + AC_CONFIG_HEADERS([config.h]) + ++# avoid rebuilding documentation ++AM_MAINTAINER_MODE ++ + ########################################################################## + # + # Try to figure out if we are building from git sources. +@@ -1285,11 +1288,6 @@ + if test -d $srcdir/doc; then + AC_CONFIG_FILES(doc/Makefile) + fi +-if test -d $srcdir/doc/gs; then +- AC_CONFIG_FILES(doc/gs/Makefile) +- AC_CONFIG_FILES(doc/gs/gafrc) +- AC_CONFIG_FILES(doc/gs/gschemrc) +-fi + if test -d $srcdir/example; then + AC_CONFIG_FILES(example/Makefile) + AC_CONFIG_FILES(example/libraries/Makefile) +--- a/Makefile.am ++++ b/Makefile.am +@@ -15,5 +15,5 @@ + MAINTAINERCLEANFILES= $(INTLTOOL_FILES) + + ACLOCAL_AMFLAGS = -I m4 +-DISTCHECK_CONFIGURE_FLAGS := ${DISTCHECK_CONFIGURE_FLAGS} --disable-update-mime-database --disable-update-desktop-database GTK_UPDATE_ICON_THEME_BIN=true --with-gui=batch ++DISTCHECK_CONFIGURE_FLAGS = ${DISTCHECK_CONFIGURE_FLAGS} --disable-update-mime-database --disable-update-desktop-database GTK_UPDATE_ICON_THEME_BIN=true --with-gui=batch + |