diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-01-24 12:13:28 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-01-24 18:28:53 +0100 |
commit | 15cfbdc1ba0a05a7a32ecbcfe8d7bfb31d02933f (patch) | |
tree | 2b88c907f5742ddd6104c636c9a2e7a85207da9f /sci-visualization | |
parent | dev-cpp/catch: Version bump to 2.13.4 (diff) | |
download | gentoo-15cfbdc1ba0a05a7a32ecbcfe8d7bfb31d02933f.tar.gz gentoo-15cfbdc1ba0a05a7a32ecbcfe8d7bfb31d02933f.tar.bz2 gentoo-15cfbdc1ba0a05a7a32ecbcfe8d7bfb31d02933f.zip |
sci-visualization/gnuplot: Remove old
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/gnuplot/Manifest | 1 | ||||
-rw-r--r-- | sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch | 43 | ||||
-rw-r--r-- | sci-visualization/gnuplot/files/gnuplot-5.2.8-caca.patch | 33 | ||||
-rw-r--r-- | sci-visualization/gnuplot/files/gnuplot-5.2.8-double-free.patch | 21 | ||||
-rw-r--r-- | sci-visualization/gnuplot/files/gnuplot-5.2.8-font-syntax.patch | 36 | ||||
-rw-r--r-- | sci-visualization/gnuplot/gnuplot-5.2.8-r1.ebuild | 217 | ||||
-rw-r--r-- | sci-visualization/gnuplot/gnuplot-5.5.9999.ebuild | 203 | ||||
-rw-r--r-- | sci-visualization/gnuplot/metadata.xml | 2 |
8 files changed, 0 insertions, 556 deletions
diff --git a/sci-visualization/gnuplot/Manifest b/sci-visualization/gnuplot/Manifest index 5e56dc1dc99f..c6223eb5a98d 100644 --- a/sci-visualization/gnuplot/Manifest +++ b/sci-visualization/gnuplot/Manifest @@ -1,2 +1 @@ -DIST gnuplot-5.2.8.tar.gz 5340677 BLAKE2B 169f5bef44a64b3b7a5be40e28ea22ef24ebc7526fe13ab09e16495453c3922712603d63a03c3b4332368d2ae8cbe4ef57ec53e18bbb4ad2cde13e4cc534245a SHA512 513dff15236dcb58c3c5471cdaa0713242787dbf30ef860c3f69152cb87c6392e4973caff5eb178707bbb84c78548e806b2920864a37686bce49425fbfdc4e8c DIST gnuplot-5.4.1.tar.gz 5608076 BLAKE2B 7b2c30acd16b1aec3be9341c019449882a9231afe196bb05dc5d7925681296986de2be3463ca19d62ff1cea6dece0586b6bc8a54881c4fc2ec372635264ebb3d SHA512 2371830636d4c9ee93e9d6566dc2889e96ece3660b63ef4cfb6514e233510e5abaf4f93863bbe9a418f11db8e3b12a15242556aae52bb69591ad7d26e6581121 diff --git a/sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch b/sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch deleted file mode 100644 index 613a028ee79b..000000000000 --- a/sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch +++ /dev/null @@ -1,43 +0,0 @@ -Add configure option for ReGIS support. -https://bugs.gentoo.org/643888 - ---- gnuplot-5.2.2-orig/configure.ac -+++ gnuplot-5.2.2/configure.ac -@@ -1057,6 +1057,13 @@ - AC_DEFINE(HAVE_MIF,1, - [ Define to include support for mif terminal ],)) - -+dnl ReGIS terminal -+AC_ARG_WITH(regis,dnl -+[ --with-regis ReGIS terminal]) -+AS_IF([test "x${with_regis}" = "xyes"], -+ AC_DEFINE(HAVE_REGIS,1, -+ [ Define to include support for ReGIS terminal ],)) -+ - AC_ARG_WITH(cairo,dnl - [ --without-cairo cairo-based terminals (default enabled)],, - [test -z "${with_cairo}" && with_cairo=yes]) -@@ -1350,6 +1357,12 @@ - AC_MSG_RESULT([ mif terminal: no (use --with-mif to enable)]) - fi - -+if test "$with_regis" = yes; then -+ AC_MSG_RESULT([ ReGIS terminal: yes]) -+else -+ AC_MSG_RESULT([ ReGIS terminal: no (use --with-regis to enable)]) -+fi -+ - if test "$is_msdos" = yes; then - AC_MSG_RESULT([ svga terminal (MSDOS/djgpp): yes]) - fi ---- gnuplot-5.2.2-orig/src/term.h -+++ gnuplot-5.2.2/src/term.h -@@ -182,7 +182,7 @@ - #endif - - /* REGIS graphics language */ --#ifdef VMS -+#if defined(VMS) || defined(HAVE_REGIS) - # include "regis.trm" - #endif - diff --git a/sci-visualization/gnuplot/files/gnuplot-5.2.8-caca.patch b/sci-visualization/gnuplot/files/gnuplot-5.2.8-caca.patch deleted file mode 100644 index 2ce464f04499..000000000000 --- a/sci-visualization/gnuplot/files/gnuplot-5.2.8-caca.patch +++ /dev/null @@ -1,33 +0,0 @@ -Patch backported from branch-5-4-stable. -https://bugs.gentoo.org/690014 - ---- gnuplot-5.2.8-orig/term/caca.trm -+++ gnuplot-5.2.8/term/caca.trm -@@ -1909,8 +1909,11 @@ - CACA_result loop = CACA_loop; - caca_event_t ev; - const int event_mask = -- CACA_EVENT_KEY_PRESS | CACA_EVENT_RESIZE | CACA_EVENT_QUIT | -- CACA_EVENT_MOUSE_MOTION | CACA_EVENT_MOUSE_PRESS | CACA_EVENT_MOUSE_RELEASE; -+ CACA_EVENT_KEY_PRESS | CACA_EVENT_RESIZE | CACA_EVENT_QUIT -+#ifdef USE_MOUSE -+ | CACA_EVENT_MOUSE_MOTION | CACA_EVENT_MOUSE_PRESS | CACA_EVENT_MOUSE_RELEASE -+#endif -+ ; - static int mx = 0, my = 0; /* current mouse position */ - static unsigned long last_event_time = 0; - -@@ -2577,11 +2580,13 @@ - } - } - -+#ifdef USE_MOUSE - if (changed) { - /* Replot only if something changed. */ - CACA_zoom_or_replot = TRUE; - process_event(GE_replot, 0, 0, 0, 0, 0); - } -+#endif - } - - diff --git a/sci-visualization/gnuplot/files/gnuplot-5.2.8-double-free.patch b/sci-visualization/gnuplot/files/gnuplot-5.2.8-double-free.patch deleted file mode 100644 index e3da8fc40577..000000000000 --- a/sci-visualization/gnuplot/files/gnuplot-5.2.8-double-free.patch +++ /dev/null @@ -1,21 +0,0 @@ -https://bugs.gentoo.org/746419 - -This backports the following commit from upstream git: - -commit 591c0f804b5a78421d28edf2adcd429c914bbca1 -Author: Ethan A Merritt <merritt@u.washington.edu> -Date: Wed Sep 9 11:00:59 2020 -0700 - - successive failures of "set print <foo>" could cause double-free - Bug #2312 - ---- gnuplot-5.2.8-orig/src/command.c -+++ gnuplot-5.2.8/src/command.c -@@ -1867,6 +1867,7 @@ - #endif - if (0 > fclose(print_out)) - perror(print_out_name); -+ print_out = stderr; - } - - free(print_out_name); diff --git a/sci-visualization/gnuplot/files/gnuplot-5.2.8-font-syntax.patch b/sci-visualization/gnuplot/files/gnuplot-5.2.8-font-syntax.patch deleted file mode 100644 index a1df2ae49952..000000000000 --- a/sci-visualization/gnuplot/files/gnuplot-5.2.8-font-syntax.patch +++ /dev/null @@ -1,36 +0,0 @@ -https://bugs.gentoo.org/746419 - -This backports and consolidates the following commits from upstream git: - -commit a7205eda482948a0408b0ed29cdde89593feedc7 -Author: Ethan A Merritt <merritt@u.washington.edu> -Date: Sat Sep 12 10:18:10 2020 -0700 - - Better error handling for faulty font syntax - - Commit 660e2fbd failed to deal with an error detected at the final character - of a text string. - - Bugs #2303 #2308 - -commit 660e2fbd681cb47acd42595f050fb2f938194b0e -Author: Ethan A Merritt <merritt@u.washington.edu> -Date: Tue Sep 1 17:57:37 2020 -0700 - - Better error handling for faulty font syntax - - A missing close-quote in an enhanced text font specification could - cause a segfault. - Bug #2303 - ---- gnuplot-5.2.8-orig/src/term.c -+++ gnuplot-5.2.8/src/term.c -@@ -2361,7 +2361,7 @@ - ++p; - if (*p != *start_of_fontname) { - int_warn(NO_CARET, "cannot interpret font name %s", start_of_fontname); -- p = start_of_fontname; -+ break; - } - start_of_fontname++; - end_of_fontname = p++; diff --git a/sci-visualization/gnuplot/gnuplot-5.2.8-r1.ebuild b/sci-visualization/gnuplot/gnuplot-5.2.8-r1.ebuild deleted file mode 100644 index b04efa536360..000000000000 --- a/sci-visualization/gnuplot/gnuplot-5.2.8-r1.ebuild +++ /dev/null @@ -1,217 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic readme.gentoo-r1 toolchain-funcs wxwidgets - -DESCRIPTION="Command-line driven interactive plotting program" -HOMEPAGE="http://www.gnuplot.info/" - -if [[ -z ${PV%%*9999} ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.code.sf.net/p/gnuplot/gnuplot-main" - EGIT_BRANCH="branch-5-2-stable" - MY_P="${PN}" - EGIT_CHECKOUT_DIR="${WORKDIR}/${MY_P}" -else - MY_P="${P/_/.}" - SRC_URI="mirror://sourceforge/gnuplot/${MY_P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -fi - -LICENSE="gnuplot" -SLOT="0" -IUSE="aqua bitmap cairo compat doc examples +gd ggi latex libcaca libcerf lua qt5 readline regis svga wxwidgets X" - -RDEPEND=" - cairo? ( - x11-libs/cairo - x11-libs/pango ) - gd? ( >=media-libs/gd-2.0.35-r3:2=[png] ) - ggi? ( media-libs/libggi ) - latex? ( - virtual/latex-base - lua? ( - dev-tex/pgf - >=dev-texlive/texlive-latexrecommended-2008-r2 ) ) - libcaca? ( media-libs/libcaca ) - lua? ( dev-lang/lua:0 ) - qt5? ( - dev-qt/qtcore:5= - dev-qt/qtgui:5= - dev-qt/qtnetwork:5= - dev-qt/qtprintsupport:5= - dev-qt/qtsvg:5= - dev-qt/qtwidgets:5= ) - readline? ( sys-libs/readline:0= ) - libcerf? ( sci-libs/libcerf ) - svga? ( media-libs/svgalib ) - wxwidgets? ( - x11-libs/wxGTK:3.0-gtk3[X] - x11-libs/cairo - x11-libs/pango - x11-libs/gtk+:2 ) - X? ( x11-libs/libXaw )" - -DEPEND="${RDEPEND}" - -BDEPEND=" - virtual/pkgconfig - doc? ( - virtual/latex-base - dev-texlive/texlive-latexextra - app-text/ghostscript-gpl ) - qt5? ( dev-qt/linguist-tools:5 )" - -S="${WORKDIR}/${MY_P}" - -GP_VERSION="${PV%.*}" -E_SITEFILE="lisp/50${PN}-gentoo.el" -TEXMF="${EPREFIX}/usr/share/texmf-site" - -src_prepare() { - eapply "${FILESDIR}"/${PN}-5.0.1-fix-underlinking.patch - eapply "${FILESDIR}"/${PN}-5.0.6-no-picins.patch - eapply "${FILESDIR}"/${PN}-5.2.2-regis.patch - eapply "${FILESDIR}"/${PN}-5.2.8-caca.patch - eapply "${FILESDIR}"/${PN}-5.2.8-double-free.patch - eapply "${FILESDIR}"/${PN}-5.2.8-font-syntax.patch - eapply_user - - if [[ -z ${PV%%*9999} ]]; then - local dir - for dir in config demo m4 term tutorial; do - emake -C "$dir" -f Makefile.am.in Makefile.am - done - fi - - # Add special version identification as required by provision 2 - # of the gnuplot license - sed -i -e "1s/.*/& (Gentoo revision ${PR})/" PATCHLEVEL || die - - DOC_CONTENTS='Gnuplot no longer links against pdflib, see the ChangeLog - for details. You can use the "pdfcairo" terminal for PDF output.' - use cairo || DOC_CONTENTS+=' It is available with USE="cairo".' - use svga && DOC_CONTENTS+='\n\nIn order to enable ordinary users to use - SVGA console graphics, gnuplot needs to be set up as setuid root. - Please note that this is usually considered to be a security hazard. - As root, manually "chmod u+s /usr/bin/gnuplot".' - use gd && DOC_CONTENTS+="\n\nFor font support in png/jpeg/gif output, - you may have to set the GDFONTPATH and GNUPLOT_DEFAULT_GDFONT - environment variables. See the FAQ file in /usr/share/doc/${PF}/ - for more information." - - eautoreconf - - # Make sure we don't mix build & host flags. - sed -i \ - -e 's:@CPPFLAGS@:$(BUILD_CPPFLAGS):' \ - -e 's:@CFLAGS@:$(BUILD_CFLAGS):' \ - -e 's:@LDFLAGS@:$(BUILD_LDFLAGS):' \ - -e 's:@CC@:$(CC_FOR_BUILD):' \ - docs/Makefile.in || die -} - -src_configure() { - if ! use latex; then - sed -i -e '/SUBDIRS/s/LaTeX//' share/Makefile.in || die - fi - - if use wxwidgets; then - WX_GTK_VER="3.0-gtk3" - setup-wxwidgets - fi - - tc-export CC CXX #453174 - tc-export_build_env BUILD_CC - export CC_FOR_BUILD=${BUILD_CC} - - use qt5 && append-cxxflags -std=c++11 - - econf \ - --with-texdir="${TEXMF}/tex/latex/${PN}" \ - --with-readline=$(usex readline gnu builtin) \ - $(use_with bitmap bitmap-terminals) \ - $(use_with cairo) \ - $(use_enable compat backwards-compatibility) \ - $(use_with doc tutorial) \ - $(use_with gd) \ - "$(use_with ggi ggi "${EPREFIX}/usr/$(get_libdir)")" \ - "$(use_with ggi xmi "${EPREFIX}/usr/$(get_libdir)")" \ - "$(use_with libcaca caca "${EPREFIX}/usr/$(get_libdir)")" \ - $(use_with libcerf) \ - $(use_with lua) \ - $(use_with regis) \ - $(use_with svga linux-vga) \ - $(use_with X x) \ - --enable-stats \ - $(use_with qt5 qt qt5) \ - $(use_enable wxwidgets) \ - DIST_CONTACT="https://bugs.gentoo.org/" \ - EMACS=no -} - -src_compile() { - # Prevent access violations, see bug 201871 - export VARTEXFONTS="${T}/fonts" - - # We believe that the following line is no longer needed. - # In case of problems file a bug report at bugs.gentoo.org. - #addwrite /dev/svga:/dev/mouse:/dev/tts/0 - - emake all - - if use doc; then - # Avoid sandbox violation in epstopdf/ghostscript - addpredict /var/cache/fontconfig - if use cairo && use gd; then - emake -C docs pdf - else - ewarn "Cannot build figures unless cairo and gd are enabled." - ewarn "Building documentation without figures." - emake -C docs pdf_nofig - mv docs/nofigures.pdf docs/gnuplot.pdf || die - fi - emake -C tutorial pdf - fi -} - -src_install() { - emake DESTDIR="${D}" install - - dodoc BUGS ChangeLog NEWS PGPKEYS README* RELEASE_NOTES TODO - newdoc term/PostScript/README README-ps - newdoc term/js/README README-js - use lua && newdoc term/lua/README README-lua - readme.gentoo_create_doc - - if use examples; then - # Demo files - insinto /usr/share/${PN}/${GP_VERSION} - doins -r demo - rm -f "${ED}"/usr/share/${PN}/${GP_VERSION}/demo/Makefile* - rm -f "${ED}"/usr/share/${PN}/${GP_VERSION}/demo/binary* - fi - - if use doc; then - # Manual, tutorial, FAQ - dodoc docs/gnuplot.pdf tutorial/{tutorial.dvi,tutorial.pdf} FAQ.pdf - # Documentation for making PostScript files - docinto psdoc - dodoc docs/psdoc/{*.doc,*.tex,*.ps,*.gpi,README} - fi -} - -src_test() { - GNUTERM="unknown" default_src_test -} - -pkg_postinst() { - use latex && texmf-update - readme.gentoo_print_elog -} - -pkg_postrm() { - use latex && texmf-update -} diff --git a/sci-visualization/gnuplot/gnuplot-5.5.9999.ebuild b/sci-visualization/gnuplot/gnuplot-5.5.9999.ebuild deleted file mode 100644 index b2dc905de831..000000000000 --- a/sci-visualization/gnuplot/gnuplot-5.5.9999.ebuild +++ /dev/null @@ -1,203 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic readme.gentoo-r1 toolchain-funcs wxwidgets - -DESCRIPTION="Command-line driven interactive plotting program" -HOMEPAGE="http://www.gnuplot.info/" - -if [[ -z ${PV%%*9999} ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.code.sf.net/p/gnuplot/gnuplot-main" - EGIT_BRANCH="master" - MY_P="${PN}" - EGIT_CHECKOUT_DIR="${WORKDIR}/${MY_P}" -else - MY_P="${P/_/.}" - SRC_URI="mirror://sourceforge/gnuplot/${MY_P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -fi - -S="${WORKDIR}/${MY_P}" - -LICENSE="gnuplot" -SLOT="0" -IUSE="aqua bitmap cairo doc examples +gd ggi latex libcaca libcerf lua qt5 readline regis wxwidgets X" - -RDEPEND=" - cairo? ( - x11-libs/cairo - x11-libs/pango ) - gd? ( >=media-libs/gd-2.0.35-r3:2=[png] ) - ggi? ( media-libs/libggi ) - latex? ( - virtual/latex-base - lua? ( - dev-tex/pgf - >=dev-texlive/texlive-latexrecommended-2008-r2 ) ) - libcaca? ( media-libs/libcaca ) - lua? ( dev-lang/lua:0 ) - qt5? ( - dev-qt/qtcore:5= - dev-qt/qtgui:5= - dev-qt/qtnetwork:5= - dev-qt/qtprintsupport:5= - dev-qt/qtsvg:5= - dev-qt/qtwidgets:5= ) - readline? ( sys-libs/readline:0= ) - libcerf? ( sci-libs/libcerf ) - wxwidgets? ( - x11-libs/wxGTK:3.0-gtk3[X] - x11-libs/cairo - x11-libs/pango - x11-libs/gtk+:3 ) - X? ( x11-libs/libXaw )" - -DEPEND="${RDEPEND}" - -BDEPEND=" - virtual/pkgconfig - doc? ( - virtual/latex-base - dev-texlive/texlive-latexextra - dev-texlive/texlive-langgreek - app-text/ghostscript-gpl ) - qt5? ( dev-qt/linguist-tools:5 )" - -GP_VERSION="${PV%.*}" -E_SITEFILE="lisp/50${PN}-gentoo.el" -TEXMF="${EPREFIX}/usr/share/texmf-site" - -PATCHES=( - "${FILESDIR}"/${PN}-5.0.1-fix-underlinking.patch - "${FILESDIR}"/${PN}-5.0.6-no-picins.patch -) - -src_prepare() { - default - - if [[ ${PV##*.} = 9999 ]]; then - local dir - for dir in config demo m4 term tutorial; do - emake -C "$dir" -f Makefile.am.in Makefile.am - done - fi - - # Add special version identification as required by provision 2 - # of the gnuplot license - sed -i -e "1s/.*/& (Gentoo revision ${PR})/" PATCHLEVEL || die - - eautoreconf - - # Make sure we don't mix build & host flags. - sed -i \ - -e 's:@CPPFLAGS@:$(BUILD_CPPFLAGS):' \ - -e 's:@CFLAGS@:$(BUILD_CFLAGS):' \ - -e 's:@LDFLAGS@:$(BUILD_LDFLAGS):' \ - -e 's:@CC@:$(CC_FOR_BUILD):' \ - docs/Makefile.in || die -} - -src_configure() { - if ! use latex; then - sed -i -e '/SUBDIRS/s/LaTeX//' share/Makefile.in || die - fi - - if use wxwidgets; then - WX_GTK_VER="3.0-gtk3" - setup-wxwidgets - fi - - tc-export CC CXX #453174 - tc-export_build_env BUILD_CC - export CC_FOR_BUILD=${BUILD_CC} - - use qt5 && append-cxxflags -std=c++11 - - econf \ - --with-texdir="${TEXMF}/tex/latex/${PN}" \ - --with-readline=$(usex readline gnu builtin) \ - $(use_with bitmap bitmap-terminals) \ - $(use_with cairo) \ - $(use_with gd) \ - "$(use_with ggi ggi "${EPREFIX}/usr/$(get_libdir)")" \ - "$(use_with libcaca caca "${EPREFIX}/usr/$(get_libdir)")" \ - $(use_with libcerf) \ - $(use_with lua) \ - $(use_with regis) \ - $(use_with X x) \ - --enable-stats \ - $(use_with qt5 qt qt5) \ - $(use_enable wxwidgets) \ - DIST_CONTACT="https://bugs.gentoo.org/" \ - EMACS=no -} - -src_compile() { - # Prevent access violations, see bug 201871 - export VARTEXFONTS="${T}/fonts" - - emake all - - if use doc; then - # Avoid sandbox violation in epstopdf/ghostscript - addpredict /var/cache/fontconfig - if use cairo; then - emake -C docs pdf - else - ewarn "Cannot build figures unless cairo is enabled." - ewarn "Building documentation without figures." - emake -C docs pdf_nofig - mv docs/nofigures.pdf docs/gnuplot.pdf || die - fi - fi -} - -src_install() { - emake DESTDIR="${D}" install - - dodoc BUGS NEWS PGPKEYS README* RELEASE_NOTES - newdoc term/PostScript/README README-ps - newdoc term/js/README README-js - use lua && newdoc term/lua/README README-lua - - local DOC_CONTENTS='Gnuplot no longer links against pdflib. You can - use the "pdfcairo" terminal for PDF output.' - use cairo || DOC_CONTENTS+=' It is available with USE="cairo".' - use gd && DOC_CONTENTS+="\n\nFor font support in png/jpeg/gif output, - you may have to set the GDFONTPATH and GNUPLOT_DEFAULT_GDFONT - environment variables. See the FAQ file in /usr/share/doc/${PF}/ - for more information." - readme.gentoo_create_doc - - if use examples; then - # Demo files - insinto /usr/share/${PN}/${GP_VERSION} - doins -r demo - rm -f "${ED}"/usr/share/${PN}/${GP_VERSION}/demo/Makefile* - rm -f "${ED}"/usr/share/${PN}/${GP_VERSION}/demo/binary* - fi - - if use doc; then - # Manual, FAQ - dodoc docs/gnuplot.pdf #FAQ.pdf - # Documentation for making PostScript files - docinto psdoc - dodoc docs/psdoc/{*.doc,*.tex,*.ps,*.gpi,README} - fi -} - -src_test() { - emake check GNUTERM="dumb" -} - -pkg_postinst() { - use latex && texmf-update - readme.gentoo_print_elog -} - -pkg_postrm() { - use latex && texmf-update -} diff --git a/sci-visualization/gnuplot/metadata.xml b/sci-visualization/gnuplot/metadata.xml index b258754a4c25..c3e53e3e4a6c 100644 --- a/sci-visualization/gnuplot/metadata.xml +++ b/sci-visualization/gnuplot/metadata.xml @@ -16,8 +16,6 @@ primarily for the visual display of scientific data. </longdescription> <use> - <flag name="compat">Enable backwards compatibility with version 4 - syntax</flag> <flag name="gd">Add support for <pkg>media-libs/gd</pkg>. Needed for GIF, JPEG, and PNG image output.</flag> <flag name="libcerf">Enable special functions from |