commit:     dd49289fe331179328b326d3fc6a83bc1c54d94b
Author:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 16 08:44:01 2024 +0000
Commit:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Tue Jan 16 08:44:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd49289f

media-radio/xastir: drop 2.1.8-r3, 2.1.8-r4

Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>

 media-radio/xastir/Manifest                        |  1 -
 .../xastir/files/xastir-2.1.8-configure.diff       | 16 -----
 media-radio/xastir/xastir-2.1.8-r3.ebuild          | 79 ---------------------
 media-radio/xastir/xastir-2.1.8-r4.ebuild          | 82 ----------------------
 4 files changed, 178 deletions(-)

diff --git a/media-radio/xastir/Manifest b/media-radio/xastir/Manifest
index eedf37811bbc..7289a2bfedba 100644
--- a/media-radio/xastir/Manifest
+++ b/media-radio/xastir/Manifest
@@ -1,2 +1 @@
-DIST xastir-2.1.8.tar.gz 2222586 BLAKE2B 
4cd623c2db7a06c2499bf73a0df8c8f07b6a3072d177d370b76f54cb4caa4cf03f2b5c511149eaefc26f1aa7e8fe3a89e1c42e26a20066dd3337ad41dd5300b6
 SHA512 
361c92381b385035af160578dcfc4c800edcfabdbaebc5eda1c4fd9a78e934f289a54813577d5b765bbed6eae50cb772735defec6f489dc65326941d2492850d
 DIST xastir-2.2.0.tar.gz 2232411 BLAKE2B 
901a22ee9db6f2c416807dd11f532975bbaf38314224327a43acff0d7164200456e373cefd852b4022187a6c0c4d2182c2088c12bac93d0fc6ed6771c957c11f
 SHA512 
d420118e9118ff837d72f17e78563c7e9d39cfcaf05fe12cbf51b50ed36b9307e4b33b0e8a0d056c504a280683c6eb97637e9c4fec3bf1f0d920cb46f6e2cc0b

diff --git a/media-radio/xastir/files/xastir-2.1.8-configure.diff 
b/media-radio/xastir/files/xastir-2.1.8-configure.diff
deleted file mode 100644
index 0340f00e241e..000000000000
--- a/media-radio/xastir/files/xastir-2.1.8-configure.diff
+++ /dev/null
@@ -1,16 +0,0 @@
-# Fix implicit function declaration in configure.ac
-# bug 899846
-diff --git a/configure.ac b/configure.ac
-index 687bbe9..c137c80 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -646,7 +646,8 @@ fi
- save_LDFLAGS="$LDFLAGS"
- LDFLAGS="-Wl,--no-keep-memory $LDFLAGS"
- AC_LINK_IFELSE(
-- [AC_LANG_PROGRAM([[#include <sys/types.h>]],
-+ [AC_LANG_PROGRAM([[#include <sys/types.h>
-+                  #include <stdlib.h>]],
-                   [[/* Stupid useless test for linker flags */
-                      exit(0);]])],
-  [xa_cv_no_keep_memory=yes],

diff --git a/media-radio/xastir/xastir-2.1.8-r3.ebuild 
b/media-radio/xastir/xastir-2.1.8-r3.ebuild
deleted file mode 100644
index 01d7d4d56c52..000000000000
--- a/media-radio/xastir/xastir-2.1.8-r3.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit autotools flag-o-matic toolchain-funcs
-
-MY_P=${PN/x/X}-Release-${PV}
-
-DESCRIPTION="X Amateur Station Tracking and Information Reporting"
-HOMEPAGE="https://xastir.org/";
-SRC_URI="https://github.com/Xastir/Xastir/archive/Release-${PV}.tar.gz
-                       -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="geotiff"
-
-DEPEND=">=x11-libs/motif-2.3:0
-       x11-libs/libXt
-       x11-libs/libX11
-       x11-libs/libXpm
-       x11-apps/xfontsel
-       dev-libs/libpcre
-       net-misc/curl
-       sys-libs/db:=
-       sci-libs/shapelib
-       media-gfx/graphicsmagick:=[-q32]
-       geotiff? ( sci-libs/proj
-               sci-libs/libgeotiff:=
-               media-libs/tiff:= )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"/${MY_P}
-
-src_prepare() {
-       eapply_user
-
-       # fix script location (bug #407185)
-       eapply  "${FILESDIR}"/${PN}-2.1.8-scripts.diff
-
-       # do not filter duplicate flags (see bug #411095)
-       eapply -p0 "${FILESDIR}"/${PN}-2.0.0-dont-filter-flags.diff
-
-       eautoreconf
-}
-
-src_configure() {
-       # provide include path to GraphicsMagic for configure stage
-       append-cflags -I/usr/include/GraphicsMagick
-       econf \
-               --with-shapelib \
-               --without-ax25 \
-               --without-festival \
-               --without-gpsman \
-               --without-imagemagick \
-               --with-graphicsmagick \
-               $(use_with geotiff libproj) \
-               $(use_with geotiff)
-}
-
-src_compile() {
-       emake AR="$(tc-getAR)"
-}
-
-src_install() {
-       emake DESTDIR="${D}" install
-
-       rm -rf "${D}"/usr/share/doc/${PN}
-       dodoc AUTHORS ChangeLog CONTRIBUTING.md FAQ README \
-               README.Getting-Started README.MAPS README.OSM_maps
-}
-
-pkg_postinst() {
-       elog "Kernel mode AX.25 and GPSman library not supported."
-       elog
-       elog "Remember you have to be root to add addditional scripts,"
-       elog "maps and other configuration data under /usr/share/xastir."
-}

diff --git a/media-radio/xastir/xastir-2.1.8-r4.ebuild 
b/media-radio/xastir/xastir-2.1.8-r4.ebuild
deleted file mode 100644
index 321686006d1b..000000000000
--- a/media-radio/xastir/xastir-2.1.8-r4.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit autotools flag-o-matic toolchain-funcs
-
-MY_P=${PN/x/X}-Release-${PV}
-
-DESCRIPTION="X Amateur Station Tracking and Information Reporting"
-HOMEPAGE="https://xastir.org/";
-SRC_URI="https://github.com/Xastir/Xastir/archive/Release-${PV}.tar.gz
-                       -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="geotiff"
-
-DEPEND=">=x11-libs/motif-2.3:0
-       x11-libs/libXt
-       x11-libs/libX11
-       x11-libs/libXpm
-       x11-apps/xfontsel
-       dev-libs/libpcre
-       net-misc/curl
-       sys-libs/db:=
-       sci-libs/shapelib
-       media-gfx/graphicsmagick:=[-q32]
-       geotiff? ( sci-libs/proj
-               sci-libs/libgeotiff:=
-               media-libs/tiff:= )"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}"/${PN}-2.1.8-configure.diff )
-
-S="${WORKDIR}"/${MY_P}
-
-src_prepare() {
-       eapply_user
-       eapply ${PATCHES}
-
-       # fix script location (bug #407185)
-       eapply  "${FILESDIR}"/${PN}-2.1.8-scripts.diff
-
-       # do not filter duplicate flags (see bug #411095)
-       eapply -p0 "${FILESDIR}"/${PN}-2.0.0-dont-filter-flags.diff
-
-       eautoreconf
-}
-
-src_configure() {
-       # provide include path to GraphicsMagic for configure stage
-       append-cflags -I/usr/include/GraphicsMagick
-       econf \
-               --with-shapelib \
-               --without-ax25 \
-               --without-festival \
-               --without-gpsman \
-               --without-imagemagick \
-               --with-graphicsmagick \
-               $(use_with geotiff libproj) \
-               $(use_with geotiff)
-}
-
-src_compile() {
-       emake AR="$(tc-getAR)"
-}
-
-src_install() {
-       emake DESTDIR="${D}" install
-
-       rm -rf "${D}"/usr/share/doc/${PN}
-       dodoc AUTHORS ChangeLog CONTRIBUTING.md FAQ README \
-               README.Getting-Started README.MAPS README.OSM_maps
-}
-
-pkg_postinst() {
-       elog "Kernel mode AX.25 and GPSman library not supported."
-       elog
-       elog "Remember you have to be root to add addditional scripts,"
-       elog "maps and other configuration data under /usr/share/xastir."
-}

Reply via email to