summaryrefslogtreecommitdiff
path: root/dev-ruby/gnuplot
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-06-05 09:01:13 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-06-05 09:01:13 +0000
commitc2c9aff8c0524b47b95699ded988b89aa1309406 (patch)
tree8b0ecdf118995735a0e5014c7991d97c94428a46 /dev-ruby/gnuplot
parent9f814b4c24f5a9bd139baac62df5b34ad39b9dc1 (diff)
downloadbaldeagleos-repo-c2c9aff8c0524b47b95699ded988b89aa1309406.tar.gz
baldeagleos-repo-c2c9aff8c0524b47b95699ded988b89aa1309406.tar.xz
baldeagleos-repo-c2c9aff8c0524b47b95699ded988b89aa1309406.zip
Adding metadata
Diffstat (limited to 'dev-ruby/gnuplot')
-rw-r--r--dev-ruby/gnuplot/gnuplot-2.6.2-r4.ebuild33
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-ruby/gnuplot/gnuplot-2.6.2-r4.ebuild b/dev-ruby/gnuplot/gnuplot-2.6.2-r4.ebuild
new file mode 100644
index 000000000000..9247b631fc97
--- /dev/null
+++ b/dev-ruby/gnuplot/gnuplot-2.6.2-r4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby32 ruby33 ruby34"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="AUTHORS.txt ChangeLog README.textile"
+
+RUBY_FAKEGEM_TASK_TEST=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Gnuplot drawing library - Ruby Bindings"
+HOMEPAGE="https://rubygems.org/gems/gnuplot"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+RDEPEND="sci-visualization/gnuplot"
+
+all_ruby_prepare() {
+ # Existing metadata causes a crash in jruby, so use our own.
+ rm -f ../metadata || die "Unable to remove metadata."
+
+ sed -i -e 's/Config/RbConfig/' test/test_gnuplot.rb || die
+}
+
+each_ruby_test() {
+ ${RUBY} -Ctest test_gnuplot.rb || die
+}