diff options
Diffstat (limited to 'sci-geosciences')
148 files changed, 937 insertions, 3308 deletions
diff --git a/sci-geosciences/folium/Manifest b/sci-geosciences/folium/Manifest index 64f4846142f1..2441b32dbbb0 100644 --- a/sci-geosciences/folium/Manifest +++ b/sci-geosciences/folium/Manifest @@ -1,2 +1,2 @@ -DIST folium-0.17.0.tar.gz 8212314 BLAKE2B aac66b49fee5633e6c5d097094cc4ff21d835f87c5017384f2e39236aece1f4820c0dad80b87abcbce30ddb2a3c48332656b0ad07cecdd5b2dbf81c9329eb852 SHA512 2f45237064ea0bd07f95c53ab482bb33bd1786cd431237df23f1d2b9f5f063c43a0f590236b408d257e2567c16444651e9fe1a4ec9c13e6f4934a0330c7d86cc -DIST folium-0.18.0.tar.gz 8193343 BLAKE2B d36bedfc8038bd71bc0f22ab0c998bab8b32f8e521c32a6a9b0f6f0cc8d1804310346d7531d83e96efc3f804de1eeef5e2ec851b67b9a5e79ab64d42d5410e60 SHA512 a37dfa47b5bd256298df151ad48d71dfeaf5170c6b4e02d28a3f73aa749cfaf931e4ee91110dd3d027f047d46f309111beeca52dfcfafebe5f38597421ecb3c2 +DIST folium-0.19.3.tar.gz 8193962 BLAKE2B 956cb050527270ffa54a2d8331e453e10359ebf99be0e37decffd512cd3f1a3dfde626840608d9e84621b9a4b0e5f5cd278d8cf25533debe8b5e2a1a88b51fe6 SHA512 2ff2fca474ff7ab911b184a2b144ca5253bc04a673f61f668efcd9ea2041f50ed3172daab7ae86209bd1aa51da3894358cfb0eec7203de9692886aea88c2a202 +DIST folium-0.19.4.tar.gz 8189535 BLAKE2B a4453f3bd6d2e36d2768f904aa0a621aad25c43ad16d6f774a1ff651c102d05cd567e359eaab20c27d63a62c9fa87b014defcd468c1b0105ff1243111fed85fd SHA512 79cd52a7fd77a6446512cd7bae29bb2200c61d3fb3c7e895e24aa8905d8936c65ba3730204eeda2851db91bbdde14de042cc70d423c76e6e61d60e84301f9afb diff --git a/sci-geosciences/folium/folium-0.17.0.ebuild b/sci-geosciences/folium/folium-0.19.3.ebuild index 4aa2aa656206..1f4b583ab221 100644 --- a/sci-geosciences/folium/folium-0.17.0.ebuild +++ b/sci-geosciences/folium/folium-0.19.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2024 Gentoo Authors +# Copyright 2021-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -35,14 +35,12 @@ BDEPEND=" distutils_enable_tests pytest -src_prepare() { - rm -r tests/selenium || die # require chromedriver - rm tests/test_folium.py || die # require geopandas - rm tests/test_raster_layers.py || die # require xyzservices - rm tests/plugins/test_time_slider_choropleth.py || die # require geopandas - rm tests/test_repr.py || die # require geckodriver - default -} +EPYTEST_IGNORE=( + tests/selenium # require chromedriver + tests/test_folium.py # require geopandas + tests/plugins/test_time_slider_choropleth.py # require geopandas + tests/test_repr.py # require geckodriver +) python_test() { epytest -m 'not web' diff --git a/sci-geosciences/folium/folium-0.18.0.ebuild b/sci-geosciences/folium/folium-0.19.4.ebuild index 4aa2aa656206..1f4b583ab221 100644 --- a/sci-geosciences/folium/folium-0.18.0.ebuild +++ b/sci-geosciences/folium/folium-0.19.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2024 Gentoo Authors +# Copyright 2021-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -35,14 +35,12 @@ BDEPEND=" distutils_enable_tests pytest -src_prepare() { - rm -r tests/selenium || die # require chromedriver - rm tests/test_folium.py || die # require geopandas - rm tests/test_raster_layers.py || die # require xyzservices - rm tests/plugins/test_time_slider_choropleth.py || die # require geopandas - rm tests/test_repr.py || die # require geckodriver - default -} +EPYTEST_IGNORE=( + tests/selenium # require chromedriver + tests/test_folium.py # require geopandas + tests/plugins/test_time_slider_choropleth.py # require geopandas + tests/test_repr.py # require geckodriver +) python_test() { epytest -m 'not web' diff --git a/sci-geosciences/gmt/files/gmt-6.4.0-mergesort.patch b/sci-geosciences/gmt/files/gmt-6.4.0-mergesort.patch new file mode 100644 index 000000000000..55a31f29e44b --- /dev/null +++ b/sci-geosciences/gmt/files/gmt-6.4.0-mergesort.patch @@ -0,0 +1,57 @@ +From a898ed6598541a70976a44ece58f5f358a80e1bc Mon Sep 17 00:00:00 2001 +From: Paul Wessel <pwessel@hawaii.edu> +Date: Mon, 24 Apr 2023 14:41:35 +0200 +Subject: [PATCH] Ensure mergesort is declared if needed +Upstream: https://github.com/GenericMappingTools/gmt/pull/7411 +Bug: https://bugs.gentoo.org/945480 + +See #7410 for background. Here I implement it a bit differently. The mergesort function is used both in a module (gmtspatial) as well as by some gmt_*.c libraries, hence if it is not part of the standard libraries we declare it in gmt_prototypes.h so it is set for both modules and libs. +--- a/src/gmt_init.c ++++ b/src/gmt_init.c +@@ -167,6 +167,10 @@ + # include <mex.h> + #endif + ++#ifndef HAVE_MERGESORT ++#include "mergesort.c" ++#endif ++ + /* These are used in gmtinit_init_custom_annot and gmtinit_decode_tinfo only */ + #define GMT_ITEM_ANNOT 0 + #define GMT_ITEM_INTVAL 1 +--- a/src/gmt_prototypes.h ++++ b/src/gmt_prototypes.h +@@ -39,6 +39,15 @@ EXTERN_MSC void gmt_grd_dump (struct GMT_GRID_HEADER *header, gmt_grdfloat *grid + EXTERN_MSC char * gmt_strdup (struct GMT_CTRL *GMT, const char *s); + #endif + ++#ifdef __APPLE__ ++/* macOX has it built in, so ensure we define this flag */ ++#define HAVE_MERGESORT ++#endif ++ ++#ifndef HAVE_MERGESORT ++EXTERN_MSC int mergesort (void *base, size_t nmemb, size_t size, int (*cmp)(const void *, const void *)); ++#endif ++ + /* gmt_nc.c: */ + + EXTERN_MSC bool gmt_nc_is_cube (struct GMTAPI_CTRL *API, char *file); +--- a/src/gmtspatial.c ++++ b/src/gmtspatial.c +@@ -165,15 +165,6 @@ struct GMTSPATIAL_PAIR { + uint64_t pos; + }; + +-#ifdef __APPLE__ +-/* macOX has it built in, so ensure we define this flag */ +-#define HAVE_MERGESORT +-#endif +- +-#ifndef HAVE_MERGESORT +-#include "mergesort.c" +-#endif +- + static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */ + struct GMTSPATIAL_CTRL *C; + diff --git a/sci-geosciences/gmt/gmt-6.4.0.ebuild b/sci-geosciences/gmt/gmt-6.4.0-r1.ebuild index ab7b61b5eb63..7f7d94e82835 100644 --- a/sci-geosciences/gmt/gmt-6.4.0.ebuild +++ b/sci-geosciences/gmt/gmt-6.4.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -34,6 +34,10 @@ RDEPEND="${DEPEND} sci-geosciences/gshhg-gmt " +PATCHES=( + "${FILESDIR}/${P}-mergesort.patch" +) + src_prepare() { cmake_src_prepare # Rename man pages to avoid a name conflict with gmt5 diff --git a/sci-geosciences/gnome-maps/Manifest b/sci-geosciences/gnome-maps/Manifest index ba98876cbaf2..ec6c859ec909 100644 --- a/sci-geosciences/gnome-maps/Manifest +++ b/sci-geosciences/gnome-maps/Manifest @@ -1,2 +1,2 @@ -DIST gnome-maps-45.5.tar.xz 3141872 BLAKE2B 3064a7ba2e96eaca7c5ad3a66874eb05bde1e675076003f3470ab5bb3bab04525e83e09a2239524247e1963af768d3e36512cbe3bc4dfe05dd951570b4488567 SHA512 cfcf616c331b8feebd79e31585a7f6f0aa05d3cf48713930635585a7d069996ec8c739b6bc1528b649d01c59307a39402d46a27c5e773d1e6b9b6a46362af35b DIST gnome-maps-46.11.tar.xz 3195792 BLAKE2B 6942a3801e738e981c7b462f23363c92e164c7cea55b650b9ef65fdc623e8bf279c11ef459af2ba91bc077288dff86d54fef9f3bfb1e00832bdffdc2f076f783 SHA512 c34f4535af6db93eca7ed7b7be0778bbfdae53aba1a32ec4882a84d82eeff6d82a365ef4ac18b3f55a829e044d680869827c5b897ddeb12b16a17d08f50f9ba1 +DIST gnome-maps-47.3.tar.xz 3272236 BLAKE2B 4f74b5ad7b7302d79c9d1b1198b5d6f9b6a31c56c01310f0e37ada4645af93909a3015ed6c4a3d7c22a8a25624bc470a54645d8d1e33f4b3c89752a9ec056bf1 SHA512 009d967fd671a3542c76262a7ed9cd10f2afd2d1242c6f7a863377b78b395e9906edc488ef9808f075a239266fd0c6325fd2ed6e6c081243b3d9e7a3e53e9a09 diff --git a/sci-geosciences/gnome-maps/gnome-maps-46.11.ebuild b/sci-geosciences/gnome-maps/gnome-maps-46.11.ebuild index 3ce5ef68e79e..2ef14e1604d8 100644 --- a/sci-geosciences/gnome-maps/gnome-maps-46.11.ebuild +++ b/sci-geosciences/gnome-maps/gnome-maps-46.11.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://apps.gnome.org/Maps/" LICENSE="CC0-1.0 GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86" # Pure introspection dependencies found by grepping imports in ${S} RDEPEND=" diff --git a/sci-geosciences/gnome-maps/gnome-maps-45.5.ebuild b/sci-geosciences/gnome-maps/gnome-maps-47.3.ebuild index 8561146268a1..6e5722c445c4 100644 --- a/sci-geosciences/gnome-maps/gnome-maps-45.5.ebuild +++ b/sci-geosciences/gnome-maps/gnome-maps-47.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,26 +6,28 @@ EAPI=8 inherit gnome.org gnome2-utils meson xdg DESCRIPTION="A map application for GNOME" -HOMEPAGE="https://wiki.gnome.org/Apps/Maps" +HOMEPAGE="https://apps.gnome.org/Maps/" -LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0" +LICENSE="CC0-1.0 GPL-2+" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" # Pure introspection dependencies found by grepping imports in ${S} RDEPEND=" >=dev-libs/glib-2.66.0:2 >=dev-libs/gjs-1.69.2 >=dev-libs/gobject-introspection-0.10.1:= - gui-libs/gtk:4[introspection] + >=gui-libs/gtk-4.10:4[introspection] >=app-misc/geoclue-0.12.99:2.0[introspection] - >=gui-libs/libadwaita-1.4_alpha:1[introspection] + >=gui-libs/libadwaita-1.5:1[introspection] >=dev-libs/libgweather-4.2.0:4=[introspection] >=sci-geosciences/geocode-glib-3.15.2:2[introspection] dev-libs/libportal:=[introspection] - >=media-libs/libshumate-1.1_beta:1.0=[introspection] + >=media-libs/libshumate-1.2_alpha:1.0=[introspection] dev-libs/libxml2:2 >=net-libs/rest-0.9.1:1.0[introspection] + >=gnome-base/librsvg-2.0 + >=dev-libs/json-glib-1.0 app-crypt/libsecret[introspection] media-libs/graphene[introspection] diff --git a/sci-geosciences/gpsbabel/Manifest b/sci-geosciences/gpsbabel/Manifest index fd35d4f0d4e5..c8a792d54d33 100644 --- a/sci-geosciences/gpsbabel/Manifest +++ b/sci-geosciences/gpsbabel/Manifest @@ -1 +1,2 @@ +DIST gpsbabel.org-style3.css 2171 BLAKE2B 7fafef65e37d7c7cd183be06caafdbf303ac334484d7c09b4e668e8845f156f850b6f4cc6ac1aa081627367e999fa30d3505400e2aabd03fa117f6389318254f SHA512 33b843e0431de6d71a83c58da35ede28435e5a4746f59e52350c6e4451659e1b443d3c0dd52df1c68001e9937787820fb96afc363ec1ae7d23430bfed31dbc83 DIST gpsbabel_1_9_0.tar.gz 14514572 BLAKE2B cdea8c74c1a75c4707b071b8a08fe83ce7fd3c6a6fd107c00d8fed958c9674c9f81de548a5cab7f9613a5d9f41834219f93bf7cabbc356047ef07f6667347bfe SHA512 e8591aef8015470471ff7ff6a75ab4a71a584f8de2ac00f3957d06ee76145bf1f53c26a12b8d963f1b96ce09270f54fbd5e96c80eccbeb8466ff94a75b72972d diff --git a/sci-geosciences/gpsbabel/files/gpsbabel-1.9.0-xmldoc.patch b/sci-geosciences/gpsbabel/files/gpsbabel-1.9.0-xmldoc.patch new file mode 100644 index 000000000000..2bf36f39a84c --- /dev/null +++ b/sci-geosciences/gpsbabel/files/gpsbabel-1.9.0-xmldoc.patch @@ -0,0 +1,11 @@ +--- a/tools/make_gpsbabel_html.sh ++++ b/tools/make_gpsbabel_html.sh +@@ -10,6 +10,7 @@ xsltproc \ + --stringparam html.cleanup "1" \ + --stringparam make.clean.html "1" \ + --stringparam html.valid.html "1" \ +- --stringparam html.stylesheet "https://www.gpsbabel.org/style3.css" \ ++ --stringparam html.stylesheet "gpsbabel.org-style3.css" \ ++ --nonet \ + http://docbook.sourceforge.net/release/xsl-ns/current/xhtml/docbook.xsl \ + xmldoc/readme.xml diff --git a/sci-geosciences/gpsbabel/files/gpsbabel-1.9.0-xmllint.patch b/sci-geosciences/gpsbabel/files/gpsbabel-1.9.0-xmllint.patch new file mode 100644 index 000000000000..46a5365568d3 --- /dev/null +++ b/sci-geosciences/gpsbabel/files/gpsbabel-1.9.0-xmllint.patch @@ -0,0 +1,10 @@ +--- a/tools/make_gpsbabel_doc.sh ++++ b/tools/make_gpsbabel_doc.sh +@@ -2,7 +2,6 @@ + set -ex + + perl xmldoc/makedoc +-xmllint --noout --relaxng http://docbook.org/xml/5.0/rng/docbook.rng xmldoc/readme.xml + # the following doesn't seem to work. + #xmllint --noout --schematron http://docbook.org/xml/5.0/sch/docbook.sch xmldoc/readme.xml + # jing and many depedencies removed from fedora diff --git a/sci-geosciences/gpsbabel/gpsbabel-1.9.0.ebuild b/sci-geosciences/gpsbabel/gpsbabel-1.9.0-r1.ebuild index 56e727b1bd61..bf23fbf825dc 100644 --- a/sci-geosciences/gpsbabel/gpsbabel-1.9.0.ebuild +++ b/sci-geosciences/gpsbabel/gpsbabel-1.9.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,14 +16,16 @@ if [[ ${PV} == 9999 ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/gpsbabel/gpsbabel.git" else - SRC_URI="https://github.com/gpsbabel/gpsbabel/archive/gpsbabel_${MY_PV}.tar.gz" + SRC_URI=" + https://github.com/gpsbabel/gpsbabel/archive/gpsbabel_${MY_PV}.tar.gz + doc? ( https://www.gpsbabel.org/style3.css -> gpsbabel.org-style3.css )" KEYWORDS="amd64 ~arm64" S="${WORKDIR}/gpsbabel-gpsbabel_${MY_PV}" fi LICENSE="GPL-2" SLOT="0" -IUSE="doc qt6" +IUSE="doc gui" BDEPEND=" virtual/pkgconfig @@ -32,8 +34,7 @@ BDEPEND=" dev-lang/perl dev-libs/libxslt ) - !qt6? ( dev-qt/linguist-tools:5 ) - qt6? ( dev-qt/qttools:6[linguist] ) + gui? ( dev-qt/qttools:6[linguist] ) " RDEPEND=" @@ -41,22 +42,13 @@ RDEPEND=" sci-libs/shapelib:= sys-libs/zlib:=[minizip] virtual/libusb:1 - !qt6? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtserialport:5 - dev-qt/qtwebchannel:5 - dev-qt/qtwebengine:5[widgets] - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - ) - qt6? ( + dev-qt/qtbase:6 + dev-qt/qt5compat:6 + gui? ( dev-qt/qtbase:6[gui,network,widgets,xml] dev-qt/qtserialport:6 dev-qt/qtwebchannel:6 dev-qt/qtwebengine:6[widgets] - dev-qt/qt5compat:6 ) " @@ -66,6 +58,8 @@ DOCS=( AUTHORS NEWS README.{contrib,igc,md} gui/README.gui ) PATCHES=( "${FILESDIR}/${PN}-1.8.0-no-automagic-qt5-qt6.patch" + "${FILESDIR}"/${P}-xmldoc.patch + "${FILESDIR}"/${P}-xmllint.patch ) src_prepare() { @@ -73,6 +67,9 @@ src_prepare() { # ensure bundled libs are not used rm -r shapelib zlib || die + + use doc && cp "${DISTDIR}/gpsbabel.org-style3.css" "${S}" + use gui || sed -i -e '/add_subdirectory(gui)/d' CMakeLists.txt || die } src_configure() { @@ -80,10 +77,7 @@ src_configure() { -DGPSBABEL_WITH_LIBUSB=pkgconfig -DGPSBABEL_WITH_SHAPELIB=pkgconfig -DGPSBABEL_WITH_ZLIB=pkgconfig - -DGPSBABEL_MAPPREVIEW=ON - -DGPSBABEL_EMBED_MAP=ON - -DGPSBABEL_EMBED_TRANSLATIONS=ON - -DUSE_QT6="$(usex qt6)" + -DUSE_QT6=ON ) cmake_src_configure @@ -91,18 +85,20 @@ src_configure() { cmake_src_compile() { cmake_build gpsbabel - cmake_build gpsbabelfe + use gui && cmake_build gpsbabelfe use doc && cmake_build gpsbabel.html } src_install() { - use doc && dodoc gpsbabel.html + use doc && HTML_DOCS=( "${S}/${PN}.html" "${S}/${PN}.org-style3.css" ) einstalldocs dobin gpsbabel - dobin gui/GPSBabelFE/gpsbabelfe - insinto /usr/share/${PN}/translations/ - doins gui/gpsbabel*_*.qm - newicon gui/images/appicon.png ${PN}.png - domenu gui/gpsbabel.desktop + if use gui; then + dobin gui/GPSBabelFE/gpsbabelfe + insinto /usr/share/${PN}/translations/ + doins gui/gpsbabel*_*.qm + newicon gui/images/appicon.png ${PN}.png + domenu gui/gpsbabel.desktop + fi } diff --git a/sci-geosciences/gpsd/gpsd-3.25.ebuild b/sci-geosciences/gpsd/gpsd-3.25.ebuild deleted file mode 100644 index 93bbf3abe0f0..000000000000 --- a/sci-geosciences/gpsd/gpsd-3.25.ebuild +++ /dev/null @@ -1,230 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_OPTIONAL=1 -PYTHON_COMPAT=( python3_{10..11} ) -SCONS_MIN_VERSION="2.3.0" - -inherit distutils-r1 scons-utils systemd toolchain-funcs udev - -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://gitlab.com/gpsd/gpsd.git" - inherit git-r3 -else - SRC_URI="mirror://nongnu/${PN}/${P}.tar.xz" - KEYWORDS="amd64 arm ~arm64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86" -fi - -DESCRIPTION="GPS daemon and library for USB/serial GPS devices and GPS/mapping clients" -HOMEPAGE="https://gpsd.gitlab.io/gpsd/" - -LICENSE="BSD-2" -SLOT="0/30" - -GPSD_PROTOCOLS=( - aivdm ashtech earthmate evermore fury fv18 garmin garmintxt geostar - gpsclock greis isync itrax navcom nmea2000 oceanserver oncore - rtcm104v2 rtcm104v3 sirf skytraq superstar2 tnt tripmate tsip ublox -) -IUSE_GPSD_PROTOCOLS=${GPSD_PROTOCOLS[@]/#/+gpsd_protocols_} -IUSE="${IUSE_GPSD_PROTOCOLS} bluetooth +cxx dbus debug ipv6 latency-timing ncurses ntp +python qt5 selinux +shm +sockets static systemd test udev usb X" -REQUIRED_USE=" - X? ( python ) - gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) - gpsd_protocols_isync? ( gpsd_protocols_ublox ) - gpsd_protocols_ublox? ( python ) - gpsd_protocols_greis? ( python ) - python? ( ${PYTHON_REQUIRED_USE} ) - qt5? ( cxx ) -" -RESTRICT="!test? ( test )" - -RDEPEND=" - acct-user/gpsd - acct-group/dialout - >=net-misc/pps-tools-0.0.20120407 - bluetooth? ( net-wireless/bluez:= ) - dbus? ( - sys-apps/dbus - dev-libs/dbus-glib - ) - ncurses? ( sys-libs/ncurses:= ) - ntp? ( || ( - net-misc/ntp - net-misc/ntpsec - net-misc/chrony - ) ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtnetwork:5 - ) - python? ( ${PYTHON_DEPS} ) - gpsd_protocols_ublox? ( dev-python/pyserial ) - gpsd_protocols_greis? ( dev-python/pyserial ) - usb? ( virtual/libusb:1 ) - X? ( dev-python/pygobject:3[cairo,${PYTHON_USEDEP}] )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig - $(python_gen_any_dep 'dev-build/scons[${PYTHON_USEDEP}]') - test? ( app-alternatives/bc )" -RDEPEND+=" selinux? ( sec-policy/selinux-gpsd )" - -# asciidoctor package is for man page generation -if [[ ${PV} == *9999* ]] ; then - BDEPEND+=" dev-ruby/asciidoctor" -fi - -python_check_deps() { - has_version -b "dev-build/scons[${PYTHON_USEDEP}]" || return 1 -} - -src_prepare() { - # Make sure our list matches the source. - local src_protocols=$(echo $( - sed -n '/# GPS protocols/,/# Time service/{s:#.*::;s:[(",]::g;p}' "${S}"/SConscript | awk '{print $1}' | LC_ALL=C sort - ) ) - - if [[ ${src_protocols} != ${GPSD_PROTOCOLS[*]} ]] ; then - eerror "Detected protocols: ${src_protocols}" - eerror "Ebuild protocols: ${GPSD_PROTOCOLS[*]}" - die "please sync ebuild & source" - fi - - # bug #807661 - sed -i -e 's:$SRCDIR/gpsd.hotplug:$SRCDIR/../gpsd.hotplug:' SConscript || die - - default - - use python && distutils-r1_src_prepare -} - -python_prepare_all() { - python_setup - - # bug #796476 - python_export_utf8_locale - - # Extract python info out of SConscript so we can use saner distribute - pyarray() { sed -n "/^ *$1 *= *\\[/,/\\]/p" SConscript ; } - local pyprogs=$(pyarray python_progs) - local pybins=$("${PYTHON}" -c "${pyprogs}; \ - print(list(set(python_progs) - {'xgps', 'xgpsspeed', 'ubxtool', 'zerk'}))" || die "Unable to list pybins") - # Handle conditional tools manually. #666734 - use X && pybins+="+ ['xgps', 'xgpsspeed']" - use gpsd_protocols_ublox && pybins+="+ ['ubxtool']" - use gpsd_protocols_greis && pybins+="+ ['zerk']" - local pysrcs=$(pyarray packet_ffi_extension) - local packet=$("${PYTHON}" -c "${pysrcs}; print(packet_ffi_extension)" || die "Unable to extract packet types") - - pyvar() { sed -n "/^ *$1 *=/s:.*= *::p" SConscript ; } - pyvar2() { sed -n "/^ *$1 *=/s:.*= *::p" SConstruct ; } - - # Post 3.19 the clienthelpers were merged into gps.packet - - # TODO: Fix hardcoding https://gpsd.io/ for now for @URL@ - sed \ - -e "s|@VERSION@|$(pyvar2 gpsd_version | sed -e 's:\"::g')|" \ - -e "s|@URL@|https://gpsd.io/|" \ - -e "s|@DEVMAIL@|$(pyvar devmail)|" \ - -e "s|@SCRIPTS@|${pybins}|" \ - -e "s|@DOWNLOAD@|$(pyvar download)|" \ - -e "s|@IRCCHAN@|$(pyvar ircchan)|" \ - -e "s|@ISSUES@|$(pyvar bugtracker)|" \ - -e "s|@MAILMAN@|$(pyvar mailman)|" \ - -e "s|@PROJECTPAGE@|$(pyvar projectpage)|" \ - -e "s|@SUPPORT@|https://gpsd.io/SUPPORT.html|" \ - -e "s|@WEBSITE@|https://gpsd.io/|" \ - "${S}"/packaging/gpsd-setup.py.in > setup.py || die - distutils-r1_python_prepare_all -} - -src_configure() { - scons_opts=( - prefix="${EPREFIX}/usr" - libdir="\$prefix/$(get_libdir)" - udevdir="$(get_udevdir)" - rundir="/run" - chrpath=False - gpsd_user=gpsd - gpsd_group=dialout - nostrip=True - systemd=$(usex systemd) - unitdir="$(systemd_get_systemunitdir)" - shared=$(usex !static True False) - bluez=$(usex bluetooth) - libgpsmm=$(usex cxx) - clientdebug=$(usex debug) - dbus_export=$(usex dbus) - ipv6=$(usex ipv6) - timing=$(usex latency-timing) - ncurses=$(usex ncurses) - ntpshm=$(usex ntp) - pps=$(usex ntp) - python=$(usex python) - # force a predictable python libdir because lib vs. lib64 usage differs - # from 3.5 to 3.6+ - $(usex python python_libdir="${EPREFIX}"/python-discard "") - qt=$(usex qt5) - shm_export=$(usex shm) - socket_export=$(usex sockets) - usb=$(usex usb) - ) - - if [[ ${PV} != *9999* ]] ; then - scons_opts+=( manbuild=False ) - fi - - use X && scons_opts+=( xgps=1 xgpsspeed=1 ) - use qt5 && scons_opts+=( qt_versioned=5 ) - - # enable specified protocols - local protocol - for protocol in ${GPSD_PROTOCOLS[@]} ; do - scons_opts+=( ${protocol}=$(usex gpsd_protocols_${protocol}) ) - done - - # bug #809260 - python_setup -} - -src_compile() { - export CHRPATH= - tc-export CC CXX PKG_CONFIG - export SHLINKFLAGS=${LDFLAGS} LINKFLAGS=${LDFLAGS} - escons "${scons_opts[@]}" - - pushd "${P}" || die - ln -sf ../setup.py . || die - use python && distutils-r1_src_compile - popd || die -} - -src_test() { - escons "${scons_opts[@]}" check -} - -python_test() { - # Silence QA check which gets confused by layout(?). We do run the tests. - :; -} - -src_install() { - DESTDIR="${D}" escons install "${scons_opts[@]}" $(usev udev udev-install) - - newconfd "${FILESDIR}"/gpsd.conf-2 gpsd - newinitd "${FILESDIR}"/gpsd.init-2 gpsd - - # Cleanup bad alt copy due to Scons - rm -rf "${D}"/python-discard/gps* - find "${D}"/python-discard/ -type d -delete - # Install correct multi-python copy - pushd "${P}" || die - use python && distutils-r1_src_install - popd || die -} - -pkg_postinst() { - use udev && udev_reload -} diff --git a/sci-geosciences/gpsd/metadata.xml b/sci-geosciences/gpsd/metadata.xml index f7825c1f5ebf..c6d870b1b680 100644 --- a/sci-geosciences/gpsd/metadata.xml +++ b/sci-geosciences/gpsd/metadata.xml @@ -18,7 +18,6 @@ <flag name="latency-timing">support latency timing information</flag> <flag name="ntp">Enable <pkg>net-misc/ntp</pkg> shared memory interface and PPS kernel support for GPS time</flag> - <flag name="sockets">export gpsd over unix sockets</flag> <flag name="shm">export gpsd over shared memory</flag> </use> <upstream> diff --git a/sci-geosciences/gpxsee/Manifest b/sci-geosciences/gpxsee/Manifest index 59b96644d270..11a732aed098 100644 --- a/sci-geosciences/gpxsee/Manifest +++ b/sci-geosciences/gpxsee/Manifest @@ -1,4 +1,3 @@ -DIST gpxsee-13.22.tar.gz 5634011 BLAKE2B b708ea4a81679109ce4e67302e336e070a508799ba8bbcf67121b617390e3808e2a054170e57a112c734fa7d22698f71da5f902ec704fda0f0fcf2818495b29f SHA512 0a12304c608ee86ebdd226a3179fde538ac0f64d5300ede4a032be373059ccbe1dcbcb6db76326c9988620b9fd41dd0f36e8e922b305a16fd27e87a56385fcba -DIST gpxsee-13.26.tar.gz 5638599 BLAKE2B 9d13d3455d0ea59e4f03daa89e3668a634e6f1a5fd5c129e6d031920fddc238303c52aaae04776a51655e221c7facba4c63d7f5ede1c144cb32202427c52c26c SHA512 9a56930fb3f7cdf95d2ca6e4daebb16e5f670bc715489ed02e51e3b4b5e08ec397524de219c5e7142910c826cda60a46c3dd467572769e60239b667aa306d59e -DIST gpxsee-13.27.tar.gz 5639124 BLAKE2B f3e10b1580e6e96f106d789abf9273530a36f528e4971b430c4b83d0a056f065a08faca28d850a7983df7fc7cc5fcab1d564a88d4337ad7ea4c33b4e2b22579c SHA512 88ed97d6a6813385ce9194d7b18935f410fc69f25072f0a5de20ac19464a1be9ec7c28ac9de2533b3153bb6d43ab2f84428faef0c687d2dffbb39bad4df1c96b -DIST gpxsee-13.30.tar.gz 5550185 BLAKE2B 753b8c268451e8c1b11366c4f4f1f51c3250b05738d2c70f18a1d6df7bf3dc97ba1229026b5732357d870e88866b614b163497f825eff1516b4208ce79ca9219 SHA512 2632b5b01ad913cd99779cb5bd11523434de6d960343b062e779f7b6aea95854fda2e3e4eefa4f105d58fb9cb5e62777dbad198fa6999ba26f4bbc5b572288c3 +DIST gpxsee-13.33.tar.gz 5557400 BLAKE2B b1aaf16567ab4f35120cf5dd43f9c29136f8dfe04ba85d4876ed135a5f84ebf3626aac9cb1c63cd7b732245a6fbb76bcedb3255d6157796a7a68c938f1da8d1e SHA512 9ae1c59ca9e3b1ceb36fb1923da7f599c6c3f11be05d789629a0a425c11a634cf5a98f78390fb5b0838f7da4e96cce807fe146d0125671d3567b17cbbf1ae9cb +DIST gpxsee-13.34.tar.gz 5559175 BLAKE2B 40c702c5cb4e333738be3591fd5c3660f8d616a8689b529dae324baf2dfcc0bd460d4ccd715947fbcd7bd9be605e4516d0ab4abfc8389b3c49b3cc3a04532295 SHA512 424dbfc60ec3dd4802e69616d5cd35d26e4131ad2ed366eaced3539ea2afe1e44c8e3343f85d408fce6c5b186cf8085bfb01182e891859521778321877b9452e +DIST gpxsee-13.35.tar.gz 5567197 BLAKE2B 29e42e31f6fd6c28a1f3983d4072a0725fac9eb6f8b5ca19bc3801fd01d6034068ea4a9b7fa8b456cdbbc00e4bbc14c86a9d69438c81019b1a2f48742135bff2 SHA512 648b60bdebf8a2a5e63312bcd3615ab9e363201714e61e61e6f90d2256201570f924aec610d1fc258ab1a6aa73fe02d6e05550fd43588e872695b03726e41149 diff --git a/sci-geosciences/gpxsee/gpxsee-13.22.ebuild b/sci-geosciences/gpxsee/gpxsee-13.22.ebuild deleted file mode 100644 index d39d378a564f..000000000000 --- a/sci-geosciences/gpxsee/gpxsee-13.22.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PLOCALES="ca cs da de en eo es fi fr hu it ko nb pl pt_BR ru sv tr uk zh" -inherit plocale qmake-utils xdg - -MY_PN="GPXSee" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea files" -HOMEPAGE="https://www.gpxsee.org/ https://github.com/tumic0/GPXSee" -SRC_URI="https://github.com/tumic0/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 arm64 ppc64 ~x86" -IUSE="qt6" - -RDEPEND=" - qt6? ( - dev-qt/qtbase:6 - dev-qt/qtpositioning:6 - dev-qt/qtserialport:6 - ) - !qt6? ( - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtpositioning:5 - dev-qt/qtprintsupport:5 - dev-qt/qtserialport:5 - dev-qt/qtsql:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - qt6? ( dev-qt/qttools:6 ) - !qt6? ( dev-qt/linguist-tools:5 ) -" - -PATCHES=( "${FILESDIR}"/${PN}-7.33.patch ) - -src_prepare() { - default - - plocale_find_changes lang "${PN}_" '.ts' - - rm_ts() { - sed -e "s|lang/gpxsee_${1}.ts||" -i gpxsee.pro - } - - plocale_for_each_disabled_locale rm_ts -} - -src_compile() { - if use qt6; then - $(qt6_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" - eqmake6 gpxsee.pro - else - $(qt5_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" - eqmake5 gpxsee.pro - fi - emake -} - -src_install() { - emake INSTALL_ROOT="${D}" install - dodoc README.md -} diff --git a/sci-geosciences/gpxsee/gpxsee-13.26.ebuild b/sci-geosciences/gpxsee/gpxsee-13.26.ebuild deleted file mode 100644 index 6ed42a42478c..000000000000 --- a/sci-geosciences/gpxsee/gpxsee-13.26.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PLOCALES="ca cs da de en eo es fi fr hu it ko nb pl pt_BR ru sv tr uk zh" -inherit plocale qmake-utils xdg - -MY_PN="GPXSee" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea files" -HOMEPAGE="https://www.gpxsee.org/ https://github.com/tumic0/GPXSee" -SRC_URI="https://github.com/tumic0/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" -IUSE="qt6" - -RDEPEND=" - qt6? ( - dev-qt/qtbase:6 - dev-qt/qtpositioning:6 - dev-qt/qtserialport:6 - ) - !qt6? ( - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtpositioning:5 - dev-qt/qtprintsupport:5 - dev-qt/qtserialport:5 - dev-qt/qtsql:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - qt6? ( dev-qt/qttools:6 ) - !qt6? ( dev-qt/linguist-tools:5 ) -" - -PATCHES=( "${FILESDIR}"/${PN}-7.33.patch ) - -src_prepare() { - default - - plocale_find_changes lang "${PN}_" '.ts' - - rm_ts() { - sed -e "s|lang/gpxsee_${1}.ts||" -i gpxsee.pro - } - - plocale_for_each_disabled_locale rm_ts -} - -src_compile() { - if use qt6; then - $(qt6_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" - eqmake6 gpxsee.pro - else - $(qt5_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" - eqmake5 gpxsee.pro - fi - emake -} - -src_install() { - emake INSTALL_ROOT="${D}" install - dodoc README.md -} diff --git a/sci-geosciences/gpxsee/gpxsee-13.27.ebuild b/sci-geosciences/gpxsee/gpxsee-13.27.ebuild deleted file mode 100644 index b754057f64d5..000000000000 --- a/sci-geosciences/gpxsee/gpxsee-13.27.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PLOCALES="ca cs da de en eo es fi fr hu it ko nb pl pt_BR ru sv tr uk zh_CN" -inherit plocale qmake-utils xdg - -MY_PN="GPXSee" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea files" -HOMEPAGE="https://www.gpxsee.org/ https://github.com/tumic0/GPXSee" -SRC_URI="https://github.com/tumic0/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" -IUSE="qt6" - -RDEPEND=" - qt6? ( - dev-qt/qtbase:6 - dev-qt/qtpositioning:6 - dev-qt/qtserialport:6 - ) - !qt6? ( - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtpositioning:5 - dev-qt/qtprintsupport:5 - dev-qt/qtserialport:5 - dev-qt/qtsql:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - qt6? ( dev-qt/qttools:6 ) - !qt6? ( dev-qt/linguist-tools:5 ) -" - -PATCHES=( "${FILESDIR}"/${PN}-7.33.patch ) - -src_prepare() { - default - - plocale_find_changes lang "${PN}_" '.ts' - - rm_ts() { - sed -e "s|lang/gpxsee_${1}.ts||" -i gpxsee.pro - } - - plocale_for_each_disabled_locale rm_ts -} - -src_compile() { - if use qt6; then - $(qt6_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" - eqmake6 gpxsee.pro - else - $(qt5_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" - eqmake5 gpxsee.pro - fi - emake -} - -src_install() { - emake INSTALL_ROOT="${D}" install - dodoc README.md -} diff --git a/sci-geosciences/gpxsee/gpxsee-13.30.ebuild b/sci-geosciences/gpxsee/gpxsee-13.30.ebuild deleted file mode 100644 index b754057f64d5..000000000000 --- a/sci-geosciences/gpxsee/gpxsee-13.30.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PLOCALES="ca cs da de en eo es fi fr hu it ko nb pl pt_BR ru sv tr uk zh_CN" -inherit plocale qmake-utils xdg - -MY_PN="GPXSee" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea files" -HOMEPAGE="https://www.gpxsee.org/ https://github.com/tumic0/GPXSee" -SRC_URI="https://github.com/tumic0/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" -IUSE="qt6" - -RDEPEND=" - qt6? ( - dev-qt/qtbase:6 - dev-qt/qtpositioning:6 - dev-qt/qtserialport:6 - ) - !qt6? ( - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtpositioning:5 - dev-qt/qtprintsupport:5 - dev-qt/qtserialport:5 - dev-qt/qtsql:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - qt6? ( dev-qt/qttools:6 ) - !qt6? ( dev-qt/linguist-tools:5 ) -" - -PATCHES=( "${FILESDIR}"/${PN}-7.33.patch ) - -src_prepare() { - default - - plocale_find_changes lang "${PN}_" '.ts' - - rm_ts() { - sed -e "s|lang/gpxsee_${1}.ts||" -i gpxsee.pro - } - - plocale_for_each_disabled_locale rm_ts -} - -src_compile() { - if use qt6; then - $(qt6_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" - eqmake6 gpxsee.pro - else - $(qt5_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" - eqmake5 gpxsee.pro - fi - emake -} - -src_install() { - emake INSTALL_ROOT="${D}" install - dodoc README.md -} diff --git a/sci-geosciences/gpxsee/gpxsee-13.33-r1.ebuild b/sci-geosciences/gpxsee/gpxsee-13.33-r1.ebuild new file mode 100644 index 000000000000..6dbd042f2039 --- /dev/null +++ b/sci-geosciences/gpxsee/gpxsee-13.33-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN="GPXSee" +PLOCALES="ca cs da de en eo es fi fr hu it ko nb pl pt_BR ru sv tr uk zh_CN" +inherit plocale qmake-utils xdg + +DESCRIPTION="Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea files" +HOMEPAGE="https://www.gpxsee.org/ https://github.com/tumic0/GPXSee" +SRC_URI="https://github.com/tumic0/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 arm64 ppc64 ~x86" + +RDEPEND=" + dev-qt/qtbase:6=[concurrent,gui,network,opengl,sql,widgets] + dev-qt/qtpositioning:6 + dev-qt/qtsvg:6 +" +DEPEND="${RDEPEND} + dev-qt/qtserialport:6 +" +BDEPEND="dev-qt/qttools:6[linguist]" + +PATCHES=( "${FILESDIR}"/${PN}-7.33.patch ) + +src_prepare() { + default + + plocale_find_changes lang "${PN}_" '.ts' + + rm_ts() { + sed -e "s|lang/gpxsee_${1}.ts||" -i gpxsee.pro + } + + plocale_for_each_disabled_locale rm_ts +} + +src_configure() { + $(qt6_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" + eqmake6 gpxsee.pro +} + +src_install() { + emake INSTALL_ROOT="${D}" install + dodoc README.md +} diff --git a/sci-geosciences/gpxsee/gpxsee-13.34.ebuild b/sci-geosciences/gpxsee/gpxsee-13.34.ebuild new file mode 100644 index 000000000000..3bdb41535e80 --- /dev/null +++ b/sci-geosciences/gpxsee/gpxsee-13.34.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN="GPXSee" +PLOCALES="ca cs da de en eo es fi fr hu it ko nb pl pt_BR ru sv tr uk zh_CN" +inherit plocale qmake-utils xdg + +DESCRIPTION="Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea files" +HOMEPAGE="https://www.gpxsee.org/ https://github.com/tumic0/GPXSee" +SRC_URI="https://github.com/tumic0/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +RDEPEND=" + dev-qt/qtbase:6=[concurrent,gui,network,opengl,sql,widgets] + dev-qt/qtpositioning:6 + dev-qt/qtsvg:6 +" +DEPEND="${RDEPEND} + dev-qt/qtserialport:6 +" +BDEPEND="dev-qt/qttools:6[linguist]" + +PATCHES=( "${FILESDIR}"/${PN}-7.33.patch ) + +src_prepare() { + default + + plocale_find_changes lang "${PN}_" '.ts' + + rm_ts() { + sed -e "s|lang/gpxsee_${1}.ts||" -i gpxsee.pro + } + + plocale_for_each_disabled_locale rm_ts +} + +src_configure() { + $(qt6_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" + eqmake6 gpxsee.pro +} + +src_install() { + emake INSTALL_ROOT="${D}" install + dodoc README.md +} diff --git a/sci-geosciences/gpxsee/gpxsee-13.35.ebuild b/sci-geosciences/gpxsee/gpxsee-13.35.ebuild new file mode 100644 index 000000000000..3bdb41535e80 --- /dev/null +++ b/sci-geosciences/gpxsee/gpxsee-13.35.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN="GPXSee" +PLOCALES="ca cs da de en eo es fi fr hu it ko nb pl pt_BR ru sv tr uk zh_CN" +inherit plocale qmake-utils xdg + +DESCRIPTION="Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea files" +HOMEPAGE="https://www.gpxsee.org/ https://github.com/tumic0/GPXSee" +SRC_URI="https://github.com/tumic0/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +RDEPEND=" + dev-qt/qtbase:6=[concurrent,gui,network,opengl,sql,widgets] + dev-qt/qtpositioning:6 + dev-qt/qtsvg:6 +" +DEPEND="${RDEPEND} + dev-qt/qtserialport:6 +" +BDEPEND="dev-qt/qttools:6[linguist]" + +PATCHES=( "${FILESDIR}"/${PN}-7.33.patch ) + +src_prepare() { + default + + plocale_find_changes lang "${PN}_" '.ts' + + rm_ts() { + sed -e "s|lang/gpxsee_${1}.ts||" -i gpxsee.pro + } + + plocale_for_each_disabled_locale rm_ts +} + +src_configure() { + $(qt6_get_bindir)/lrelease gpxsee.pro || die "lrelease failed" + eqmake6 gpxsee.pro +} + +src_install() { + emake INSTALL_ROOT="${D}" install + dodoc README.md +} diff --git a/sci-geosciences/grass/Manifest b/sci-geosciences/grass/Manifest index 379362cf62ee..92768c4c426f 100644 --- a/sci-geosciences/grass/Manifest +++ b/sci-geosciences/grass/Manifest @@ -1,2 +1,3 @@ DIST grass-8.3.2.tar.gz 68662576 BLAKE2B 214bc6aea6904e88339e7f2d80f5dbc1c549928eed08ae0734789165af9e4cd7d8a882c67607c2670f2fdd4584615eac95c1ada9e5312abc6b59e0cb48124615 SHA512 6523e2c0eae183fddeaa015e63283febfbae4953e809ff41bcc4ab95aa1055162b08c65365f973124608ff7b01aa907a1a0ec96c9f31884c657f236e56c0eab0 DIST grass-8.4.0.tar.gz 70245687 BLAKE2B 0f8283d215cc5412abcf4bc984aa94b5ca3de6de0d3d240fb533a4a0d2b335438269524462f3c4ede5ebec5cfc0348246571216dbc16f8658d88db28159bf360 SHA512 c31ea7dc79cee1a2a3e668fa79b93a5a7683bcd1ae1b467b4938aee81ed023e82a643d3acf3f8e67265c46b9f86dd37c62f15e4b5f210d36672c8986a69d71e4 +DIST grass-8.4.1RC1.tar.gz 70287232 BLAKE2B 9fa54d30524372d520fdb9fd99c4e7daff1607d9e3f32ffa1fd3ce6ca37f42d257747b4be5c96a419ac247bf0a7684d6ca0b117e968b1136c47714e1b6c30325 SHA512 71088bbc47d7bc798db7fdf9ab3f25ff9ad04ac2e108cbd3d3d6db77c36f85821579a78a40bdfe1c9ab75b0c6c8f3e2f23b5dcbb233aed4c60526f1d3db79349 diff --git a/sci-geosciences/grass/grass-8.3.2-r1.ebuild b/sci-geosciences/grass/grass-8.3.2-r1.ebuild index 0871bb02df0d..9e070e7012a6 100644 --- a/sci-geosciences/grass/grass-8.3.2-r1.ebuild +++ b/sci-geosciences/grass/grass-8.3.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -107,7 +107,13 @@ PATCHES=( "${FILESDIR}/${PN}-flock.patch" ) +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp + if use lapack; then local mylapack=$(eselect lapack show) if [[ -z "${mylapack/.*reference.*/}" ]] && \ diff --git a/sci-geosciences/grass/grass-8.4.0.ebuild b/sci-geosciences/grass/grass-8.4.0.ebuild index 51d356ba10d0..de06e287f11f 100644 --- a/sci-geosciences/grass/grass-8.4.0.ebuild +++ b/sci-geosciences/grass/grass-8.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -107,7 +107,13 @@ PATCHES=( "${FILESDIR}/${PN}-flock.patch" ) +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp + if use lapack; then local mylapack=$(eselect lapack show) if [[ -z "${mylapack/.*reference.*/}" ]] && \ diff --git a/sci-geosciences/grass/grass-8.4.1_rc1.ebuild b/sci-geosciences/grass/grass-8.4.1_rc1.ebuild new file mode 100644 index 000000000000..d1df30016725 --- /dev/null +++ b/sci-geosciences/grass/grass-8.4.1_rc1.ebuild @@ -0,0 +1,284 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_REQ_USE="sqlite" # bug 572440 + +inherit desktop flag-o-matic python-single-r1 toolchain-funcs xdg + +DESCRIPTION="A free GIS with raster and vector functionality, as well as 3D vizualization" +HOMEPAGE="https://grass.osgeo.org/" + +LICENSE="GPL-2" + +if [[ ${PV} =~ "9999" ]]; then + SLOT="0/8.4" +else + SLOT="0/$(ver_cut 1-2 ${PV})" +fi + +GVERSION=${SLOT#*/} +MY_PM="${PN}${GVERSION}" +MY_PM="${MY_PM/.}" + +if [[ ${PV} =~ "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/OSGeo/grass.git" +else + MY_P="${P/_rc/RC}" + SRC_URI="https://grass.osgeo.org/${MY_PM}/source/${MY_P}.tar.gz" + if [[ ${PV} != *_rc* ]] ; then + KEYWORDS="~amd64 ~ppc ~x86" + fi + + S="${WORKDIR}/${MY_P}" +fi + +IUSE="blas bzip2 cxx fftw geos lapack las mysql netcdf nls odbc opencl opengl openmp pdal png postgres readline sqlite svm threads tiff truetype X zstd" +REQUIRED_USE=" + ${PYTHON_REQUIRED_USE} + opengl? ( X ) + pdal? ( cxx )" + +RDEPEND=" + ${PYTHON_DEPS} + >=app-admin/eselect-1.2 + $(python_gen_cond_dep ' + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/ply[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + ') + sci-libs/gdal:= + sys-libs/gdbm:= + sys-libs/ncurses:= + sci-libs/proj:= + sys-libs/zlib + media-libs/libglvnd + media-libs/glu + blas? ( + virtual/cblas[eselect-ldso(+)] + virtual/blas[eselect-ldso(+)] + ) + bzip2? ( app-arch/bzip2:= ) + fftw? ( sci-libs/fftw:3.0= ) + geos? ( sci-libs/geos:= ) + lapack? ( virtual/lapack[eselect-ldso(+)] ) + las? ( sci-geosciences/liblas ) + mysql? ( dev-db/mysql-connector-c:= ) + netcdf? ( sci-libs/netcdf:= ) + odbc? ( dev-db/unixODBC ) + opencl? ( virtual/opencl ) + opengl? ( virtual/opengl ) + pdal? ( >=sci-libs/pdal-2.0.0:= ) + png? ( media-libs/libpng:= ) + postgres? ( >=dev-db/postgresql-8.4:= ) + readline? ( sys-libs/readline:= ) + sqlite? ( dev-db/sqlite:3 ) + svm? ( sci-libs/libsvm:= ) + tiff? ( media-libs/tiff:= ) + truetype? ( media-libs/freetype:2 ) + X? ( + $(python_gen_cond_dep ' + >=dev-python/matplotlib-1.2[wxwidgets,${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + >=dev-python/wxpython-4.1:4.0[${PYTHON_USEDEP}] + ') + x11-libs/cairo[X] + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXt + ) + zstd? ( app-arch/zstd:= )" +DEPEND="${RDEPEND} + X? ( x11-base/xorg-proto )" +BDEPEND=" + app-alternatives/yacc + app-alternatives/lex + sys-devel/gettext + virtual/pkgconfig + X? ( dev-lang/swig )" + +PATCHES=( + # bug 746590 + "${FILESDIR}/${PN}-flock.patch" +) + +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + +pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp + + if use lapack; then + local mylapack=$(eselect lapack show) + if [[ -z "${mylapack/.*reference.*/}" ]] && \ + [[ -z "${mylapack/.*atlas.*/}" ]]; then + ewarn "You need to set lapack to atlas or reference. Do:" + ewarn " eselect lapack set <impl>" + ewarn "where <impl> is atlas, threaded-atlas or reference" + die "setup failed" + fi + fi + + if use blas; then + local myblas=$(eselect blas show) + if [[ -z "${myblas/.*reference.*/}" ]] && \ + [[ -z "${myblas/.*atlas.*/}" ]]; then + ewarn "You need to set blas to atlas or reference. Do:" + ewarn " eselect blas set <impl>" + ewarn "where <impl> is atlas, threaded-atlas or reference" + die "setup failed" + fi + fi + + python-single-r1_pkg_setup +} + +src_prepare() { + # Fix unversioned python calls + sed -e "s:=python3:=${EPYTHON}:" -i "${S}/lib/init/grass.sh" || die + sed -e "s:= python3:= ${EPYTHON}:" -i "${S}/include/Make/Platform.make.in" || die + + default + + # When patching the build system, avoid running autoheader here. The file + # config.in.h is maintained manually upstream. Changes to it may lead to + # undefined behavior. See bug #866554. + # AT_NOEAUTOHEADER=1 eautoreconf + + ebegin "Fixing python shebangs" + python_fix_shebang -q "${S}" + eend $? + + # For testsuite, see https://bugs.gentoo.org/show_bug.cgi?id=500580#c3 + shopt -s nullglob + local mesa_cards=$(echo -n /dev/dri/card* /dev/dri/render* | sed 's/ /:/g') + if test -n "${mesa_cards}"; then + addpredict "${mesa_cards}" + fi + local ati_cards=$(echo -n /dev/ati/card* | sed 's/ /:/g') + if test -n "${ati_cards}"; then + addpredict "${ati_cards}" + fi + shopt -u nullglob + addpredict /dev/nvidiactl +} + +src_configure() { + # -Werror=strict-aliasing + # https://bugs.gentoo.org/862579 + # https://github.com/OSGeo/grass/issues/3506 + # + # Do not trust it with LTO either + append-flags -fno-strict-aliasing + filter-lto + + addwrite /dev/dri/renderD128 + + local myeconfargs=( + --enable-shared + --disable-w11 + --without-opendwg + --with-regex + --with-gdal="${EPREFIX}"/usr/bin/gdal-config + --with-proj-includes="${EPREFIX}"/usr/include/proj + --with-proj-libs="${EPREFIX}"/usr/$(get_libdir) + --with-proj-share="${EPREFIX}"/usr/share/proj/ + $(use_with cxx) + $(use_with tiff) + $(use_with png libpng "${EPREFIX}"/usr/bin/libpng-config) + $(use_with postgres) + $(use_with mysql) + $(use_with mysql mysql-includes "${EPREFIX}"/usr/include/mysql) + $(use_with sqlite) + $(use_with opengl) + $(use_with odbc) + $(use_with fftw) + $(use_with blas) + $(use_with lapack) + $(use_with X cairo) + $(use_with truetype freetype) + $(use_with truetype freetype-includes "${EPREFIX}"/usr/include/freetype2) + $(use_with nls) + $(use_with readline) + $(use_with threads pthread) + $(use_with openmp) + $(use_with opencl) + $(use_with bzip2 bzlib) + $(use_with pdal pdal "${EPREFIX}"/usr/bin/pdal-config) + $(use_with las liblas "${EPREFIX}"/usr/bin/liblas-config) + $(use_with netcdf netcdf "${EPREFIX}"/usr/bin/nc-config) + $(use_with geos geos "${EPREFIX}"/usr/bin/geos-config) + $(use_with svm libsvm) + $(use_with X x) + $(use_with zstd) + ) + econf "${myeconfargs[@]}" +} + +src_compile() { + # we don't want to link against embedded mysql lib + emake CC="$(tc-getCC)" MYSQLDLIB="" +} + +src_install() { + emake DESTDIR="${ED}" \ + INST_DIR=/usr/$(get_libdir)/${MY_PM} \ + prefix=/usr/ BINDIR=/usr/bin \ + install + + pushd "${ED}"/usr/$(get_libdir)/${MY_PM} >/dev/null || die + + local HTML_DOCS=( docs/html/. ) + einstalldocs + + # translations + if use nls; then + insinto /usr/share/locale + doins -r locale/. + fi + + popd >/dev/null || die + + # link libraries in the ~standard~ place + local f file + for f in "${ED}"/usr/$(get_libdir)/${MY_PM}/lib/*; do + file="${f##*/}" + dosym ${MY_PM}/lib/${file} /usr/$(get_libdir)/${file} + done + + # link headers in the ~standard~ place + dodir /usr/include/ + dosym ../$(get_libdir)/${MY_PM}/include/grass /usr/include/grass + + # set proper python interpreter + sed -e "s:os.environ\[\"GRASS_PYTHON\"\] = \"python3\":\ +os.environ\[\"GRASS_PYTHON\"\] = \"${EPYTHON}\":" \ + -i "${ED}"/usr/bin/grass || die + + if use X; then + local GUI="--gui" + make_desktop_entry "/usr/bin/grass ${GUI}" "${PN}" "${PN}-48x48" "Science;Education" + doicon -s 48 gui/icons/${PN}-48x48.png + fi + + # install .pc file so other apps know where to look for grass + insinto /usr/$(get_libdir)/pkgconfig/ + doins grass.pc + + # fix weird +x on tcl scripts + find "${ED}" -name "*.tcl" -exec chmod +r-x '{}' \; || die +} + +pkg_postinst() { + use X && xdg_pkg_postinst +} + +pkg_postrm() { + use X && xdg_pkg_postrm +} diff --git a/sci-geosciences/grass/grass-9999.ebuild b/sci-geosciences/grass/grass-9999.ebuild index 558ef152545b..b35f6c4b8ae1 100644 --- a/sci-geosciences/grass/grass-9999.ebuild +++ b/sci-geosciences/grass/grass-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -102,7 +102,13 @@ BDEPEND=" virtual/pkgconfig X? ( dev-lang/swig )" +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp + if use lapack; then local mylapack=$(eselect lapack show) if [[ -z "${mylapack/.*reference.*/}" ]] && \ diff --git a/sci-geosciences/harmonics-dwf-free/Manifest b/sci-geosciences/harmonics-dwf-free/Manifest index fe3ffc42afa1..f5ea37f0e75d 100644 --- a/sci-geosciences/harmonics-dwf-free/Manifest +++ b/sci-geosciences/harmonics-dwf-free/Manifest @@ -1 +1,2 @@ DIST harmonics-dwf-20131228-free.tar.bz2 511292 BLAKE2B fe1e36da2155bc3b94bf0df2e6f17eb718dd4cd94d6b2aa719564c672fb1b7f25b6c1eca1900f4e28c37e7764098be806f33b3d72f9a07e615523d21ddca85c7 SHA512 b36ca3f432a455fee051418b7eb427bfafc7cdad929765ed6d44f6f2583e6b8c1d4992b21225d07636c418cc4dea2e353f3276511ba7b331bb8709bf543fceed +DIST harmonics-dwf-20241229-free.tar.xz 865956 BLAKE2B 570cd2cf52c276afe6aa2fa0b8aac4215978a85b6106a145cf371e3e73930ea2ce7a131c9a673d772484a02260f359e5790f9ee7cb432ed9a7e626db5e2e152e SHA512 f3e9a45a68faf3c56ef511b33625cf6022c9728809e6096449c93623ccd5c564a5705e836f16c227dd56b2671f39f124f027b031902ce2e688ee71639e93f5a9 diff --git a/sci-geosciences/harmonics-dwf-free/harmonics-dwf-free-20241229.ebuild b/sci-geosciences/harmonics-dwf-free/harmonics-dwf-free-20241229.ebuild new file mode 100644 index 000000000000..c26278d509db --- /dev/null +++ b/sci-geosciences/harmonics-dwf-free/harmonics-dwf-free-20241229.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P="${P/-free-/-}" +DESCRIPTION="Tidal harmonics database for libtcd" +HOMEPAGE="https://flaterco.com/xtide/" +SRC_URI="https://flaterco.com/files/xtide/${MY_P}-free.tar.xz" +S="${WORKDIR}/${MY_P}" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_install() { + insinto /usr/share/harmonics + doins "${MY_P}"-free.tcd + dodoc ChangeLog +} diff --git a/sci-geosciences/josm-bin/Manifest b/sci-geosciences/josm-bin/Manifest index 6d584e3d514c..492e54031d90 100644 --- a/sci-geosciences/josm-bin/Manifest +++ b/sci-geosciences/josm-bin/Manifest @@ -1,9 +1,6 @@ -DIST josm-bin-19207.desktop 638 BLAKE2B d3a5e0204d0188e72eed65e71edd079b5aa025b82f13c515605f7d5bb9f96fc93e4a24c9eea76c6c4027f54f1c449cda811f5c59e0f2ab54975ab3b1bf221ee7 SHA512 328bc131d5985cd164e3ffa27f61241098329ac01954e1cdde1dcab92261eb3e84d69c9b158f2bb944b02f373c3868bea1850ae335f9dabe3c2314d16d651394 -DIST josm-bin-19207.mime.xml 831 BLAKE2B cc37da2b38a38481e00df0b72dcb9699a4dddb6777a4e71d83bb26f3d48a62e6b4abcc5b6fe8b45624eb3ecfeb231feefa714655e5911eeba203d103a7ab17d6 SHA512 7828c6f281f2701ce0f9e5cfbb57e75ecffab7936ce508c97a796ca820d237c7599bea9fc784825a8006e8fc07ebdd7b091d4d20d6767f9de6ca4e1cf42b58b0 -DIST josm-bin-19230.desktop 638 BLAKE2B d3a5e0204d0188e72eed65e71edd079b5aa025b82f13c515605f7d5bb9f96fc93e4a24c9eea76c6c4027f54f1c449cda811f5c59e0f2ab54975ab3b1bf221ee7 SHA512 328bc131d5985cd164e3ffa27f61241098329ac01954e1cdde1dcab92261eb3e84d69c9b158f2bb944b02f373c3868bea1850ae335f9dabe3c2314d16d651394 -DIST josm-bin-19230.mime.xml 831 BLAKE2B cc37da2b38a38481e00df0b72dcb9699a4dddb6777a4e71d83bb26f3d48a62e6b4abcc5b6fe8b45624eb3ecfeb231feefa714655e5911eeba203d103a7ab17d6 SHA512 7828c6f281f2701ce0f9e5cfbb57e75ecffab7936ce508c97a796ca820d237c7599bea9fc784825a8006e8fc07ebdd7b091d4d20d6767f9de6ca4e1cf42b58b0 -DIST josm-bin-19253.desktop 638 BLAKE2B d3a5e0204d0188e72eed65e71edd079b5aa025b82f13c515605f7d5bb9f96fc93e4a24c9eea76c6c4027f54f1c449cda811f5c59e0f2ab54975ab3b1bf221ee7 SHA512 328bc131d5985cd164e3ffa27f61241098329ac01954e1cdde1dcab92261eb3e84d69c9b158f2bb944b02f373c3868bea1850ae335f9dabe3c2314d16d651394 -DIST josm-bin-19253.mime.xml 831 BLAKE2B cc37da2b38a38481e00df0b72dcb9699a4dddb6777a4e71d83bb26f3d48a62e6b4abcc5b6fe8b45624eb3ecfeb231feefa714655e5911eeba203d103a7ab17d6 SHA512 7828c6f281f2701ce0f9e5cfbb57e75ecffab7936ce508c97a796ca820d237c7599bea9fc784825a8006e8fc07ebdd7b091d4d20d6767f9de6ca4e1cf42b58b0 -DIST josm-snapshot-19207.jar 18348268 BLAKE2B 35d8a35b6f2ba4553784d44c6928b2d179d82fae65a98c71c859fd7bb8ce5a26510cfa784318b83f21c38e944685fec2e83e3138f5c7a6cf47229e505ab80ad3 SHA512 7de9b9f4a70cd3b4788254d4b1ab979df311362671d47ec53d8abf5324b32ecb8577ffc1b7619d51df8f8e901cbd4710bfa25e01cba3d8495fd741e53a7966af -DIST josm-snapshot-19230.jar 18351669 BLAKE2B 9df67d0006b21d72bd7d3aec5fa1699d00ff806085311cc57aa678cec20f66bf4627511d58b952c736e144a3b4d0f134f8e39ef1e713802fff0f658bda5cb596 SHA512 964a4f3de4edd3db8323585ad171a4cd2108acd2d9a379ea31a997619e3bdbda48de94fd8bc537c01772baa7cca4454f83e66483bc34869a8f40ebcc121f4767 -DIST josm-snapshot-19253.jar 18361067 BLAKE2B b2765e33c73e7ed3b9bbc72ba52ed6df142a81f9ee31ecf1b20e8dbe79cf61e18fab80c15dbbeaf9b29c06d1f04c0f362a157ef3a0993a1baa7a1eadca00b6b8 SHA512 36d40422080cf6f14db53623796ce73d6c61f956916493021f2002146f8f254781caa3fd48c905f1f78b0baff63b51c6566620c2e5627f505e15b1a794dfc1f7 +DIST josm-bin-19277.desktop 638 BLAKE2B d3a5e0204d0188e72eed65e71edd079b5aa025b82f13c515605f7d5bb9f96fc93e4a24c9eea76c6c4027f54f1c449cda811f5c59e0f2ab54975ab3b1bf221ee7 SHA512 328bc131d5985cd164e3ffa27f61241098329ac01954e1cdde1dcab92261eb3e84d69c9b158f2bb944b02f373c3868bea1850ae335f9dabe3c2314d16d651394 +DIST josm-bin-19277.mime.xml 831 BLAKE2B cc37da2b38a38481e00df0b72dcb9699a4dddb6777a4e71d83bb26f3d48a62e6b4abcc5b6fe8b45624eb3ecfeb231feefa714655e5911eeba203d103a7ab17d6 SHA512 7828c6f281f2701ce0f9e5cfbb57e75ecffab7936ce508c97a796ca820d237c7599bea9fc784825a8006e8fc07ebdd7b091d4d20d6767f9de6ca4e1cf42b58b0 +DIST josm-bin-19307.desktop 638 BLAKE2B d3a5e0204d0188e72eed65e71edd079b5aa025b82f13c515605f7d5bb9f96fc93e4a24c9eea76c6c4027f54f1c449cda811f5c59e0f2ab54975ab3b1bf221ee7 SHA512 328bc131d5985cd164e3ffa27f61241098329ac01954e1cdde1dcab92261eb3e84d69c9b158f2bb944b02f373c3868bea1850ae335f9dabe3c2314d16d651394 +DIST josm-bin-19307.mime.xml 831 BLAKE2B cc37da2b38a38481e00df0b72dcb9699a4dddb6777a4e71d83bb26f3d48a62e6b4abcc5b6fe8b45624eb3ecfeb231feefa714655e5911eeba203d103a7ab17d6 SHA512 7828c6f281f2701ce0f9e5cfbb57e75ecffab7936ce508c97a796ca820d237c7599bea9fc784825a8006e8fc07ebdd7b091d4d20d6767f9de6ca4e1cf42b58b0 +DIST josm-snapshot-19277.jar 18592729 BLAKE2B 37171bb80822168b923b0b0e6564a71a243bc7ac5397fd3f9c748b9658480d6a6f59bfa899c01fdc132ab10ce175732d256bf8f2ca5f505343821d5cabe62695 SHA512 c95817edb1694fc0a35bf69cfb2efc6eabea8ba97d0c86b9da258b6eb5fd1d22dad1bfc371f6a0fa3189765db48353d0d72ca9185b8943ddc455d73e889a2719 +DIST josm-snapshot-19307.jar 18720348 BLAKE2B 163bf92d62ac68e227645d31b185131e3a6b3ff4a2f1008dcb92064b0a8404fb2cd15685e0df8414d1a56e25f80e73b133b2ee07a7301feeb1a5ed56d511bbe8 SHA512 15f582eb19d1af3e969e17333cdfe933cdb4011954909fe5a6f36f96d90d83cc61a7fd8200a9dc2d36f1f12df32ed1581d0a64fef9f37a21cf54286b5d8b0bde diff --git a/sci-geosciences/josm-bin/josm-bin-19230.ebuild b/sci-geosciences/josm-bin/josm-bin-19230.ebuild deleted file mode 100644 index 9d9039a4a7d7..000000000000 --- a/sci-geosciences/josm-bin/josm-bin-19230.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit desktop java-utils-2 xdg - -DESCRIPTION="Java-based editor for the OpenStreetMap project" -HOMEPAGE="https://josm.openstreetmap.de/" -# PV should be stable here https://josm.openstreetmap.de/wiki/StartupPage -SRC_URI=" - https://josm.openstreetmap.de/download/josm-snapshot-${PV}.jar - https://josm.openstreetmap.de/export/${PV}/josm/trunk/native/linux/tested/usr/share/applications/org.openstreetmap.josm.desktop -> ${P}.desktop - https://josm.openstreetmap.de/export/${PV}/josm/trunk/native/linux/tested/usr/share/mime/packages/josm.xml \ - -> ${P}.mime.xml -" -S="${WORKDIR}" - -LICENSE="Apache-2.0 GPL-2+ GPL-3" -SLOT="0" -KEYWORDS="amd64 ~x86" - -RDEPEND=">=virtual/jre-1.8" -BDEPEND="app-arch/unzip" - -src_unpack() { - default - - cp "${DISTDIR}/${P}.desktop" "org.openstreetmap.${PN}.desktop" || die -} - -src_prepare() { - default - - sed -i -e 's/^Exec=josm/Exec=josm-bin/' "org.openstreetmap.${PN}.desktop" || die - sed -i -e 's/^Icon=org.openstreetmap.josm/Icon=org.openstreetmap.josm-bin/' "org.openstreetmap.${PN}.desktop" || die -} - -src_install() { - java-pkg_newjar "${DISTDIR}/josm-snapshot-${PV}.jar" ${PN}.jar - java-pkg_dolauncher ${PN} --jar ${PN}.jar \ - --java_args "\ - --add-exports=java.base/sun.security.action=ALL-UNNAMED \ - --add-exports=java.desktop/com.sun.imageio.plugins.jpeg=ALL-UNNAMED \ - --add-exports=java.desktop/com.sun.imageio.spi=ALL-UNNAMED" - - local icon_size - for icon_size in 16 32 48; do - newicon -s ${icon_size} -t hicolor \ - images/logo_${icon_size}x${icon_size}x32.png "org.openstreetmap.${PN}.png" - newicon -s ${icon_size} -t locolor \ - images/logo_${icon_size}x${icon_size}x8.png "org.openstreetmap.${PN}.png" - done - newicon -s scalable images/logo.svg "org.openstreetmap.${PN}.svg" - domenu "${WORKDIR}/org.openstreetmap.${PN}.desktop" - insinto /usr/share/mime/packages - newins "${DISTDIR}/${P}.mime.xml" "${PN}.xml" -} diff --git a/sci-geosciences/josm-bin/josm-bin-19207-r2.ebuild b/sci-geosciences/josm-bin/josm-bin-19277.ebuild index 9d9039a4a7d7..23f514e83b7c 100644 --- a/sci-geosciences/josm-bin/josm-bin-19207-r2.ebuild +++ b/sci-geosciences/josm-bin/josm-bin-19277.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 diff --git a/sci-geosciences/josm-bin/josm-bin-19253.ebuild b/sci-geosciences/josm-bin/josm-bin-19307.ebuild index eaa3dcd4cde6..eb0c8cfe550b 100644 --- a/sci-geosciences/josm-bin/josm-bin-19253.ebuild +++ b/sci-geosciences/josm-bin/josm-bin-19307.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 diff --git a/sci-geosciences/mapserver/Manifest b/sci-geosciences/mapserver/Manifest index ec2e4a7fe117..b64deed3b962 100644 --- a/sci-geosciences/mapserver/Manifest +++ b/sci-geosciences/mapserver/Manifest @@ -1 +1,2 @@ DIST mapserver-8.0.2.tar.gz 2957172 BLAKE2B fe9587afb9b805858478faa3a0a558283db6a29e0b131a605c9e2a2f20f8b8addaa8f2170997468db83164add5887bb521219a868404e88e47e907253c17c9cc SHA512 fbd0a77ba67429bd42a3450335b7a600f21e5565f620c6a1a195a0a4fb37e4091dbddc531d623765008d780ab6094da5bd3f29d3e0ec44465c6ac155ada71752 +DIST mapserver-8.2.2.tar.gz 2966634 BLAKE2B d7de9089e7159bc2c4fc54bc7e87992b7287ca56db5c6c38b700d70acef10f36b213370ab1081e14d3b03f2f86e5df8062b64f1f3a2735c2a3f87d20cdc5956d SHA512 e91454c4f71931d6a6f8540191441cef0b7b9f5ad1d4ccf65ee504b1d84272cfe19900141846300f6bcaace2a70b919f1fd5b2a80158c38dfaef413b1ce01a22 diff --git a/sci-geosciences/mapserver/mapserver-8.2.2.ebuild b/sci-geosciences/mapserver/mapserver-8.2.2.ebuild new file mode 100644 index 000000000000..bcfb04e9da81 --- /dev/null +++ b/sci-geosciences/mapserver/mapserver-8.2.2.ebuild @@ -0,0 +1,223 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +JAVA_PKG_WANT_SOURCE="11" +JAVA_PKG_WANT_TARGET="11" + +WEBAPP_MANUAL_SLOT=yes +WEBAPP_OPTIONAL=yes + +inherit cmake depend.apache java-pkg-opt-2 perl-functions python-r1 webapp + +DESCRIPTION="Development environment for building spatially enabled webapps" +HOMEPAGE="https://mapserver.org/" +SRC_URI="https://download.osgeo.org/mapserver/${P}.tar.gz" + +LICENSE="Boost-1.0 BSD BSD-2 ISC MIT tcltk" +SLOT="0" +KEYWORDS="~amd64 ~x86" +# NOTE: opengl removed for now as no support for it in upstream CMake +IUSE="apache bidi cairo geos java mysql oracle perl postgis python test" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/expat-2.2.8 + dev-libs/libxml2:2= + dev-libs/libxslt[crypt] + >=dev-libs/protobuf-c-1.3.2:= + >=media-libs/freetype-2.9.1-r3 + >=media-libs/gd-2.0.12:=[truetype,jpeg,png,zlib] + >=media-libs/giflib-5.2.1:= + media-libs/libjpeg-turbo + >=media-libs/libpng-1.6.37:= + >=net-misc/curl-7.69.1 + >=sci-libs/gdal-3.0.4:=[oracle?] + >=sci-libs/proj-6.2.1:= + virtual/libiconv + >=x11-libs/agg-2.5-r3 + apache? ( + app-admin/webapp-config + dev-libs/fcgi + ) + bidi? ( + dev-libs/fribidi + media-libs/harfbuzz:= + ) + cairo? ( x11-libs/cairo ) + geos? ( sci-libs/geos ) + mysql? ( dev-db/mysql-connector-c:= ) + oracle? ( dev-db/oracle-instantclient:= ) + perl? ( dev-lang/perl:= ) + postgis? ( + dev-db/postgis + dev-db/postgresql:= + ) + python? ( ${PYTHON_DEPS} ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + java? ( + virtual/jdk + >=dev-lang/swig-4.0 + ) + perl? ( >=dev-lang/swig-4.0 ) + python? ( + >=dev-lang/swig-4.0 + >=dev-python/setuptools-44.1.0 + ) +" + +want_apache2 apache + +pkg_setup() { + use apache && webapp_pkg_setup + use perl && perl_set_version + + if use java ; then + QA_SONAME="usr/$(get_libdir)/libjavamapscript.so" + fi +} + +src_prepare() { + cmake_src_prepare + + use python && python_copy_sources +} + +_generate_cmake_args() { + # Provides a simple, bare config for bindings to build upon + # Need WITH_WMS=ON or build fails + local args=( + "-DCMAKE_SKIP_RPATH=ON" + "-DINSTALL_LIB_DIR=/usr/$(get_libdir)" + "-DCMAKE_INSTALL_SYSCONFDIR=/usr/share/${PN}" + "-DWITH_CAIRO=OFF" + "-DWITH_FCGI=OFF" + "-DWITH_FRIBIDI=OFF" + "-DWITH_GEOS=OFF" + "-DWITH_GIF=OFF" + "-DWITH_HARFBUZZ=OFF" + "-DWITH_ICONV=OFF" + "-DWITH_PROTOBUFC=OFF" + "-DWITH_POSTGIS=OFF" + "-DWITH_WMS=ON" + "-DWITH_WCS=OFF" + "-DWITH_WFS=OFF" + "-DWITH_OGCAPI=OFF" + ) + + echo "${args[@]}" +} + +src_configure() { + if use java; then + export JAVA_HOME="$(java-config -g JAVA_HOME)" + fi + + # NOTE: We could make this based on _generate_cmake_args, but + # then we wouldn't be as-explicit about what is enabled/not, + # and reliant on defaults not changing. + # Readability and maintainability is better this way. + local mycmakeargs=( + "-DBUILD_TESTING=$(usex test)" + "-DBUILD_FUZZER_REPRODUCER=OFF" + "-DCMAKE_SKIP_RPATH=ON" + "-DINSTALL_LIB_DIR=/usr/$(get_libdir)" + "-DCMAKE_INSTALL_SYSCONFDIR=/usr/share/${PN}" + "-DWITH_CLIENT_WMS=ON" + "-DWITH_CLIENT_WFS=ON" + "-DWITH_CURL=ON" + "-DWITH_GIF=ON" + "-DWITH_ICONV=ON" + "-DWITH_KML=ON" + "-DWITH_LIBXML2=ON" + "-DWITH_PHPNG=OFF" + "-DWITH_PROTOBUFC=ON" + "-DWITH_SOS=ON" + "-DWITH_WMS=ON" + "-DWITH_WFS=ON" + "-DWITH_WCS=ON" + "-DWITH_XMLMAPFILE=ON" + "-DWITH_APACHE_MODULE=$(usex apache ON OFF)" + "-DWITH_CAIRO=$(usex cairo ON OFF)" + "-DWITH_FCGI=$(usex apache ON OFF)" + "-DWITH_GEOS=$(usex geos ON OFF)" + "-DWITH_JAVA=$(usex java ON OFF)" + "-DWITH_ORACLESPATIAL=$(usex oracle ON OFF)" + "-DWITH_MYSQL=$(usex mysql ON OFF)" + "-DWITH_FRIBIDI=$(usex bidi ON OFF)" + "-DWITH_HARFBUZZ=$(usex bidi ON OFF)" + "-DWITH_POSTGIS=$(usex postgis ON OFF)" + "-DWITH_PERL=$(usex perl ON OFF)" + ) + + use perl && mycmakeargs+=( "-DCUSTOM_PERL_SITE_ARCH_DIR=$(perl_get_raw_vendorlib)" ) + + # Configure the standard build first + cmake_src_configure + + # Minimal build for bindings + # Note that we use _generate_cmake_args to get a clean config each time, then add + # in options as appropriate. Otherwise we'd get contamination between bindings. + if use python ; then + mycmakeargs=( + $(_generate_cmake_args) + "-DWITH_PYTHON=ON" + ) + + python_foreach_impl cmake_src_configure + python_foreach_impl python_optimize + fi +} + +src_compile() { + cmake_src_compile + + if use python ; then + python_foreach_impl cmake_src_compile + fi +} + +src_test() { + local -x LD_LIBRARY_PATH="${BUILD_DIR}:${LD_LIBRARY_PATH}" + + cmake_src_test +} + +src_install() { + # Needs to be first + use apache && webapp_src_preinst + + if use python ; then + python_foreach_impl cmake_src_install + python_foreach_impl python_optimize + remove_egg_info() { rm -rf "${D}/$(python_get_sitedir)"/*.egg-info || die; } + python_foreach_impl remove_egg_info + fi + + # Install this last because this build is the most "fully-featured" + cmake_src_install + + if use apache ; then + # We need a mapserver symlink available in cgi-bin + dosym ../../../../../../../usr/bin/mapserv /usr/share/webapps/${PN}/${PV}/hostroot/cgi-bin/mapserv + webapp_src_install + fi + + if use java ; then + java-pkg_dojar "${BUILD_DIR}"/mapscript/java/mapscript.jar + fi +} + +pkg_postinst() { + use apache && webapp_pkg_postinst +} + +pkg_prerm() { + use apache && webapp_pkg_prerm +} diff --git a/sci-geosciences/merkaartor/Manifest b/sci-geosciences/merkaartor/Manifest index 511699b85cad..d2d2c61fc2d5 100644 --- a/sci-geosciences/merkaartor/Manifest +++ b/sci-geosciences/merkaartor/Manifest @@ -1,2 +1 @@ -DIST merkaartor-0.19.0.tar.gz 5665947 BLAKE2B 1ade571b8e429b9da89206d50b0f33f69cb0973d4ada30dc0d84d4c6c47394170ddb8503490eeda8666656eeb07159498d02bbc36e61f2dffedef167f221be01 SHA512 2e832ba14fd89861a4ae2940d281c801d039e09aaf30ada996ac508e084a29d033f8ac3d3e4711c78d1f36df84ab133bd0a901e0e8fa72efa098001724940a6d DIST merkaartor-0.20.0.tar.gz 5592116 BLAKE2B 9a78f66cea55bab3262d80d594da93f80bb834c7121960da1ade02624f8435545168b911a944d005995a0c60e4974fd58494867a6ec2eca47b1430968677a9d3 SHA512 db64c3053618a0bed7984223c9aa8e4175fdf7db2dd70bf3c6ec021b46fae1d095c513c3e151086baf07446c7cf81c49923a2e43e79963d956d29643d7f93910 diff --git a/sci-geosciences/merkaartor/files/merkaartor-0.18.3-sharedir-pluginsdir.patch b/sci-geosciences/merkaartor/files/merkaartor-0.18.3-sharedir-pluginsdir.patch deleted file mode 100644 index 46f5964e17cb..000000000000 --- a/sci-geosciences/merkaartor/files/merkaartor-0.18.3-sharedir-pluginsdir.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- a/src/src.pro 2018-08-05 13:25:02.761849538 +0100 -+++ b/src/src.pro 2018-08-05 13:25:55.935846789 +0100 -@@ -155,8 +155,10 @@ - isEmpty( LIBDIR ) { - LIBDIR = $${PREFIX}/lib${LIB_SUFFIX} - } -- -- DEFINES += PLUGINS_DIR=$${LIBDIR}/merkaartor/plugins -+ isEmpty( PLUGINS_DIR ){ -+ PLUGINS_DIR=$${LIBDIR}/merkaartor/plugins -+ } -+ DEFINES += PLUGINS_DIR=$${PLUGINS_DIR} - - target.path = $${PREFIX}/bin - SHARE_DIR = $${PREFIX}/share/merkaartor - ---- a/src/src.pro 2018-08-05 16:20:33.759305219 +0100 -+++ b/src/src.pro 2018-08-05 16:20:53.094304220 +0100 -@@ -181,7 +181,7 @@ - - - --DEFINES += SHARE_DIR=$${SHARE_DIR} -+DEFINES += SHARE_DIR=$${SHARE_DIR_PATH} - INSTALLS += target - - win32-msvc* { - diff --git a/sci-geosciences/merkaartor/files/merkaartor-0.19.0-exiv2-0.28.patch b/sci-geosciences/merkaartor/files/merkaartor-0.19.0-exiv2-0.28.patch deleted file mode 100644 index 4f98b9a4fa36..000000000000 --- a/sci-geosciences/merkaartor/files/merkaartor-0.19.0-exiv2-0.28.patch +++ /dev/null @@ -1,50 +0,0 @@ -From 1e20d2ccd743ea5f8c2358e4ae36fead8b9390fd Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Ladislav=20L=C3=A1ska?= <krakonos@krakonos.org> -Date: Sat, 16 Jul 2022 12:41:33 +0200 -Subject: [PATCH] Replaced use of AutoPtr with std::unique_ptr in - GeoImageDock.cpp. - ---- - src/Docks/GeoImageDock.cpp | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/src/Docks/GeoImageDock.cpp b/src/Docks/GeoImageDock.cpp -index 02b5cdc0..e2fa1601 100644 ---- a/src/Docks/GeoImageDock.cpp -+++ b/src/Docks/GeoImageDock.cpp -@@ -457,7 +457,7 @@ void GeoImageDock::loadImages(QStringList fileNames) - Document *theDocument = Main->document(); - MapView *theView = Main->view(); - -- Exiv2::Image::AutoPtr image; -+ std::unique_ptr<Exiv2::Image> image; - Exiv2::ExifData exifData; - bool positionValid = false; - -@@ -869,7 +869,7 @@ void GeoImageDock::saveImage() - // fn = QFileDialog::getSaveFileName(0, "Specify output filename", fn, tr("JPEG Images (*.jpg)")); - qDebug() << fn; - if (!fn.isEmpty()) { -- Exiv2::Image::AutoPtr imageIn, imageOut; -+ std::unique_ptr<Exiv2::Image> imageIn, imageOut; - Exiv2::ExifData exifData; - try { - imageIn = Exiv2::ImageFactory::open(usedTrackPoints.at(index).filename.toStdString()); -@@ -893,7 +893,7 @@ Coord GeoImageDock::getGeoDataFromImage(const QString & file) - { - Coord pos; - double lat = 0.0, lon = 0.0; -- Exiv2::Image::AutoPtr image; -+ std::unique_ptr<Exiv2::Image> image; - Exiv2::ExifData exifData; - bool positionValid = false; - -@@ -933,7 +933,7 @@ Coord GeoImageDock::getGeoDataFromImage(const QString & file) - - void GeoImageDock::addGeoDataToImage(Coord position, const QString & file) - { -- Exiv2::Image::AutoPtr image; -+ std::unique_ptr<Exiv2::Image> image; - - try { - image = Exiv2::ImageFactory::open(file.toStdString()); diff --git a/sci-geosciences/merkaartor/merkaartor-0.19.0-r1.ebuild b/sci-geosciences/merkaartor/merkaartor-0.19.0-r1.ebuild deleted file mode 100644 index c959fecd8c1c..000000000000 --- a/sci-geosciences/merkaartor/merkaartor-0.19.0-r1.ebuild +++ /dev/null @@ -1,104 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PLOCALES="cs de en es fi fr hr hu id_ID it ja nl pl pt_BR ru sv uk zh_TW" -inherit flag-o-matic plocale qmake-utils xdg - -if [[ ${PV} != *9999 ]] ; then - SRC_URI="https://github.com/openstreetmap/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -else - EGIT_REPO_URI="https://github.com/openstreetmap/merkaartor.git" - inherit git-r3 -fi - -DESCRIPTION="Qt based map editor for the openstreetmap.org project" -HOMEPAGE="http://www.merkaartor.be https://github.com/openstreetmap/merkaartor" - -LICENSE="GPL-2" -SLOT="0" -IUSE="debug exif gps libproxy webengine" - -DEPEND=" - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtprintsupport:5 - dev-qt/qtsingleapplication[X,qt5(+)] - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - sci-libs/gdal:= - sci-libs/proj:= - sys-libs/zlib - exif? ( media-gfx/exiv2:= ) - gps? ( >=sci-geosciences/gpsd-3.17-r2:= ) - libproxy? ( net-libs/libproxy ) - webengine? ( dev-qt/qtwebengine:5[widgets] ) -" -RDEPEND="${DEPEND}" -BDEPEND=" - dev-qt/linguist-tools:5 - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${PN}-0.18.3-sharedir-pluginsdir.patch # downstream, bug 621826 - "${FILESDIR}"/${P}-exiv2-0.28.patch # upstream git master, bug 906501 -) - -DOCS=( AUTHORS CHANGELOG ) - -src_prepare() { - default - - rm -r 3rdparty || die "Failed to remove bundled libs" - - my_rm_loc() { - sed -i -e "s:../translations/${PN}_${1}.\(ts\|qm\)::" src/src.pro || die - rm "translations/${PN}_${1}.ts" || die - } - - if [[ -n "$(plocale_get_locales)" ]]; then - plocale_for_each_disabled_locale my_rm_loc - $(qt5_get_bindir)/lrelease src/src.pro || die - fi - - # build system expects to be building from git - if [[ ${PV} != *9999 ]] ; then - sed -i src/Config.pri -e "s:SION = .*:SION = \"${PV}\":g" || die - fi -} - -src_configure() { - if has_version "<sci-libs/proj-8.0.0" ; then - # bug #685234 - append-cppflags -DACCEPT_USE_OF_DEPRECATED_PROJ_API_H - fi - - # TRANSDIR_SYSTEM is for bug #385671 - local myeqmakeargs=( - PREFIX="${EPREFIX}/usr" - LIBDIR="${EPREFIX}/usr/$(get_libdir)" - PLUGINS_DIR="/usr/$(get_libdir)/${PN}/plugins" - SHARE_DIR_PATH="/usr/share/${PN}" - TRANSDIR_MERKAARTOR="${EPREFIX}/usr/share/${PN}/translations" - TRANSDIR_SYSTEM="${EPREFIX}/usr/share/qt5/translations" - SYSTEM_QTSA=1 - NODEBUG=$(usex debug 0 1) - GEOIMAGE=$(usex exif 1 0) - GPSDLIB=$(usex gps 1 0) - LIBPROXY=$(usex libproxy 1 0) - USEWEBENGINE=$(usex webengine 1 0) - ) - [[ ${PV} != *9999 ]] && myeqmakeargs+=( RELEASE=1 ) - - eqmake5 "${myeqmakeargs[@]}" Merkaartor.pro -} - -src_install() { - emake install INSTALL_ROOT="${D}" -} diff --git a/sci-geosciences/opencpn-plugin-aisradar/Manifest b/sci-geosciences/opencpn-plugin-aisradar/Manifest deleted file mode 100644 index d17d593b5000..000000000000 --- a/sci-geosciences/opencpn-plugin-aisradar/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-aisradar-1.2.17.0.tar.gz 1487007 BLAKE2B 0acdee13a7557e27b0d4832da18622ac2be77056b3a84e3825d77357928e190a6161e7358b9701510b910a2549336a8499fec4b5f17547223579faaa1e5984e5 SHA512 8142607f0bd0211c7e519761521205ecf426b2300f2798e60c3d97e691849603fa6fffddcd33255da03796a3d9b43858bed649854dffaa180dbc2338a2328bf1 diff --git a/sci-geosciences/opencpn-plugin-aisradar/metadata.xml b/sci-geosciences/opencpn-plugin-aisradar/metadata.xml deleted file mode 100644 index ea23384e621c..000000000000 --- a/sci-geosciences/opencpn-plugin-aisradar/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">Verezano/radar_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-aisradar/opencpn-plugin-aisradar-1.2.17.0.ebuild b/sci-geosciences/opencpn-plugin-aisradar/opencpn-plugin-aisradar-1.2.17.0.ebuild deleted file mode 100644 index 0a5718ad0535..000000000000 --- a/sci-geosciences/opencpn-plugin-aisradar/opencpn-plugin-aisradar-1.2.17.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="AISradar_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rgleason/${MY_PN}.git" -else - SRC_URI="https://github.com/rgleason/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="AIS Radar View Plugin for OpenCPN" -HOMEPAGE="https://github.com/rgleason/AISradar_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-aisradar/opencpn-plugin-aisradar-9999.ebuild b/sci-geosciences/opencpn-plugin-aisradar/opencpn-plugin-aisradar-9999.ebuild deleted file mode 100644 index 0a5718ad0535..000000000000 --- a/sci-geosciences/opencpn-plugin-aisradar/opencpn-plugin-aisradar-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="AISradar_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rgleason/${MY_PN}.git" -else - SRC_URI="https://github.com/rgleason/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="AIS Radar View Plugin for OpenCPN" -HOMEPAGE="https://github.com/rgleason/AISradar_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-climatology/Manifest b/sci-geosciences/opencpn-plugin-climatology/Manifest deleted file mode 100644 index b60a8d6a90f4..000000000000 --- a/sci-geosciences/opencpn-plugin-climatology/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST opencpn-plugin-climatology-1.0-CL-DATA.tar.xz 5830716 BLAKE2B 57e781f4d86ec17456e786629ec5b82c9aba872c2f8c26ec628e4ab5314b0a3c6933cc0c7a36616830038add1f95a52b8acd7c6f03cb702c611be255a3b91f1a SHA512 5c0b724e7acbfe4a7f494d107806a3491f000f26f4a92519294975dd57a0ba68919c4bed3571ec8fa652138f26f09abd3742a1e5097fa54714564c70f84fbfd3 -DIST opencpn-plugin-climatology-1.4.32.0.tar.gz 7070623 BLAKE2B fe710287cae08a511baa504af89b9ae7a5b0f23b2c6071803c7b7627917fd48353caef977c27b1f6d35febc2ab20a8df364c5c939b8702d9256ae3a8d5ed0b13 SHA512 11158e73658bd7ffa0d3726fab69afb5cedab5594507a36b3836b2806ac3e120b27c4e2669819db63e6991fae89534b6cee4dd04964c3310c4afe3901fe21f1b diff --git a/sci-geosciences/opencpn-plugin-climatology/metadata.xml b/sci-geosciences/opencpn-plugin-climatology/metadata.xml deleted file mode 100644 index 404cfa34be89..000000000000 --- a/sci-geosciences/opencpn-plugin-climatology/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="sourceforge">opencpnplugins</remote-id> - <remote-id type="github">seandepagnier/climatology_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-climatology/opencpn-plugin-climatology-1.4.32.0.ebuild b/sci-geosciences/opencpn-plugin-climatology/opencpn-plugin-climatology-1.4.32.0.ebuild deleted file mode 100644 index 1694b896600a..000000000000 --- a/sci-geosciences/opencpn-plugin-climatology/opencpn-plugin-climatology-1.4.32.0.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="climatology_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rgleason/${MY_PN}.git" -else - SRC_URI="https://github.com/rgleason/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Climatology Plugin for OpenCPN (includes CL-DATA)" -HOMEPAGE="https://github.com/rgleason/climatology_pi" -SRC_URI=" - ${SRC_URI} - https://downloads.sourceforge.net/opencpnplugins/climatology_pi/CL-DATA-1.0.tar.xz -> ${PN}-1.0-CL-DATA.tar.xz" - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_unpack() { - unpack ${A} - if [[ ${PV} == *9999 ]] ; then - git-r3_checkout - fi -} - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} - -src_install() { - cmake_src_install - - insinto /usr/share/opencpn/plugins/${MY_PN}/data/ - doins -r {,../}data/. -} diff --git a/sci-geosciences/opencpn-plugin-climatology/opencpn-plugin-climatology-9999.ebuild b/sci-geosciences/opencpn-plugin-climatology/opencpn-plugin-climatology-9999.ebuild deleted file mode 100644 index 1694b896600a..000000000000 --- a/sci-geosciences/opencpn-plugin-climatology/opencpn-plugin-climatology-9999.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="climatology_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rgleason/${MY_PN}.git" -else - SRC_URI="https://github.com/rgleason/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Climatology Plugin for OpenCPN (includes CL-DATA)" -HOMEPAGE="https://github.com/rgleason/climatology_pi" -SRC_URI=" - ${SRC_URI} - https://downloads.sourceforge.net/opencpnplugins/climatology_pi/CL-DATA-1.0.tar.xz -> ${PN}-1.0-CL-DATA.tar.xz" - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_unpack() { - unpack ${A} - if [[ ${PV} == *9999 ]] ; then - git-r3_checkout - fi -} - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} - -src_install() { - cmake_src_install - - insinto /usr/share/opencpn/plugins/${MY_PN}/data/ - doins -r {,../}data/. -} diff --git a/sci-geosciences/opencpn-plugin-dr/Manifest b/sci-geosciences/opencpn-plugin-dr/Manifest deleted file mode 100644 index b8e4c9ec3950..000000000000 --- a/sci-geosciences/opencpn-plugin-dr/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-dr-4.0.0.tar.gz 2010328 BLAKE2B 7b3d9e93edb52e6c039e759a5a4f8f85145c89c68b6c9d33ecf8fa376e4150bfe34a516bb9f278ef820fb880c2c45b13a446151c46bd9220e303c1b352010601 SHA512 0cbb87b66569451510f813a7766ca7e7e5c120861046c93b0adb0e71b90528ae83b12201635ec0e3a9286c470e0a93015c4a5a99cbc13979c894fa4be36ce71f diff --git a/sci-geosciences/opencpn-plugin-dr/files/cmake.patch b/sci-geosciences/opencpn-plugin-dr/files/cmake.patch deleted file mode 100644 index ab0bb813c321..000000000000 --- a/sci-geosciences/opencpn-plugin-dr/files/cmake.patch +++ /dev/null @@ -1,41 +0,0 @@ -diff -ur DR_pi-4.0.0.orig/CMakeLists.txt DR_pi-4.0.0/CMakeLists.txt ---- DR_pi-4.0.0.orig/CMakeLists.txt 2021-11-04 00:32:44.000000000 -1000 -+++ DR_pi-4.0.0/CMakeLists.txt 2021-11-29 00:11:03.998266321 -1000 -@@ -61,9 +61,10 @@ - ) - include(Targets) - create_targets(${FLATPAK_MANIFEST}) --if ("${BUILD_TYPE}" STREQUAL "") -- return () --endif () -+#if ("${BUILD_TYPE}" STREQUAL "") -+# return () -+#endif () -+include(PluginLibs) - - if (NOT ${BUILD_TYPE} STREQUAL "flatpak") - # Build package as required (flatpak already dealt with). -diff -ur DR_pi-4.0.0.orig/cmake/PluginInstall.cmake DR_pi-4.0.0/cmake/PluginInstall.cmake ---- DR_pi-4.0.0.orig/cmake/PluginInstall.cmake 2021-11-04 00:32:44.000000000 -1000 -+++ DR_pi-4.0.0/cmake/PluginInstall.cmake 2021-11-29 00:10:04.241099544 -1000 -@@ -11,7 +11,7 @@ - # the Free Software Foundation; either version 3 of the License, or - # (at your option) any later version. - --include(Metadata) -+#include(Metadata) - - if (APPLE) - install( -diff -ur DR_pi-4.0.0.orig/cmake/Targets.cmake DR_pi-4.0.0/cmake/Targets.cmake ---- DR_pi-4.0.0.orig/cmake/Targets.cmake 2021-11-04 00:32:44.000000000 -1000 -+++ DR_pi-4.0.0/cmake/Targets.cmake 2021-11-29 00:10:18.954386822 -1000 -@@ -19,7 +19,7 @@ - return() - endif () - --include(Metadata) -+#include(Metadata) - - if (UNIX AND NOT APPLE AND NOT QT_ANDROID) - set(_LINUX ON) diff --git a/sci-geosciences/opencpn-plugin-dr/metadata.xml b/sci-geosciences/opencpn-plugin-dr/metadata.xml deleted file mode 100644 index bfcdc2c85249..000000000000 --- a/sci-geosciences/opencpn-plugin-dr/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">Rasbats/DR_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-4.0.0.ebuild b/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-4.0.0.ebuild deleted file mode 100644 index f8093a00ebdc..000000000000 --- a/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-4.0.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="DR_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/Rasbats/${MY_PN}.git" -else - SRC_URI="https://github.com/Rasbats/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Dead Reckoning Positions Plugin for OpenCPN" -HOMEPAGE="https://github.com/Rasbats/DR_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -PATCHES=( - "${FILESDIR}/cmake.patch" -) - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-9999.ebuild b/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-9999.ebuild deleted file mode 100644 index f8093a00ebdc..000000000000 --- a/sci-geosciences/opencpn-plugin-dr/opencpn-plugin-dr-9999.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="DR_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/Rasbats/${MY_PN}.git" -else - SRC_URI="https://github.com/Rasbats/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Dead Reckoning Positions Plugin for OpenCPN" -HOMEPAGE="https://github.com/Rasbats/DR_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -PATCHES=( - "${FILESDIR}/cmake.patch" -) - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-findit/Manifest b/sci-geosciences/opencpn-plugin-findit/Manifest deleted file mode 100644 index 8990e2117cf8..000000000000 --- a/sci-geosciences/opencpn-plugin-findit/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-findit-1.2.12.0.tar.gz 860413 BLAKE2B ff116fb6c543b8a94d3b16e443d7bd015fa1acd2f668103b77efaec693588813200fe08b1357f4460cca46b1dcdfd7d0fc6c5298f290ade5776773513667d3a9 SHA512 d47a5d0b575164a1708924931e7aa7c9151a0a25bc3647b86a662b20177f434bc690b534b0255d348f64124a7affff45654bb42934c2b0ceb2086eaae213f9ec diff --git a/sci-geosciences/opencpn-plugin-findit/metadata.xml b/sci-geosciences/opencpn-plugin-findit/metadata.xml deleted file mode 100644 index 593e75551d7c..000000000000 --- a/sci-geosciences/opencpn-plugin-findit/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">ptulp/FindIt_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-findit/opencpn-plugin-findit-1.2.12.0.ebuild b/sci-geosciences/opencpn-plugin-findit/opencpn-plugin-findit-1.2.12.0.ebuild deleted file mode 100644 index 4ea63062e2ca..000000000000 --- a/sci-geosciences/opencpn-plugin-findit/opencpn-plugin-findit-1.2.12.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="FindIt_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rgleason/${MY_PN}.git" -else - SRC_URI="https://github.com/rgleason/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="FindIt Plugin for OpenCPN" -HOMEPAGE="https://github.com/rgleason/FindIt_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-findit/opencpn-plugin-findit-9999.ebuild b/sci-geosciences/opencpn-plugin-findit/opencpn-plugin-findit-9999.ebuild deleted file mode 100644 index 4ea63062e2ca..000000000000 --- a/sci-geosciences/opencpn-plugin-findit/opencpn-plugin-findit-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="FindIt_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rgleason/${MY_PN}.git" -else - SRC_URI="https://github.com/rgleason/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="FindIt Plugin for OpenCPN" -HOMEPAGE="https://github.com/rgleason/FindIt_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-gxradar/Manifest b/sci-geosciences/opencpn-plugin-gxradar/Manifest deleted file mode 100644 index 877b770c5fa7..000000000000 --- a/sci-geosciences/opencpn-plugin-gxradar/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-gxradar-1.1.tar.gz 297126 BLAKE2B 9e1ab6d0fb525b17d2b8051ae13c75157bc8b12b106d68be5eb9f0f7dfb9d0dbf4b5001c5382b9a902d4ce3a75dbc7bc3bb354cbd97b538b60076829a4c152c8 SHA512 16b361e664323d125872628291bf97c6ac29caee4bae09ec256180aa66591bf9c66b7bdc38cd6d3c0988ed295148c0691bb8e511b5a9b9b6b34046dd419c9d7e diff --git a/sci-geosciences/opencpn-plugin-gxradar/metadata.xml b/sci-geosciences/opencpn-plugin-gxradar/metadata.xml deleted file mode 100644 index 6eb333eb3bb5..000000000000 --- a/sci-geosciences/opencpn-plugin-gxradar/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">trudK45/gxradar_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-gxradar/opencpn-plugin-gxradar-1.1.ebuild b/sci-geosciences/opencpn-plugin-gxradar/opencpn-plugin-gxradar-1.1.ebuild deleted file mode 100644 index ed4046ca4fde..000000000000 --- a/sci-geosciences/opencpn-plugin-gxradar/opencpn-plugin-gxradar-1.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="gxradar_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/trudK45/${MY_PN}.git" -else - SRC_URI="https://github.com/trudK45/${MY_PN}/archive/v.${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-v.${PV}" -fi - -DESCRIPTION="Garmin xHD Radar Plugin for OpenCPN" -HOMEPAGE="https://github.com/trudK45/gxradar_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-gxradar/opencpn-plugin-gxradar-9999.ebuild b/sci-geosciences/opencpn-plugin-gxradar/opencpn-plugin-gxradar-9999.ebuild deleted file mode 100644 index ed4046ca4fde..000000000000 --- a/sci-geosciences/opencpn-plugin-gxradar/opencpn-plugin-gxradar-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="gxradar_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/trudK45/${MY_PN}.git" -else - SRC_URI="https://github.com/trudK45/${MY_PN}/archive/v.${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-v.${PV}" -fi - -DESCRIPTION="Garmin xHD Radar Plugin for OpenCPN" -HOMEPAGE="https://github.com/trudK45/gxradar_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-iacfleet/Manifest b/sci-geosciences/opencpn-plugin-iacfleet/Manifest deleted file mode 100644 index 359143604f59..000000000000 --- a/sci-geosciences/opencpn-plugin-iacfleet/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-iacfleet-0.21.1.tar.gz 228102 BLAKE2B eedb536e954f4534c7e256800e8888ff9f7d9eac5b26e21013f7ff519dfa9826253fef9d1f09af265fc448662551a16fbf5e5ab1a21bf3aa75234a8e5d170ee4 SHA512 86e26ca2291d36bdf8090ff03a9d1a79c263549ba7f5db34ed3e47be14f73eec35319567b76e66e6e87a21a1486b71c77964545da6ceab896bb42965c484c78d diff --git a/sci-geosciences/opencpn-plugin-iacfleet/metadata.xml b/sci-geosciences/opencpn-plugin-iacfleet/metadata.xml deleted file mode 100644 index 549efe21a11b..000000000000 --- a/sci-geosciences/opencpn-plugin-iacfleet/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">nohal/iacfleet_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-iacfleet/opencpn-plugin-iacfleet-0.21.1-r1.ebuild b/sci-geosciences/opencpn-plugin-iacfleet/opencpn-plugin-iacfleet-0.21.1-r1.ebuild deleted file mode 100644 index a21dc632da69..000000000000 --- a/sci-geosciences/opencpn-plugin-iacfleet/opencpn-plugin-iacfleet-0.21.1-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -WX_GTK_VER="3.0-gtk3" -inherit cmake flag-o-matic wxwidgets - -MY_PN="iacfleet_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/nohal/${MY_PN}.git" -else - SRC_URI="https://github.com/nohal/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="IAC Fleetcode Plugin for OpenCPN" -HOMEPAGE="https://github.com/nohal/iacfleet_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - # -Werror=strict-aliasing - # https://bugs.gentoo.org/927485 - # https://github.com/nohal/iacfleet_pi/issues/30 - # - # Do not trust with LTO either. - append-flags -fno-strict-aliasing - filter-lto - - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-iacfleet/opencpn-plugin-iacfleet-9999.ebuild b/sci-geosciences/opencpn-plugin-iacfleet/opencpn-plugin-iacfleet-9999.ebuild deleted file mode 100644 index a21dc632da69..000000000000 --- a/sci-geosciences/opencpn-plugin-iacfleet/opencpn-plugin-iacfleet-9999.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -WX_GTK_VER="3.0-gtk3" -inherit cmake flag-o-matic wxwidgets - -MY_PN="iacfleet_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/nohal/${MY_PN}.git" -else - SRC_URI="https://github.com/nohal/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="IAC Fleetcode Plugin for OpenCPN" -HOMEPAGE="https://github.com/nohal/iacfleet_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - # -Werror=strict-aliasing - # https://bugs.gentoo.org/927485 - # https://github.com/nohal/iacfleet_pi/issues/30 - # - # Do not trust with LTO either. - append-flags -fno-strict-aliasing - filter-lto - - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-launcher/Manifest b/sci-geosciences/opencpn-plugin-launcher/Manifest deleted file mode 100644 index 07a9db0589da..000000000000 --- a/sci-geosciences/opencpn-plugin-launcher/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-launcher-1.3.tar.gz 128022 BLAKE2B 56adbd348ea13cf28d0cb3abd3b86c36449852227515d9bdcf1e758b385b4eba339f3774f321ac62b691f5ddbf8487d78b3093c0e46cbcbf668e222b0281e821 SHA512 dae46cf310bd8ce913ea62a8e1519aa60a9f17866393fb46b50a3f3ff256bfaca80fa595acc32612ca0ee4a75af2c1ed6259c57881d702e47ed6ac8c57027ab6 diff --git a/sci-geosciences/opencpn-plugin-launcher/metadata.xml b/sci-geosciences/opencpn-plugin-launcher/metadata.xml deleted file mode 100644 index 0013243bd2dc..000000000000 --- a/sci-geosciences/opencpn-plugin-launcher/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">nohal/launcher_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-launcher/opencpn-plugin-launcher-1.3.ebuild b/sci-geosciences/opencpn-plugin-launcher/opencpn-plugin-launcher-1.3.ebuild deleted file mode 100644 index 7576bdb8e653..000000000000 --- a/sci-geosciences/opencpn-plugin-launcher/opencpn-plugin-launcher-1.3.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="launcher_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/nohal/${MY_PN}.git" -else - SRC_URI="https://github.com/nohal/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Launcher Plugin for OpenCPN" -HOMEPAGE="https://github.com/nohal/launcher_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-launcher/opencpn-plugin-launcher-9999.ebuild b/sci-geosciences/opencpn-plugin-launcher/opencpn-plugin-launcher-9999.ebuild deleted file mode 100644 index 7576bdb8e653..000000000000 --- a/sci-geosciences/opencpn-plugin-launcher/opencpn-plugin-launcher-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="launcher_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/nohal/${MY_PN}.git" -else - SRC_URI="https://github.com/nohal/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Launcher Plugin for OpenCPN" -HOMEPAGE="https://github.com/nohal/launcher_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:=" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-logbookkonni/Manifest b/sci-geosciences/opencpn-plugin-logbookkonni/Manifest deleted file mode 100644 index f4edae270e58..000000000000 --- a/sci-geosciences/opencpn-plugin-logbookkonni/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-logbookkonni-1.4.22.0.tar.gz 8595300 BLAKE2B ce4f1d87613ca4e5f4e4b6ea336b642ec780912395e855af5a88db0b8290b3aed796b54207c5a7776643dfa63dcdf93db711b63e5e9f95a4903c1e7e6874fbf3 SHA512 f3f50e8a7b24aca049b9495d1f3a5a303447df2fa1dc2e3c79a86a1d2be4a8b4f71e4b2ee596e721d3c2a0c9bb7138d9aed6bd28198cc91223233fa9440b827e diff --git a/sci-geosciences/opencpn-plugin-logbookkonni/files/cmake.patch b/sci-geosciences/opencpn-plugin-logbookkonni/files/cmake.patch deleted file mode 100644 index 4221ce9f82cd..000000000000 --- a/sci-geosciences/opencpn-plugin-logbookkonni/files/cmake.patch +++ /dev/null @@ -1,57 +0,0 @@ -diff -urN LogbookKonni_pi-1.4.22.0.orig/cmake/PluginInstall.cmake LogbookKonni_pi-1.4.22.0/cmake/PluginInstall.cmake ---- LogbookKonni_pi-1.4.22.0.orig/cmake/PluginInstall.cmake 2021-10-30 07:35:43.000000000 -1000 -+++ LogbookKonni_pi-1.4.22.0/cmake/PluginInstall.cmake 2021-11-29 22:31:48.755156001 -1000 -@@ -6,7 +6,7 @@ - # Installation items and layout. - # ~~~ - --include(Metadata) -+#include(Metadata) - - if (APPLE) - install( -diff -urN LogbookKonni_pi-1.4.22.0.orig/cmake/Targets.cmake LogbookKonni_pi-1.4.22.0/cmake/Targets.cmake ---- LogbookKonni_pi-1.4.22.0.orig/cmake/Targets.cmake 2021-10-30 07:35:43.000000000 -1000 -+++ LogbookKonni_pi-1.4.22.0/cmake/Targets.cmake 2021-11-29 22:31:48.756156018 -1000 -@@ -8,7 +8,7 @@ - return() - endif () - --include(Metadata) -+#include(Metadata) - - if (UNIX AND NOT APPLE AND NOT QT_ANDROID) - set(_LINUX ON) -diff -urN LogbookKonni_pi-1.4.22.0.orig/CMakeLists.txt LogbookKonni_pi-1.4.22.0/CMakeLists.txt ---- LogbookKonni_pi-1.4.22.0.orig/CMakeLists.txt 2021-10-30 07:35:43.000000000 -1000 -+++ LogbookKonni_pi-1.4.22.0/CMakeLists.txt 2021-11-29 22:42:03.398496368 -1000 -@@ -27,6 +27,7 @@ - endif () - message(STATUS "Cmake version: ${CMAKE_VERSION}.") - -+set(BUILD_TYPE "tarball") - - # -------- Build setup (mostly in PluginCompiler) -------- - # -@@ -57,6 +58,7 @@ - - option(PLUGIN_USE_SVG "Use SVG graphics" ON) - -+ - include(PluginOptions) - - # -@@ -135,9 +137,10 @@ - create_targets( - ${PROJECT_SOURCE_DIR}/flatpak/org.opencpn.OpenCPN.Plugin.logbook.yaml - ) --if ("${BUILD_TYPE}" STREQUAL "") -- return () --endif () -+#if ("${BUILD_TYPE}" STREQUAL "") -+# return () -+#endif () -+include(PluginLibs) - - if (NOT ${BUILD_TYPE} STREQUAL "flatpak") - # Build package as required (flatpak already dealt with). diff --git a/sci-geosciences/opencpn-plugin-logbookkonni/metadata.xml b/sci-geosciences/opencpn-plugin-logbookkonni/metadata.xml deleted file mode 100644 index ad45721e9078..000000000000 --- a/sci-geosciences/opencpn-plugin-logbookkonni/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">delatbabel/LogbookKonni-1.2</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-logbookkonni/opencpn-plugin-logbookkonni-1.4.22.0.ebuild b/sci-geosciences/opencpn-plugin-logbookkonni/opencpn-plugin-logbookkonni-1.4.22.0.ebuild deleted file mode 100644 index 37b7e7554be5..000000000000 --- a/sci-geosciences/opencpn-plugin-logbookkonni/opencpn-plugin-logbookkonni-1.4.22.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="LogbookKonni_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rgleason/${MY_PN}.git" -else - SRC_URI="https://github.com/rgleason/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Logbook Plugin for OpenCPN" -HOMEPAGE="https://github.com/rgleason/LogbookKonni_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:= - sys-devel/gettext" -DEPEND="${RDEPEND}" -BDEPEND=" - app-arch/zip - sys-devel/gettext" - -PATCHES=( - "${FILESDIR}/cmake.patch" -) - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} - -pkg_postinst() { - elog "Installation of logbook layouts" - elog "*******************************" - elog - elog "The default layouts zip file has been installed to:" - elog "${EROOT}/usr/share/opencpn/plugins/logbookkonni_pi/data/Layouts.zip" - elog - elog "After starting OpenCPN, go to Options->Plugins->Logbook->Settings," - elog "click the install button and choose the above mentioned zip file" - elog -} diff --git a/sci-geosciences/opencpn-plugin-logbookkonni/opencpn-plugin-logbookkonni-9999.ebuild b/sci-geosciences/opencpn-plugin-logbookkonni/opencpn-plugin-logbookkonni-9999.ebuild deleted file mode 100644 index 37b7e7554be5..000000000000 --- a/sci-geosciences/opencpn-plugin-logbookkonni/opencpn-plugin-logbookkonni-9999.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="LogbookKonni_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rgleason/${MY_PN}.git" -else - SRC_URI="https://github.com/rgleason/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Logbook Plugin for OpenCPN" -HOMEPAGE="https://github.com/rgleason/LogbookKonni_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - sci-geosciences/opencpn:= - sys-devel/gettext" -DEPEND="${RDEPEND}" -BDEPEND=" - app-arch/zip - sys-devel/gettext" - -PATCHES=( - "${FILESDIR}/cmake.patch" -) - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} - -pkg_postinst() { - elog "Installation of logbook layouts" - elog "*******************************" - elog - elog "The default layouts zip file has been installed to:" - elog "${EROOT}/usr/share/opencpn/plugins/logbookkonni_pi/data/Layouts.zip" - elog - elog "After starting OpenCPN, go to Options->Plugins->Logbook->Settings," - elog "click the install button and choose the above mentioned zip file" - elog -} diff --git a/sci-geosciences/opencpn-plugin-objsearch/Manifest b/sci-geosciences/opencpn-plugin-objsearch/Manifest deleted file mode 100644 index 029167c0daa0..000000000000 --- a/sci-geosciences/opencpn-plugin-objsearch/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-objsearch-0.7.tar.gz 2047642 BLAKE2B f7e07c93bab6929a9d096b4c39e14842b8069f134e5cb4ba7ff69d79371c1d04754e11592d440832abee8b41eb6de1f6ad9abe3f21ecc892ea3b2f9bf0a7a093 SHA512 9c371bf3a5ef551a68ea7e2569536df37d7ec1241be011c6a313229f3c34697332c967c91855d9ccdd4f0a3412ade130fe241ea22c803f7c37543539602f71b3 diff --git a/sci-geosciences/opencpn-plugin-objsearch/metadata.xml b/sci-geosciences/opencpn-plugin-objsearch/metadata.xml deleted file mode 100644 index 3d9099985ab0..000000000000 --- a/sci-geosciences/opencpn-plugin-objsearch/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">nohal/objsearch_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-objsearch/opencpn-plugin-objsearch-0.7.ebuild b/sci-geosciences/opencpn-plugin-objsearch/opencpn-plugin-objsearch-0.7.ebuild deleted file mode 100644 index d8a4f05a0de4..000000000000 --- a/sci-geosciences/opencpn-plugin-objsearch/opencpn-plugin-objsearch-0.7.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="objsearch_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/nohal/${MY_PN}.git" -else - SRC_URI="https://github.com/nohal/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Chart Object Search Plugin for OpenCPN" -HOMEPAGE="https://github.com/nohal/objsearch_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-objsearch/opencpn-plugin-objsearch-9999.ebuild b/sci-geosciences/opencpn-plugin-objsearch/opencpn-plugin-objsearch-9999.ebuild deleted file mode 100644 index d8a4f05a0de4..000000000000 --- a/sci-geosciences/opencpn-plugin-objsearch/opencpn-plugin-objsearch-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="objsearch_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/nohal/${MY_PN}.git" -else - SRC_URI="https://github.com/nohal/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Chart Object Search Plugin for OpenCPN" -HOMEPAGE="https://github.com/nohal/objsearch_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-ocpn_draw/Manifest b/sci-geosciences/opencpn-plugin-ocpn_draw/Manifest deleted file mode 100644 index 7e2f5f76d721..000000000000 --- a/sci-geosciences/opencpn-plugin-ocpn_draw/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-ocpn_draw-1.3.14.tar.gz 1341500 BLAKE2B 9324a05d4c7772808be9b90e4b9451724eb8b4ed5439e0dcb40eda13d9583246f9ee47e627e09c219c0fb7e8173079e85c2a0f7be2da2f1cc0f7d7d0548ef974 SHA512 8102eda5edc1b198db639a662f3533423e67ee6a3633c1a74b727a56e3176737deb930d77fb9dbbf38b8c8f678fb31c8087ae5636bc3f9ed156dbec77bdbe6cf diff --git a/sci-geosciences/opencpn-plugin-ocpn_draw/metadata.xml b/sci-geosciences/opencpn-plugin-ocpn_draw/metadata.xml deleted file mode 100644 index 03ebf568b0f1..000000000000 --- a/sci-geosciences/opencpn-plugin-ocpn_draw/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">jongough/ocpn_draw_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-ocpn_draw/opencpn-plugin-ocpn_draw-1.3.14.ebuild b/sci-geosciences/opencpn-plugin-ocpn_draw/opencpn-plugin-ocpn_draw-1.3.14.ebuild deleted file mode 100644 index 26a9865b3471..000000000000 --- a/sci-geosciences/opencpn-plugin-ocpn_draw/opencpn-plugin-ocpn_draw-1.3.14.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="ocpn_draw_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/jongough/${MY_PN}.git" -else - SRC_URI="https://github.com/jongough/${MY_PN}/archive/V${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Draw Plugin for OpenCPN" -HOMEPAGE="https://github.com/jongough/ocpn_draw_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-ocpn_draw/opencpn-plugin-ocpn_draw-9999.ebuild b/sci-geosciences/opencpn-plugin-ocpn_draw/opencpn-plugin-ocpn_draw-9999.ebuild deleted file mode 100644 index 26a9865b3471..000000000000 --- a/sci-geosciences/opencpn-plugin-ocpn_draw/opencpn-plugin-ocpn_draw-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="ocpn_draw_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/jongough/${MY_PN}.git" -else - SRC_URI="https://github.com/jongough/${MY_PN}/archive/V${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Draw Plugin for OpenCPN" -HOMEPAGE="https://github.com/jongough/ocpn_draw_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-ocpndebugger/Manifest b/sci-geosciences/opencpn-plugin-ocpndebugger/Manifest deleted file mode 100644 index 6bd7bea2934d..000000000000 --- a/sci-geosciences/opencpn-plugin-ocpndebugger/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-ocpndebugger-1.3.tar.gz 127623 BLAKE2B 8c09e80916f7e7435ea54b5d0aba82e703ebbffd0fbc3d75282f21fec73c74f39d07ce73aa2f9e4d6f0185935a003c33256c2a1580ae7c36ecdd30a53b90aec6 SHA512 30caf922cc5a5255741b780c8f09ea4de9d7bbbe0b6ff65fe32a7484da4c75e53fd03e6a83966dc70ef4f7f6483dacce7f74392e4b3556b984f90b2eb5f9e01e diff --git a/sci-geosciences/opencpn-plugin-ocpndebugger/metadata.xml b/sci-geosciences/opencpn-plugin-ocpndebugger/metadata.xml deleted file mode 100644 index a9821ba361d1..000000000000 --- a/sci-geosciences/opencpn-plugin-ocpndebugger/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">nohal/ocpndebugger_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-ocpndebugger/opencpn-plugin-ocpndebugger-1.3.ebuild b/sci-geosciences/opencpn-plugin-ocpndebugger/opencpn-plugin-ocpndebugger-1.3.ebuild deleted file mode 100644 index 3db37b30bf42..000000000000 --- a/sci-geosciences/opencpn-plugin-ocpndebugger/opencpn-plugin-ocpndebugger-1.3.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="ocpndebugger_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/nohal/${MY_PN}.git" -else - SRC_URI="https://github.com/nohal/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="NMEA-data and plugin-API Debugger Plugin for OpenCPN" -HOMEPAGE="https://github.com/nohal/ocpndebugger_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-ocpndebugger/opencpn-plugin-ocpndebugger-9999.ebuild b/sci-geosciences/opencpn-plugin-ocpndebugger/opencpn-plugin-ocpndebugger-9999.ebuild deleted file mode 100644 index 3db37b30bf42..000000000000 --- a/sci-geosciences/opencpn-plugin-ocpndebugger/opencpn-plugin-ocpndebugger-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="ocpndebugger_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/nohal/${MY_PN}.git" -else - SRC_URI="https://github.com/nohal/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="NMEA-data and plugin-API Debugger Plugin for OpenCPN" -HOMEPAGE="https://github.com/nohal/ocpndebugger_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-oesenc/Manifest b/sci-geosciences/opencpn-plugin-oesenc/Manifest deleted file mode 100644 index 445a3599e4a2..000000000000 --- a/sci-geosciences/opencpn-plugin-oesenc/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-oesenc-1.6.0.tar.gz 5258724 BLAKE2B 8703d60544d4b1d4523a64c58cbd10928ea6f3ffd0a9af3b46b4c244c403b1bf18ea8b1aebcd96efd61e6b65da0dab06d029c99271fb34800294bdac8534d67e SHA512 487c11dbc0e5e93618812b9a54fcd28f27feb070037cecb1f1024449ce8857bc2de3f24debc08900614b6ccc4657719b86a8116dd0665285075765ddd2d0987d diff --git a/sci-geosciences/opencpn-plugin-oesenc/metadata.xml b/sci-geosciences/opencpn-plugin-oesenc/metadata.xml deleted file mode 100644 index 404774cea455..000000000000 --- a/sci-geosciences/opencpn-plugin-oesenc/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">bdbcat/oesenc_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-oesenc/opencpn-plugin-oesenc-1.6.0.ebuild b/sci-geosciences/opencpn-plugin-oesenc/opencpn-plugin-oesenc-1.6.0.ebuild deleted file mode 100644 index c920ec40e3f9..000000000000 --- a/sci-geosciences/opencpn-plugin-oesenc/opencpn-plugin-oesenc-1.6.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="oesenc_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/bdbcat/${MY_PN}.git" -else - SRC_URI="https://github.com/mschiff/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="oeSENC Charts Plugin for OpenCPN" -HOMEPAGE="https://github.com/bdbcat/oesenc_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-oesenc/opencpn-plugin-oesenc-9999.ebuild b/sci-geosciences/opencpn-plugin-oesenc/opencpn-plugin-oesenc-9999.ebuild deleted file mode 100644 index c920ec40e3f9..000000000000 --- a/sci-geosciences/opencpn-plugin-oesenc/opencpn-plugin-oesenc-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="oesenc_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/bdbcat/${MY_PN}.git" -else - SRC_URI="https://github.com/mschiff/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="oeSENC Charts Plugin for OpenCPN" -HOMEPAGE="https://github.com/bdbcat/oesenc_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-otcurrent/Manifest b/sci-geosciences/opencpn-plugin-otcurrent/Manifest deleted file mode 100644 index 89137f6842a1..000000000000 --- a/sci-geosciences/opencpn-plugin-otcurrent/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-otcurrent-1.2.tar.gz 184391 BLAKE2B 498dbe2533cb8867d4f87766f245d353494be1db5e955a320c6b9906a5edbca634645017c84fe1a6c145520b355b3c49767a5c012d621de88b7b6801d6d27407 SHA512 04564e0fcafe0f338d52a2fe7cf1a00c5d53d4ecbbac3264203ddc5ed4dd1e237b45d206314dfc493ea4649491a03872158a4d61a6dd0658dd54a20b43502263 diff --git a/sci-geosciences/opencpn-plugin-otcurrent/metadata.xml b/sci-geosciences/opencpn-plugin-otcurrent/metadata.xml deleted file mode 100644 index eb4cb234357d..000000000000 --- a/sci-geosciences/opencpn-plugin-otcurrent/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">Rasbats/otcurrent_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-otcurrent/opencpn-plugin-otcurrent-1.2.ebuild b/sci-geosciences/opencpn-plugin-otcurrent/opencpn-plugin-otcurrent-1.2.ebuild deleted file mode 100644 index d7fcccf5a579..000000000000 --- a/sci-geosciences/opencpn-plugin-otcurrent/opencpn-plugin-otcurrent-1.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="otcurrent_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/Rasbats/${MY_PN}.git" -else - SRC_URI="https://github.com/Rasbats/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="OTCurrent Plugin for OpenCPN" -HOMEPAGE="https://github.com/Rasbats/otcurrent_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-otcurrent/opencpn-plugin-otcurrent-9999.ebuild b/sci-geosciences/opencpn-plugin-otcurrent/opencpn-plugin-otcurrent-9999.ebuild deleted file mode 100644 index d7fcccf5a579..000000000000 --- a/sci-geosciences/opencpn-plugin-otcurrent/opencpn-plugin-otcurrent-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="otcurrent_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/Rasbats/${MY_PN}.git" -else - SRC_URI="https://github.com/Rasbats/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="OTCurrent Plugin for OpenCPN" -HOMEPAGE="https://github.com/Rasbats/otcurrent_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-polar/Manifest b/sci-geosciences/opencpn-plugin-polar/Manifest deleted file mode 100644 index 7653f826e19a..000000000000 --- a/sci-geosciences/opencpn-plugin-polar/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-polar-1.1007.tar.gz 263299 BLAKE2B f06393ccb1b6ab2b7ad20cc833b61e9ebee1d7545482c5275eaa25eccd9f21973811383eb7fc26484c41515f16b245ed77d52d72871ea80594c112ab0b531ab5 SHA512 9ef853a052692b7475851b8470d18c711bf2e9a8fd7dbc31919197fa6ae0225ce218bd4a13f39a999fa29282b209614e0fc37e429a39dc3c1dc28b018e6c3344 diff --git a/sci-geosciences/opencpn-plugin-polar/metadata.xml b/sci-geosciences/opencpn-plugin-polar/metadata.xml deleted file mode 100644 index 53ba7350c278..000000000000 --- a/sci-geosciences/opencpn-plugin-polar/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">ptulp/polar_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-polar/opencpn-plugin-polar-1.1007.ebuild b/sci-geosciences/opencpn-plugin-polar/opencpn-plugin-polar-1.1007.ebuild deleted file mode 100644 index a6688256200a..000000000000 --- a/sci-geosciences/opencpn-plugin-polar/opencpn-plugin-polar-1.1007.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="polar_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/ptulp/${MY_PN}.git" -else - SRC_URI="https://github.com/ptulp/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Polar Diagram Plugin for OpenCPN" -HOMEPAGE="https://github.com/ptulp/polar_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-polar/opencpn-plugin-polar-9999.ebuild b/sci-geosciences/opencpn-plugin-polar/opencpn-plugin-polar-9999.ebuild deleted file mode 100644 index a6688256200a..000000000000 --- a/sci-geosciences/opencpn-plugin-polar/opencpn-plugin-polar-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="polar_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/ptulp/${MY_PN}.git" -else - SRC_URI="https://github.com/ptulp/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Polar Diagram Plugin for OpenCPN" -HOMEPAGE="https://github.com/ptulp/polar_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-radar/Manifest b/sci-geosciences/opencpn-plugin-radar/Manifest deleted file mode 100644 index 97373a070563..000000000000 --- a/sci-geosciences/opencpn-plugin-radar/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-radar-0.98.tar.gz 113968 BLAKE2B 8eefaf047071c16c055cd2d05e2a0c284d2929b9e450c78044f7864e9d266a682b41e7674a6d495b468181f3b4d17cf0680d420a85e92e8c5818bfac31a215a2 SHA512 f424659e446c79eefbc37999154dc912f26c380a90cf54be40f034a052ae48b3eb479d7cd23b216db8484eae25a5d1c3ab42afd9f3b336aa0534903d8da8bbd1 diff --git a/sci-geosciences/opencpn-plugin-radar/metadata.xml b/sci-geosciences/opencpn-plugin-radar/metadata.xml deleted file mode 100644 index a261da21c7b7..000000000000 --- a/sci-geosciences/opencpn-plugin-radar/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">Verezano/AISradar_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-0.98.ebuild b/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-0.98.ebuild deleted file mode 100644 index d232e5151a56..000000000000 --- a/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-0.98.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="radar_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/Verezano/${MY_PN}.git" -else - SRC_URI="https://github.com/Verezano/${MY_PN}/archive/aisradar_pi-${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-aisradar_pi-${PV}" -fi - -DESCRIPTION="AIS Radar View Plugin for OpenCPN" -HOMEPAGE="https://github.com/Verezano/AISradar_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-9999.ebuild b/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-9999.ebuild deleted file mode 100644 index d232e5151a56..000000000000 --- a/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="radar_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/Verezano/${MY_PN}.git" -else - SRC_URI="https://github.com/Verezano/${MY_PN}/archive/aisradar_pi-${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-aisradar_pi-${PV}" -fi - -DESCRIPTION="AIS Radar View Plugin for OpenCPN" -HOMEPAGE="https://github.com/Verezano/AISradar_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-route/Manifest b/sci-geosciences/opencpn-plugin-route/Manifest deleted file mode 100644 index 576e8760b19f..000000000000 --- a/sci-geosciences/opencpn-plugin-route/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-route-1.2.tar.gz 373474 BLAKE2B ca0054882d7fde3f3c244f242acdbb34a5bc7003cd643e76c7e9ecedc35edbc507d2c6336f8746632d3b6bc23ba202953ce66e4e5941b81c46296129823a0eaa SHA512 4dcaa4592f72c6a093276689db5ffa8dae1ed3e0ac6790b85352a6a1942d8863c8f19dfd1110256df9ac28e8056442344852d7790ae97201efe965485a5faa26 diff --git a/sci-geosciences/opencpn-plugin-route/metadata.xml b/sci-geosciences/opencpn-plugin-route/metadata.xml deleted file mode 100644 index ade380832174..000000000000 --- a/sci-geosciences/opencpn-plugin-route/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">SaltyPaws/route_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-route/opencpn-plugin-route-1.2.ebuild b/sci-geosciences/opencpn-plugin-route/opencpn-plugin-route-1.2.ebuild deleted file mode 100644 index a2b93f3991c2..000000000000 --- a/sci-geosciences/opencpn-plugin-route/opencpn-plugin-route-1.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="route_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/SaltyPaws/${MY_PN}.git" -else - SRC_URI="https://github.com/SaltyPaws/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Route Plotting Plugin for OpenCPN" -HOMEPAGE="https://github.com/SaltyPaws/route_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-route/opencpn-plugin-route-9999.ebuild b/sci-geosciences/opencpn-plugin-route/opencpn-plugin-route-9999.ebuild deleted file mode 100644 index a2b93f3991c2..000000000000 --- a/sci-geosciences/opencpn-plugin-route/opencpn-plugin-route-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="route_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/SaltyPaws/${MY_PN}.git" -else - SRC_URI="https://github.com/SaltyPaws/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Route Plotting Plugin for OpenCPN" -HOMEPAGE="https://github.com/SaltyPaws/route_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-squiddio/Manifest b/sci-geosciences/opencpn-plugin-squiddio/Manifest deleted file mode 100644 index 07a0f9d92341..000000000000 --- a/sci-geosciences/opencpn-plugin-squiddio/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-squiddio-0.7.tar.gz 324747 BLAKE2B f932615257e58a8ef63228471fe37e8100678f8a35f70e6ce987d8b52a378ae3d3dc9e28c4c1dada6ad4ea131101512f802c025106b837dec9fdde21de32da5c SHA512 8a39286ef26a89b58fdf825cdb241127fb2448a121e29d9bd71db2588647a92688afe4ff176a3e73155c1aa2039a2df331e05d9f57431bc1aa534a67bba41959 diff --git a/sci-geosciences/opencpn-plugin-squiddio/metadata.xml b/sci-geosciences/opencpn-plugin-squiddio/metadata.xml deleted file mode 100644 index 231eec4da1e6..000000000000 --- a/sci-geosciences/opencpn-plugin-squiddio/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">mauroc/squiddio_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-squiddio/opencpn-plugin-squiddio-0.7.ebuild b/sci-geosciences/opencpn-plugin-squiddio/opencpn-plugin-squiddio-0.7.ebuild deleted file mode 100644 index 2e0a3929667b..000000000000 --- a/sci-geosciences/opencpn-plugin-squiddio/opencpn-plugin-squiddio-0.7.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="squiddio_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/mauroc/${MY_PN}.git" -else - SRC_URI="https://github.com/mauroc/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Squiddio Plugin for OpenCPN" -HOMEPAGE="https://github.com/mauroc/squiddio_pi" - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0 - sys-devel/gettext" -DEPEND="${RDEPEND}" -BDEPEND=" - net-misc/curl - sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-squiddio/opencpn-plugin-squiddio-9999.ebuild b/sci-geosciences/opencpn-plugin-squiddio/opencpn-plugin-squiddio-9999.ebuild deleted file mode 100644 index 2e0a3929667b..000000000000 --- a/sci-geosciences/opencpn-plugin-squiddio/opencpn-plugin-squiddio-9999.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="squiddio_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/mauroc/${MY_PN}.git" -else - SRC_URI="https://github.com/mauroc/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Squiddio Plugin for OpenCPN" -HOMEPAGE="https://github.com/mauroc/squiddio_pi" - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0 - sys-devel/gettext" -DEPEND="${RDEPEND}" -BDEPEND=" - net-misc/curl - sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-statusbar/Manifest b/sci-geosciences/opencpn-plugin-statusbar/Manifest deleted file mode 100644 index dc10eec6802f..000000000000 --- a/sci-geosciences/opencpn-plugin-statusbar/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-statusbar-0.5.20180316.tar.gz 218364 BLAKE2B d1da43ec085e1d180fca524c44ae2f6410b0f74a1f65dc5d586087a46b6f2735a60e3e5332f072d181e0a23a9d2f254a9b0f5872e81a749a3af4fa65c3a997c3 SHA512 9ea70258367d5370fd70d894c098fe781141505a18365d197b58f30e65df57f7b0fd9c5e4bc95603d89f5dd49cc7ef5bcc921f6cd2d12d407686446551ce4eca diff --git a/sci-geosciences/opencpn-plugin-statusbar/metadata.xml b/sci-geosciences/opencpn-plugin-statusbar/metadata.xml deleted file mode 100644 index 77d49fe0bb55..000000000000 --- a/sci-geosciences/opencpn-plugin-statusbar/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">seandepagnier/statusbar_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-statusbar/opencpn-plugin-statusbar-0.5.20180316.ebuild b/sci-geosciences/opencpn-plugin-statusbar/opencpn-plugin-statusbar-0.5.20180316.ebuild deleted file mode 100644 index 8eae4a6232ad..000000000000 --- a/sci-geosciences/opencpn-plugin-statusbar/opencpn-plugin-statusbar-0.5.20180316.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="statusbar_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/seandepagnier/${MY_PN}.git" -else - SRC_URI="https://github.com/mschiff/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Statusbar Plugin for OpenCPN" -HOMEPAGE="https://github.com/seandepagnier/statusbar_pi" - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-statusbar/opencpn-plugin-statusbar-9999.ebuild b/sci-geosciences/opencpn-plugin-statusbar/opencpn-plugin-statusbar-9999.ebuild deleted file mode 100644 index 8eae4a6232ad..000000000000 --- a/sci-geosciences/opencpn-plugin-statusbar/opencpn-plugin-statusbar-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="statusbar_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/seandepagnier/${MY_PN}.git" -else - SRC_URI="https://github.com/mschiff/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Statusbar Plugin for OpenCPN" -HOMEPAGE="https://github.com/seandepagnier/statusbar_pi" - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-watchdog/Manifest b/sci-geosciences/opencpn-plugin-watchdog/Manifest deleted file mode 100644 index 00db532403cc..000000000000 --- a/sci-geosciences/opencpn-plugin-watchdog/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-watchdog-1.9.051.tar.gz 412423 BLAKE2B 91bcc76c3b970b42f8c837f841f884f5784fab4042617bdfdeacc4274e14e99f2d5640b7f0d57e32bf87b307897e7d0616c5fe8c6f3f4322a9eb011409b45ae8 SHA512 6ef178985bbfcb5e8ee48bcffe6949ed4c4a0308daa6b91a654b289505b4c06a130af806f9c4de01a627ee982a2b8e5009cac89a0ce7cee275eb30a148f31554 diff --git a/sci-geosciences/opencpn-plugin-watchdog/metadata.xml b/sci-geosciences/opencpn-plugin-watchdog/metadata.xml deleted file mode 100644 index 8c518ba29da0..000000000000 --- a/sci-geosciences/opencpn-plugin-watchdog/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">seandepagnier/watchdog_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-watchdog/opencpn-plugin-watchdog-1.9.051.ebuild b/sci-geosciences/opencpn-plugin-watchdog/opencpn-plugin-watchdog-1.9.051.ebuild deleted file mode 100644 index aa3335fb7dcf..000000000000 --- a/sci-geosciences/opencpn-plugin-watchdog/opencpn-plugin-watchdog-1.9.051.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="watchdog_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/seandepagnier/${MY_PN}.git" -else - SRC_URI="https://github.com/seandepagnier/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Watchdog Plugin for OpenCPN" -HOMEPAGE="https://github.com/seandepagnier/watchdog_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-watchdog/opencpn-plugin-watchdog-9999.ebuild b/sci-geosciences/opencpn-plugin-watchdog/opencpn-plugin-watchdog-9999.ebuild deleted file mode 100644 index aa3335fb7dcf..000000000000 --- a/sci-geosciences/opencpn-plugin-watchdog/opencpn-plugin-watchdog-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="watchdog_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/seandepagnier/${MY_PN}.git" -else - SRC_URI="https://github.com/seandepagnier/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Watchdog Plugin for OpenCPN" -HOMEPAGE="https://github.com/seandepagnier/watchdog_pi" - -LICENSE="GPL-2+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-weather_routing/Manifest b/sci-geosciences/opencpn-plugin-weather_routing/Manifest deleted file mode 100644 index a8d3887396a5..000000000000 --- a/sci-geosciences/opencpn-plugin-weather_routing/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-weather_routing-1.13.1.tar.gz 893533 BLAKE2B 011eed0e6c4b463a89e83611f1b5b6dcb74edd65100a8fe444c5623ea85c20666194586964c2ed0b8a8b1d2d790026affccc034d98ea375284048fd33983a092 SHA512 43661df7b1a823f38a928a899bca58cd7451b663e23843bdf79000c0bc4e95cf9491e21e7a5ea6ad33f6a15e0a72c68058779ee241ad338a907852d048b5bc45 diff --git a/sci-geosciences/opencpn-plugin-weather_routing/metadata.xml b/sci-geosciences/opencpn-plugin-weather_routing/metadata.xml deleted file mode 100644 index c3c784e1bb10..000000000000 --- a/sci-geosciences/opencpn-plugin-weather_routing/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">seandepagnier/weather_routing_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-1.13.1.ebuild b/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-1.13.1.ebuild deleted file mode 100644 index 2d4a9d906c36..000000000000 --- a/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-1.13.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="weather_routing_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rgleason/${MY_PN}.git" -else - SRC_URI="https://github.com/rgleason/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Weather Routing Plugin for OpenCPN" -HOMEPAGE="https://github.com/rgleason/weather_routing_pi/" - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-9999.ebuild b/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-9999.ebuild deleted file mode 100644 index 2d4a9d906c36..000000000000 --- a/sci-geosciences/opencpn-plugin-weather_routing/opencpn-plugin-weather_routing-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -WX_GTK_VER="3.0-gtk3" -inherit cmake wxwidgets - -MY_PN="weather_routing_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rgleason/${MY_PN}.git" -else - SRC_URI="https://github.com/rgleason/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Weather Routing Plugin for OpenCPN" -HOMEPAGE="https://github.com/rgleason/weather_routing_pi/" - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-weatherfax/Manifest b/sci-geosciences/opencpn-plugin-weatherfax/Manifest deleted file mode 100644 index 247ad7660ef7..000000000000 --- a/sci-geosciences/opencpn-plugin-weatherfax/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opencpn-plugin-weatherfax-1.3.20180316.tar.gz 585747 BLAKE2B f81de2da49cd16be62b4fc64e025626a3b7470563db32293803275c0a682b1eff5c85dead9d846e6b69362aa6faaf370f707ab7dab0db981a431bf8872a66430 SHA512 effa3fc2c348bf5a0d70dcfee8a4643f8cba51e5177e40affc50e2d85bffcb2c89c067a57eadb18834900691214b2b1ee17760a8b525cf12da4c7a3e6970daf0 diff --git a/sci-geosciences/opencpn-plugin-weatherfax/metadata.xml b/sci-geosciences/opencpn-plugin-weatherfax/metadata.xml deleted file mode 100644 index cd6445f1b395..000000000000 --- a/sci-geosciences/opencpn-plugin-weatherfax/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">seandepagnier/weatherfax_pi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugin-weatherfax/opencpn-plugin-weatherfax-1.3.20180316.ebuild b/sci-geosciences/opencpn-plugin-weatherfax/opencpn-plugin-weatherfax-1.3.20180316.ebuild deleted file mode 100644 index b0cb5f6225f3..000000000000 --- a/sci-geosciences/opencpn-plugin-weatherfax/opencpn-plugin-weatherfax-1.3.20180316.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="weatherfax_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/seandepagnier/${MY_PN}.git" -else - SRC_URI="https://github.com/mschiff/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Weatherfax Plugin for OpenCPN" -HOMEPAGE="https://github.com/seandepagnier/weatherfax_pi" - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugin-weatherfax/opencpn-plugin-weatherfax-9999.ebuild b/sci-geosciences/opencpn-plugin-weatherfax/opencpn-plugin-weatherfax-9999.ebuild deleted file mode 100644 index b0cb5f6225f3..000000000000 --- a/sci-geosciences/opencpn-plugin-weatherfax/opencpn-plugin-weatherfax-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit cmake wxwidgets - -MY_PN="weatherfax_pi" -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/seandepagnier/${MY_PN}.git" -else - SRC_URI="https://github.com/mschiff/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -DESCRIPTION="Weatherfax Plugin for OpenCPN" -HOMEPAGE="https://github.com/seandepagnier/weatherfax_pi" - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - x11-libs/wxGTK:${WX_GTK_VER} - >=sci-geosciences/opencpn-4.2.0" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/gettext" - -src_configure() { - setup-wxwidgets unicode - cmake_src_configure -} diff --git a/sci-geosciences/opencpn-plugins-meta/metadata.xml b/sci-geosciences/opencpn-plugins-meta/metadata.xml deleted file mode 100644 index 95aede5f749e..000000000000 --- a/sci-geosciences/opencpn-plugins-meta/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - <name>Marc Schiffbauer</name> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> -</pkgmetadata> diff --git a/sci-geosciences/opencpn-plugins-meta/opencpn-plugins-meta-4.2.0-r6.ebuild b/sci-geosciences/opencpn-plugins-meta/opencpn-plugins-meta-4.2.0-r6.ebuild deleted file mode 100644 index 0272118e164f..000000000000 --- a/sci-geosciences/opencpn-plugins-meta/opencpn-plugins-meta-4.2.0-r6.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Meta ebuild to pull in opencpn plugins" -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" - -LICENSE="metapackage" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - >=sci-geosciences/opencpn-${PV} - >=sci-geosciences/opencpn-plugin-dr-1.1 - >=sci-geosciences/opencpn-plugin-findit-1.2.12.0 - >=sci-geosciences/opencpn-plugin-gxradar-1.1 - >=sci-geosciences/opencpn-plugin-iacfleet-0.8 - >=sci-geosciences/opencpn-plugin-launcher-1.1 - >=sci-geosciences/opencpn-plugin-logbookkonni-1.4.22.0 - >=sci-geosciences/opencpn-plugin-objsearch-0.7 - >=sci-geosciences/opencpn-plugin-ocpn_draw-1.0.12 - >=sci-geosciences/opencpn-plugin-ocpndebugger-1.2 - >=sci-geosciences/opencpn-plugin-oesenc-1.6.0 - >=sci-geosciences/opencpn-plugin-otcurrent-1.2 - >=sci-geosciences/opencpn-plugin-polar-1.1007 - >=sci-geosciences/opencpn-plugin-radar-0.98 - >=sci-geosciences/opencpn-plugin-route-1.2 - >=sci-geosciences/opencpn-plugin-squiddio-0.7 - >=sci-geosciences/opencpn-plugin-watchdog-1.9.051 - >=sci-geosciences/opencpn-plugin-weather_routing-1.10.1 - >=sci-geosciences/opencpn-plugin-climatology-1.0.20180316 - >=sci-geosciences/opencpn-plugin-statusbar-0.5.20180316 - >=sci-geosciences/opencpn-plugin-weatherfax-1.3.20180316 -" diff --git a/sci-geosciences/opencpn/Manifest b/sci-geosciences/opencpn/Manifest deleted file mode 100644 index 0019f9ef04f5..000000000000 --- a/sci-geosciences/opencpn/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST opencpn-5.10.0.tar.gz 74071915 BLAKE2B 103f495054e04c50f99d85be91d142b27ff2b340643c6b5b2919c10fb1c9bbbfb0066ea5ca574d1195dbe5f0c50cf498e320f1fde4d3e3413778eda87ea64e11 SHA512 9f212bf54655c8c292d9921ad0375d5a070fd790fd9a2e4d80af1c7b5faf6b72e2aed0b677b165713d79fff1d8513d2c465e7606604f6fccd19aee8b32d5e6cf -DIST opencpn-5.6.2.tar.gz 82919992 BLAKE2B a45e19d293d63262f2bb6bd0bd5d18723cadd0b93af8e64484b55d246cebbe623dccbb6a1d257eccd74fb9111953d9cdd4b44d6f3fb38c3a9f40fa253718f337 SHA512 6d90b21448b2d2a58685592e92647108978012cbaa25999d98855dca222e013784ca4e351eb08efd0a18980cccffb28b0d3c171ea9207e5fb37889e3a3b377e3 -DIST opencpn-5.8.4.tar.gz 82696698 BLAKE2B 0235d87daec97008b58dc9916d4250b33c0c4158be6ba4853bf30c5876af7d382eb1c02e2cd3748229775305cc90f86d5743b9951909043588e2096fcd207af5 SHA512 08231d95ca80a5e6b85b279be2912d3e9f390f879a780823f8ee9c64371eb0605484f697328217027c7caf18cb1151b617d42d22951672c1a9508750e97f109a -DIST opencpn-doc_4.8.2.0.orig.tar.xz 22302480 BLAKE2B 2bcd2ac01340cde0d0be80537321c8c3e829a8e664944c34f3f3112f931c45746059b5c173402982601ccf88926241741c7fb44f251e9fe48b83aa5f3e8d7727 SHA512 678317c77feb3b0bf695e337e7e95083df1d488e0a5ad3bad41bad11dc87271d6fc0ac194a6b63b603d5c1f1184e6c9f91de895a7db01017ef2a7068a62404eb diff --git a/sci-geosciences/opencpn/metadata.xml b/sci-geosciences/opencpn/metadata.xml deleted file mode 100644 index 6d3ea5cafd03..000000000000 --- a/sci-geosciences/opencpn/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mschiff@gentoo.org</email> - </maintainer> - <maintainer type="project"> - <email>sci-geosciences@gentoo.org</email> - <name>Gentoo Geosciences Project</name> - </maintainer> - <upstream> - <remote-id type="github">OpenCPN/OpenCPN</remote-id> - <remote-id type="launchpad">~opencpn</remote-id> - <remote-id type="sourceforge">opencpn</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-geosciences/opencpn/opencpn-5.10.0.ebuild b/sci-geosciences/opencpn/opencpn-5.10.0.ebuild deleted file mode 100644 index e8734dd6f939..000000000000 --- a/sci-geosciences/opencpn/opencpn-5.10.0.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -WX_GTK_VER="3.2-gtk3" -inherit flag-o-matic wxwidgets xdg cmake toolchain-funcs - -DOC_VERSION="4.8.2.0" - -DESCRIPTION="a free, open source software for marine navigation" -HOMEPAGE="https://opencpn.org/" -SRC_URI=" - https://github.com/OpenCPN/OpenCPN/archive/refs/tags/Release_${PV}.tar.gz -> ${P}.tar.gz - doc? ( https://launchpad.net/~opencpn/+archive/ubuntu/${PN}/+files/${PN}-doc_${DOC_VERSION}.orig.tar.xz )" -S="${WORKDIR}/OpenCPN-Release_${PV}" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc lzma" - -RDEPEND=" - app-arch/bzip2 - app-arch/lz4 - dev-libs/libdnet - dev-libs/openssl:= - dev-libs/tinyxml - lzma? ( app-arch/xz-utils ) - media-libs/freetype:2 - media-libs/glew:0 - media-libs/jasper - media-libs/portaudio - net-misc/curl - >=sci-libs/shapelib-1.6.0 - sys-libs/zlib - virtual/libusb:1 - virtual/opengl - x11-base/xorg-proto - x11-libs/gtk+:3 - x11-libs/wxGTK:${WX_GTK_VER}=[opengl,X] - " -DEPEND="${RDEPEND}" -BDEPEND=" - dev-cpp/gtest - dev-libs/rapidjson - sys-apps/lsb-release - sys-devel/gettext - " - -src_prepare() { - # see bug #907759 - sed -i "s/ cc / $(tc-getBUILD_CC) /" "${S}"/CMakeLists.txt - cmake_src_prepare -} - -src_configure() { - # -Werror=odr - # https://bugs.gentoo.org/927484 - # https://github.com/OpenCPN/OpenCPN/issues/3782 - filter-lto - - use doc && HTML_DOCS=( "${S}"/../${PN}/doc/. ) - - setup-wxwidgets - local mycmakeargs=( - -DUSE_GARMINHOST=ON - -DOCPN_ENABLE_SYSTEM_CMD_SOUND=OFF - -DOCPN_ENABLE_SNDFILE=OFF - -DOCPN_USE_BUNDLED_LIBS=OFF - -DOCPN_BUNDLE_TCDATA=ON - -DOCPN_BUNDLE_GSHHS=ON - -DOCPN_BUNDLE_DOCS=ON - -DOCPN_ENABLE_PORTAUDIO=ON - -DOCPN_ENABLE_SYSTEM_CMD_SOUND=OFF - -DOCPN_WXWIDGETS_FORCE_VERSION=${WX_GTK_VER} - - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - /usr/share/doc/opencpn - - mv "${D}/usr/share/doc/${PN}"/* "${D}/usr/share/doc/${PF}" || die - rmdir "${D}/usr/share/doc/${PN}" -} - -pkg_postinst() { - xdg_pkg_postinst - - if use doc; then - einfo "Documentation is available at file:///usr/share/doc/${PF}/html/help_en_US.html" - fi -} diff --git a/sci-geosciences/opencpn/opencpn-5.6.2-r3.ebuild b/sci-geosciences/opencpn/opencpn-5.6.2-r3.ebuild deleted file mode 100644 index cb75281d7cff..000000000000 --- a/sci-geosciences/opencpn/opencpn-5.6.2-r3.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -WX_GTK_VER="3.0-gtk3" -inherit wxwidgets xdg cmake - -DOC_VERSION="4.8.2.0" - -DESCRIPTION="a free, open source software for marine navigation" -HOMEPAGE="https://opencpn.org/" -SRC_URI=" - https://github.com/OpenCPN/OpenCPN/archive/refs/tags/Release_${PV}.tar.gz -> ${P}.tar.gz - doc? ( https://launchpad.net/~opencpn/+archive/ubuntu/${PN}/+files/${PN}-doc_${DOC_VERSION}.orig.tar.xz )" -S="${WORKDIR}/OpenCPN-Release_${PV}" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc lzma" - -RDEPEND=" - app-arch/bzip2 - dev-libs/tinyxml - lzma? ( app-arch/xz-utils ) - media-libs/freetype:2 - media-libs/portaudio - net-misc/curl - sys-libs/zlib - virtual/libusb:1 - virtual/opengl - x11-base/xorg-proto - x11-libs/gtk+:3 - x11-libs/wxGTK:${WX_GTK_VER}=[opengl,X] - " -DEPEND="${RDEPEND}" -BDEPEND=" - sys-devel/gettext - sys-apps/lsb-release - " - -src_configure() { - use doc && HTML_DOCS=( "${S}"/../${PN}/doc/. ) - - setup-wxwidgets - local mycmakeargs=( - -DUSE_S57=ON - -DUSE_GARMINHOST=ON - -DBUNDLE_GSHHS=CRUDE - -DBUNDLE_TCDATA=ON - ) - - cmake_src_configure -} - -pkg_postinst() { - xdg_pkg_postinst - - if use doc; then - einfo "Documentation is available at file:///usr/share/doc/${PF}/html/help_en_US.html" - fi -} diff --git a/sci-geosciences/opencpn/opencpn-5.8.4.ebuild b/sci-geosciences/opencpn/opencpn-5.8.4.ebuild deleted file mode 100644 index 694939aded12..000000000000 --- a/sci-geosciences/opencpn/opencpn-5.8.4.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -WX_GTK_VER="3.2-gtk3" -inherit flag-o-matic wxwidgets xdg cmake toolchain-funcs - -DOC_VERSION="4.8.2.0" - -DESCRIPTION="a free, open source software for marine navigation" -HOMEPAGE="https://opencpn.org/" -SRC_URI=" - https://github.com/OpenCPN/OpenCPN/archive/refs/tags/Release_${PV}.tar.gz -> ${P}.tar.gz - doc? ( https://launchpad.net/~opencpn/+archive/ubuntu/${PN}/+files/${PN}-doc_${DOC_VERSION}.orig.tar.xz )" -S="${WORKDIR}/OpenCPN-Release_${PV}" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc lzma" - -RDEPEND=" - app-arch/bzip2 - dev-libs/openssl:= - dev-libs/tinyxml - lzma? ( app-arch/xz-utils ) - media-libs/freetype:2 - media-libs/glew:0 - media-libs/jasper - media-libs/portaudio - net-misc/curl - sys-libs/zlib - virtual/libusb:1 - virtual/opengl - x11-base/xorg-proto - x11-libs/gtk+:3 - x11-libs/wxGTK:${WX_GTK_VER}=[opengl,X] - " -DEPEND="${RDEPEND}" -BDEPEND=" - dev-cpp/gtest - dev-libs/rapidjson - sys-apps/lsb-release - sys-devel/gettext - " - -src_prepare() { - # see bug #907759 - sed -i "s/ cc / $(tc-getBUILD_CC) /" "${S}"/CMakeLists.txt - cmake_src_prepare -} - -src_configure() { - # -Werror=odr - # https://bugs.gentoo.org/927484 - # https://github.com/OpenCPN/OpenCPN/issues/3782 - filter-lto - - use doc && HTML_DOCS=( "${S}"/../${PN}/doc/. ) - - setup-wxwidgets - local mycmakeargs=( - -DUSE_GARMINHOST=ON - ) -# -DUSE_S57=ON -# -DBUNDLE_TCDATA=ON -# -DBUNDLE_GSHHS=CRUDE - - cmake_src_configure -} - -src_install() { - cmake_src_install - mv "${D}/usr/share/doc/${PN}"/* "${D}/usr/share/doc/${PF}" || die - rmdir "${D}/usr/share/doc/${PN}" -} - -pkg_postinst() { - xdg_pkg_postinst - - if use doc; then - einfo "Documentation is available at file:///usr/share/doc/${PF}/html/help_en_US.html" - fi -} diff --git a/sci-geosciences/osm2pgsql/Manifest b/sci-geosciences/osm2pgsql/Manifest index 608550816edb..e7b266c69e16 100644 --- a/sci-geosciences/osm2pgsql/Manifest +++ b/sci-geosciences/osm2pgsql/Manifest @@ -1,2 +1 @@ -DIST osm2pgsql-1.4.0.tar.gz 2429430 BLAKE2B 5d93a159a87c9cb12d85be8b89377f720e0d94564574f70d6f3686b215a99250967655d0eeee3dcda2742fcab356ecf62de2b4bab384d69a641a06829c401388 SHA512 f0eaceb7f78087a58bba3bbfafbb9d6d70aecd4c3ba1cfb0ce784116b52a57c69855c1a7459cce8b963c87955de269ca320cf4a3934b6ff5ad29b7554e07dd9e DIST osm2pgsql-2.0.0.tar.gz 2712209 BLAKE2B 064bca5796f8ede6f6fb816c8fa3758f066788c8e41c300b4a9cadd8058ca9bed49379a260ee8e5990d7a38061808f7ec78d2895c4964e5546b2ed3862d74239 SHA512 24310f0370fe5e5f87f81f553c61cc24ec80d29054f0679a2d34a3f1d72eacff93ef59611ba0938e552c9faf167f187d7117f5a08f0c0c26f258d95ebee86743 diff --git a/sci-geosciences/osm2pgsql/files/osm2pgsql-1.4.0-cmake_lua_version.patch b/sci-geosciences/osm2pgsql/files/osm2pgsql-1.4.0-cmake_lua_version.patch deleted file mode 100644 index d7f35345ef52..000000000000 --- a/sci-geosciences/osm2pgsql/files/osm2pgsql-1.4.0-cmake_lua_version.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -185,7 +185,7 @@ - include_directories(SYSTEM ${LUAJIT_INCLUDE_DIR}) - set(HAVE_LUAJIT 1) - else() -- find_package(Lua REQUIRED) -+ find_package(Lua ${LUA_VERSION} EXACT REQUIRED) - include_directories(SYSTEM ${LUA_INCLUDE_DIR}) - endif() - set(HAVE_LUA 1) diff --git a/sci-geosciences/osm2pgsql/osm2pgsql-1.4.0-r100.ebuild b/sci-geosciences/osm2pgsql/osm2pgsql-1.4.0-r100.ebuild deleted file mode 100644 index accfe28a233f..000000000000 --- a/sci-geosciences/osm2pgsql/osm2pgsql-1.4.0-r100.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -LUA_COMPAT=( lua5-{1..4} luajit ) - -inherit cmake lua-single - -DESCRIPTION="Converts OSM planet.osm data to a PostgreSQL/PostGIS database" -HOMEPAGE="https://osm2pgsql.org/" -SRC_URI="https://github.com/openstreetmap/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="+lua" -REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )" - -COMMON_DEPEND=" - app-arch/bzip2 - dev-db/postgresql:= - dev-libs/expat - sci-libs/proj:= - sys-libs/zlib - lua? ( ${LUA_DEPS} ) -" -DEPEND="${COMMON_DEPEND} - dev-libs/boost:= -" -RDEPEND="${COMMON_DEPEND} - dev-db/postgis -" - -# Tries to connect to local postgres server and other shenanigans -RESTRICT="test" - -PATCHES=( - "${FILESDIR}"/${PN}-1.4.0-cmake_lua_version.patch -) - -src_configure() { - # Setting WITH_LUAJIT without "if use lua" guard is safe, upstream - # CMakeLists.txt only evaluates it if WITH_LUA is true. - local mycmakeargs=( - -DWITH_LUA=$(usex lua) - -DWITH_LUAJIT=$(usex lua_single_target_luajit) - -DBUILD_TESTS=OFF - ) - # To prevent the "unused variable" QA warning - if use lua && ! use lua_single_target_luajit; then - mycmakeargs+=( -DLUA_VERSION="$(lua_get_version)" ) - fi - cmake_src_configure -} diff --git a/sci-geosciences/osm2pgsql/osm2pgsql-2.0.0.ebuild b/sci-geosciences/osm2pgsql/osm2pgsql-2.0.0.ebuild index 67bfea565657..70f9dbfd4856 100644 --- a/sci-geosciences/osm2pgsql/osm2pgsql-2.0.0.ebuild +++ b/sci-geosciences/osm2pgsql/osm2pgsql-2.0.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/openstreetmap/${PN}/archive/${PV}.tar.gz -> ${P}.tar LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="" REQUIRED_USE="${LUA_REQUIRED_USE}" diff --git a/sci-geosciences/osmctools/files/osmctools-0.9-gcc15.patch b/sci-geosciences/osmctools/files/osmctools-0.9-gcc15.patch new file mode 100644 index 000000000000..a8a4f2a693c2 --- /dev/null +++ b/sci-geosciences/osmctools/files/osmctools-0.9-gcc15.patch @@ -0,0 +1,56 @@ +diff -durN a/src/osmconvert.c b/src/osmconvert.c +--- a/src/osmconvert.c ++++ b/src/osmconvert.c +@@ -464,6 +464,7 @@ + #include <stdlib.h> + #include <string.h> + #include <stdio.h> ++#include <stdbool.h> + #include <locale.h> + #include <time.h> + #include <ctype.h> +@@ -471,7 +472,6 @@ + #include <fcntl.h> + #include <signal.h> + +-typedef enum {false= 0,true= 1} bool; + typedef uint8_t byte; + typedef unsigned int uint; + #define isdig(x) isdigit((unsigned char)(x)) +diff -durN a/src/osmfilter.c b/src/osmfilter.c +--- a/src/osmfilter.c ++++ b/src/osmfilter.c +@@ -377,13 +377,13 @@ + #include <stdlib.h> + #include <string.h> + #include <stdio.h> ++#include <stdbool.h> + #include <time.h> + #include <ctype.h> + #include <unistd.h> + #include <fcntl.h> + #include <signal.h> + +-typedef enum {false= 0,true= 1} bool; + typedef uint8_t byte; + typedef unsigned int uint; + #define isdig(x) isdigit((unsigned char)(x)) +diff -durN a/src/osmupdate.c b/src/osmupdate.c +--- a/src/osmupdate.c ++++ b/src/osmupdate.c +@@ -172,6 +172,7 @@ + #include <stdlib.h> + #include <string.h> + #include <stdio.h> ++#include <stdbool.h> + #include <errno.h> + #include <time.h> + #include <ctype.h> +@@ -180,7 +181,6 @@ + #include <signal.h> + #include <sys/stat.h> + +-typedef enum {false= 0,true= 1} bool; + typedef uint8_t byte; + typedef unsigned int uint; + #define isdig(x) isdigit((unsigned char)(x)) diff --git a/sci-geosciences/osmctools/osmctools-0.9-r2.ebuild b/sci-geosciences/osmctools/osmctools-0.9-r2.ebuild index e096bec36d61..7fbb789ed233 100644 --- a/sci-geosciences/osmctools/osmctools-0.9-r2.ebuild +++ b/sci-geosciences/osmctools/osmctools-0.9-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,6 +16,8 @@ KEYWORDS="amd64 ~x86" DEPEND="sys-libs/zlib" RDEPEND="${DEPEND}" +PATCHES=( "${FILESDIR}/${PN}-0.9-gcc15.patch" ) + src_prepare() { default diff --git a/sci-geosciences/qgis/qgis-3.38.3.ebuild b/sci-geosciences/qgis/qgis-3.38.3.ebuild index bc460c790b5e..f882c81156e0 100644 --- a/sci-geosciences/qgis/qgis-3.38.3.ebuild +++ b/sci-geosciences/qgis/qgis-3.38.3.ebuild @@ -88,7 +88,7 @@ COMMON_DEPEND=" dev-python/requests[${PYTHON_USEDEP}] dev-python/sip:=[${PYTHON_USEDEP}] postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] ) - dev-python/PyQt6[designer,gui,multimedia,network,positioning,printsupport,serialport,sql,svg,widgets,${PYTHON_USEDEP}] + dev-python/pyqt6[designer,gui,multimedia,network,positioning,printsupport,serialport,sql,svg,widgets,${PYTHON_USEDEP}] >=dev-python/qscintilla-2.10.1[qt6] ') ) @@ -114,7 +114,7 @@ BDEPEND="${PYTHON_DEPS} test? ( python? ( $(python_gen_cond_dep ' - dev-python/PyQt6[${PYTHON_USEDEP},testlib] + dev-python/pyqt6[${PYTHON_USEDEP},testlib] dev-python/nose2[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] ') diff --git a/sci-geosciences/qgis/qgis-9999.ebuild b/sci-geosciences/qgis/qgis-9999.ebuild index 46fc70e8479c..e3db08636738 100644 --- a/sci-geosciences/qgis/qgis-9999.ebuild +++ b/sci-geosciences/qgis/qgis-9999.ebuild @@ -88,7 +88,7 @@ COMMON_DEPEND=" dev-python/requests[${PYTHON_USEDEP}] dev-python/sip:=[${PYTHON_USEDEP}] postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] ) - dev-python/PyQt6[designer,gui,multimedia,network,positioning,printsupport,serialport,sql,svg,widgets,${PYTHON_USEDEP}] + dev-python/pyqt6[designer,gui,multimedia,network,positioning,printsupport,serialport,sql,svg,widgets,${PYTHON_USEDEP}] >=dev-python/qscintilla-2.10.1[qt6] ') ) @@ -114,7 +114,7 @@ BDEPEND="${PYTHON_DEPS} test? ( python? ( $(python_gen_cond_dep ' - dev-python/PyQt6[${PYTHON_USEDEP},testlib] + dev-python/pyqt6[${PYTHON_USEDEP},testlib] dev-python/nose2[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] ') diff --git a/sci-geosciences/qmapshack/Manifest b/sci-geosciences/qmapshack/Manifest index 7a04578bb1f6..bec627eadcd2 100644 --- a/sci-geosciences/qmapshack/Manifest +++ b/sci-geosciences/qmapshack/Manifest @@ -1,2 +1,2 @@ DIST qmapshack-1.17.1.tar.gz 56704889 BLAKE2B 1fda3f9874f39eb6b7a0c71ac7b681ebc0f6ea7ae2eefae2b6de4d780556fc5aee45aff230bebcf6ba025959beccffe14a59002fd9552b339892956d2fdd5c50 SHA512 79bdeb59e366cefb2d2a6c9bd084760b5935c93f385a6f2d26bdd25bb4af6939003decc4659afd1567a3b6698a0048e5c79baa716139fc20a96cc0e8dc206d9c -DIST qmapshack-1.17.1_p601.tar.gz 56720740 BLAKE2B 7fd8232e0c5b693d565897dff90ac6c6012918f2739d9cbfa48e7629e3a905609f47b9665d1a7666a131da64739a499a54f9959d275ab4c7f013db0e83d9760a SHA512 9378e1d42a6217cbf169fc67476765f6700886b59518a1c800c5a639b2822e8116cabaac28c147f3a52014bb2393deb1a8e8b7b9c4112f1990361d0376530c80 +DIST qmapshack-1.17.1_p602.tar.gz 56718904 BLAKE2B 1ff2176373201b77f232a6158d853dce1916137f524b05cfd3703314425a293c09a776c417f092b7fda60fd417476736ddaea0e756349fe27e8da38e511ab55d SHA512 3620e3a2f9f5bd3e251779116539bbc6d7bdeb5b25c99df68ee5c6922d31eb3de1019ef02297db92690edba78204c48f163f4223a5f1e0b11c8603a3756d8b17 diff --git a/sci-geosciences/qmapshack/files/dbus-r1.patch b/sci-geosciences/qmapshack/files/dbus-r1.patch deleted file mode 100644 index 0ab4294f63ad..000000000000 --- a/sci-geosciences/qmapshack/files/dbus-r1.patch +++ /dev/null @@ -1,63 +0,0 @@ -diff '--color=auto' -ur qmapshack-1f009ac0be1d1c2a4c31aa1283f4009e88685d34.orig/CMakeLists.txt qmapshack-1f009ac0be1d1c2a4c31aa1283f4009e88685d34/CMakeLists.txt ---- qmapshack-1f009ac0be1d1c2a4c31aa1283f4009e88685d34.orig/CMakeLists.txt 2024-09-30 20:02:57.701618381 +0200 -+++ qmapshack-1f009ac0be1d1c2a4c31aa1283f4009e88685d34/CMakeLists.txt 2024-09-30 20:05:59.159600329 +0200 -@@ -200,9 +200,9 @@ - - if(USE_QT6DBus) - find_package(Qt6DBus REQUIRED) -- if(Qt5DBus_FOUND) -+ if(Qt6DBus_FOUND) - add_definitions(-DHAVE_DBUS) -- endif(Qt5DBus_FOUND) -+ endif(Qt6DBus_FOUND) - endif(USE_QT6DBus) - - # Everything included. Let's finetune the mess a bit more -diff '--color=auto' -ur qmapshack-1f009ac0be1d1c2a4c31aa1283f4009e88685d34.orig/src/qmapshack/CMakeLists.txt qmapshack-1f009ac0be1d1c2a4c31aa1283f4009e88685d34/src/qmapshack/CMakeLists.txt ---- qmapshack-1f009ac0be1d1c2a4c31aa1283f4009e88685d34.orig/src/qmapshack/CMakeLists.txt 2024-09-30 20:02:57.687618460 +0200 -+++ qmapshack-1f009ac0be1d1c2a4c31aa1283f4009e88685d34/src/qmapshack/CMakeLists.txt 2024-09-30 20:06:51.470306845 +0200 -@@ -368,12 +368,12 @@ - ) - - --if(Qt5DBus_FOUND) -+if(Qt6DBus_FOUND) - set( SRCS - ${SRCS} - device/CDeviceWatcherLinux.cpp - ) --endif(Qt5DBus_FOUND) -+endif(Qt6DBus_FOUND) - - - if (APPLE) -@@ -746,12 +746,12 @@ - ) - - --if(Qt5DBus_FOUND) -+if(Qt6DBus_FOUND) - set( HDRS - ${HDRS} - device/CDeviceWatcherLinux.h - ) --endif(Qt5DBus_FOUND) -+endif(Qt6DBus_FOUND) - - - if(APPLE) -@@ -977,11 +977,11 @@ - ) - endif(${DEVELOPMENT_VERSION}) - --if(Qt5DBus_FOUND) -+if(Qt6DBus_FOUND) - set(DBUS_LIB Qt6::DBus) --else(Qt5DBus_FOUND) -+else(Qt6DBus_FOUND) - set(DBUS_LIB) --endif(Qt5DBus_FOUND) -+endif(Qt6DBus_FOUND) - - target_link_libraries(${APPLICATION_NAME} - Qt6::Widgets diff --git a/sci-geosciences/qmapshack/qmapshack-1.17.1.ebuild b/sci-geosciences/qmapshack/qmapshack-1.17.1.ebuild index 6df2a19e36ff..e1064ed971fb 100644 --- a/sci-geosciences/qmapshack/qmapshack-1.17.1.ebuild +++ b/sci-geosciences/qmapshack/qmapshack-1.17.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/Maproom/${PN}/archive/V_${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3+" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64" RDEPEND=" dev-libs/quazip:0=[qt5(+)] diff --git a/sci-geosciences/qmapshack/qmapshack-1.17.1_p601.ebuild b/sci-geosciences/qmapshack/qmapshack-1.17.1_p602.ebuild index d8473b11f33a..e1c1be1c79ab 100644 --- a/sci-geosciences/qmapshack/qmapshack-1.17.1_p601.ebuild +++ b/sci-geosciences/qmapshack/qmapshack-1.17.1_p602.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,12 +7,12 @@ inherit cmake xdg DESCRIPTION="GPS mapping utility" HOMEPAGE="https://github.com/Maproom/qmapshack/wiki" -COMMIT="b53959a305587f0a7f2330b99267b3b24abb76f4" +COMMIT="23d6fe3e11bd251f123fdba1f1cf2ac8170d4f83" SRC_URI="https://github.com/Maproom/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}"/${PN}-${COMMIT} LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64" IUSE="dbus" RDEPEND=" @@ -31,8 +31,6 @@ RDEPEND=" DEPEND="${RDEPEND}" BDEPEND="dev-qt/qttools:6[linguist]" -PATCHES=( "${FILESDIR}"/dbus-r1.patch ) - src_configure() { local mycmakeargs=( -DUSE_QT6DBus=$(usex dbus) ) cmake_src_configure diff --git a/sci-geosciences/tcd-utils/Manifest b/sci-geosciences/tcd-utils/Manifest index 5f9c7e5cea97..f6d5abe505b3 100644 --- a/sci-geosciences/tcd-utils/Manifest +++ b/sci-geosciences/tcd-utils/Manifest @@ -1 +1,2 @@ DIST tcd-utils-20120115.tar.bz2 118652 BLAKE2B 123e58ed9fea569ac49e21661b61c017d67d05b13694351aea74eb6ce945ac861235e569955bf27a2dd883598870b59923a8ef63320376fbf481762ef0340d9a SHA512 be4f4b17e24d378cee45c6de20aa4727648f9b0c755118094a06fd830fb4ca78bf467cb4c5b0f430917ae124b2040fef83dcae60186893baf785342585b5d8aa +DIST tcd-utils-20240222.tar.xz 112996 BLAKE2B b10fb40eb5ed02a6610fc40dde05cc30514fb41c90f6f8c61b9c4de5783a92737f1cea9fe3f6418bb035d8fb0b2f46d4bc85eeff981c767da2a246ffffb0c4ef SHA512 75ea86566b20822235719f811af5faa26cd83dfa4a33cd67818c77b3c03eadd59782118b2e662b16eba0412dff4fd4041cda91e792db49d91ef8d9f162fc214e diff --git a/sci-geosciences/tcd-utils/tcd-utils-20240222.ebuild b/sci-geosciences/tcd-utils/tcd-utils-20240222.ebuild new file mode 100644 index 000000000000..cfb7e1fab849 --- /dev/null +++ b/sci-geosciences/tcd-utils/tcd-utils-20240222.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Utilities for working with Tidal Constituent Databases" +HOMEPAGE="https://flaterco.com/xtide/" +SRC_URI="https://flaterco.com/files/xtide/${P}.tar.xz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=">=sci-geosciences/libtcd-2.2.4" +RDEPEND="${DEPEND}" diff --git a/sci-geosciences/xyzservices/Manifest b/sci-geosciences/xyzservices/Manifest index 654a05848493..47801fffc008 100644 --- a/sci-geosciences/xyzservices/Manifest +++ b/sci-geosciences/xyzservices/Manifest @@ -1,2 +1,2 @@ -DIST xyzservices-2024.6.0.tar.gz 1127473 BLAKE2B 0c5f99cd8efb5290f9e84abe824578da2c49075ebba72d48920c22da762e4b1e3225709602325f562669835cab39fe4df3556057c454c263d15dbccdf237c950 SHA512 628e0c50149792515051120e3a300bb6d5338fca8bfd40f4ecd7c8a2e5d0ffa43e5d9affd4c979739d61f5140b3331fb4f15aef061075763957abfed7f77c5d2 DIST xyzservices-2024.9.0.tar.gz 1127998 BLAKE2B d7c4f102984b678daf673e0066065140ecd222e999893ed6b72038e976fd33ef54a2d11fdd23ee9d7ccc75cd5eb79d3cd28d72bb9fd98d149adb84dd73ed46dd SHA512 8234b8eef07200563e5dd34c6a2c1e979137dbe3541238cd5f9d4de87675ab6abe9a69778794612a5962eb4d45a354300372233125bf75a5d9a6bfbb828dce5f +DIST xyzservices-2025.1.0.tar.gz 1129638 BLAKE2B 8bf721350f404b66826a489784dc1ea8d47e97b488ca183382fb9b21f7f34b12faafda80745a369f97abf34b9160d49492e1b01fdf6af39e13c0ad0869561f82 SHA512 56485345d312b12d979b08ab57f4a49ab2ccc1e70fd516889a3c72de1ee6f5711a2aa8ebca18ccae08b94123af1a9fbd02f8ce1c2dd8e1ec47d93d534322c930 diff --git a/sci-geosciences/xyzservices/xyzservices-2024.6.0.ebuild b/sci-geosciences/xyzservices/xyzservices-2025.1.0.ebuild index 14e1cb70572f..8e7c3648188c 100644 --- a/sci-geosciences/xyzservices/xyzservices-2024.6.0.ebuild +++ b/sci-geosciences/xyzservices/xyzservices-2025.1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2023-2024 Gentoo Authors +# Copyright 2023-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 |