diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-04-22 19:12:45 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-04-22 19:12:45 +0000 |
| commit | 8b76d681a72190b3dbe575894fc1f47df03e5751 (patch) | |
| tree | 47c37233312eb7baf120e33019bc7a1ba10b6fad /sci-visualization | |
| parent | 3bac0c1b93e7e7849ecfe749f6864ed1ad5e018d (diff) | |
| download | baldeagleos-repo-8b76d681a72190b3dbe575894fc1f47df03e5751.tar.gz baldeagleos-repo-8b76d681a72190b3dbe575894fc1f47df03e5751.tar.xz baldeagleos-repo-8b76d681a72190b3dbe575894fc1f47df03e5751.zip | |
Adding metadata
Diffstat (limited to 'sci-visualization')
| -rw-r--r-- | sci-visualization/xyscan/Manifest | 1 | ||||
| -rw-r--r-- | sci-visualization/xyscan/xyscan-4.6.8.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/sci-visualization/xyscan/Manifest b/sci-visualization/xyscan/Manifest index c0908f9179d4..76ffacfe3c23 100644 --- a/sci-visualization/xyscan/Manifest +++ b/sci-visualization/xyscan/Manifest @@ -1 +1,2 @@ DIST xyscan-4.66-src.tgz 7370446 BLAKE2B c52ab2a50a3655f9e224cc8f462d5f94e8bb6e948b1ea1670c981e394d921d20e0c21a0e6b340ed175a57673aacec87ea9fc9c452e475d1767538d9560ca27e0 SHA512 3c7e39ce80f1c67d13687c8982e73a9f8880dcbbc137ec5c65edcf4945a7de7e330c5ff1856d7792b486d2bcc2e4f34e6d6c2284e2e2a0d1e55b8afbc7b79e5e +DIST xyscan-4.68-src.tgz 7362847 BLAKE2B 53dc57f9c2459822b935f52dd08ed66c816de35dab881a0cdb36ff77af6263211198c3e6367315b39d97a0d25350c60303f119c8c268b6abe38694289ed615d9 SHA512 3fe82ed3728876aa35fb6b05506f8573da13afb98e54348f99227d440e7498c58ad797956aaea2c906bea05988fba888ace3f1a06e0253b9b9a6f95c098fe639 diff --git a/sci-visualization/xyscan/xyscan-4.6.8.ebuild b/sci-visualization/xyscan/xyscan-4.6.8.ebuild new file mode 100644 index 000000000000..658b8eb18cdd --- /dev/null +++ b/sci-visualization/xyscan/xyscan-4.6.8.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV=$(ver_rs 2 '') +inherit desktop qmake-utils + +DESCRIPTION="Tool for extracting data points from graphs" +HOMEPAGE="https://rhig.physics.yale.edu/~ullrich/software/xyscan" +SRC_URI="https://rhig.physics.yale.edu/~ullrich/software/${PN}/Distributions/${MY_PV}/${PN}-${MY_PV}-src.tgz" +S="${WORKDIR}/${PN}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + app-text/poppler[qt6] + dev-qt/qtcharts:6 + dev-qt/qtbase:6[gui,network,ssl,widgets] + dev-qt/qtmultimedia:6 +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-qt/qttools:6[linguist] + virtual/pkgconfig +" + +PATCHES=( "${FILESDIR}/${PN}-4.6.6-qt6.patch" ) + +src_prepare() { + default + sed -e "/path = /s:\"/usr/share/doc/xyscan/docs\":\"${EPREFIX}/usr/share/doc/${PF}/html\":" \ + -i src/xyscanBaseWindow.cpp || die "Failed to fix docs path" +} + +src_configure() { + eqmake6 +} + +src_install() { + dobin xyscan + local HTML_DOCS=( docs/. ) + einstalldocs + newicon images/xyscanIcon.png xyscan.png + make_desktop_entry xyscan "xyscan data point extractor" +} |
