diff options
author | Thomas Beierlein <tomjbe@gentoo.org> | 2019-07-26 16:08:50 +0200 |
---|---|---|
committer | Thomas Beierlein <tomjbe@gentoo.org> | 2019-07-26 16:09:09 +0200 |
commit | 7cea10caf90d0c0f7a3865d0ee7ba9b6c7494596 (patch) | |
tree | 4eeb83a6f92a4582673eab43dbf27db8421ec5d4 /media-radio/xastir/xastir-2.1.0.ebuild | |
parent | media-radio/xastir: Fix for compile error with newer Graphicsmagick (diff) | |
download | gentoo-7cea10caf90d0c0f7a3865d0ee7ba9b6c7494596.tar.gz gentoo-7cea10caf90d0c0f7a3865d0ee7ba9b6c7494596.tar.bz2 gentoo-7cea10caf90d0c0f7a3865d0ee7ba9b6c7494596.zip |
media-radio/xastir: Drop buggy versions
Do not compile with newer Graphicsmagick (bug #688444)
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
Diffstat (limited to 'media-radio/xastir/xastir-2.1.0.ebuild')
-rw-r--r-- | media-radio/xastir/xastir-2.1.0.ebuild | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/media-radio/xastir/xastir-2.1.0.ebuild b/media-radio/xastir/xastir-2.1.0.ebuild deleted file mode 100644 index bb02b59e37fb..000000000000 --- a/media-radio/xastir/xastir-2.1.0.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools eutils flag-o-matic toolchain-funcs - -MY_P=${PN/x/X}-Release-${PV} - -DESCRIPTION="X Amateur Station Tracking and Information Reporting" -HOMEPAGE="http://xastir.org/" -SRC_URI="https://github.com/Xastir/Xastir/archive/Release-2.1.0.tar.gz - -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="festival gdal geotiff +graphicsmagick" - -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:4.8 - sci-libs/shapelib - !graphicsmagick? ( <media-gfx/imagemagick-7:0=[-hdri,-q32] ) - graphicsmagick? ( media-gfx/graphicsmagick:=[-q32] ) - geotiff? ( sci-libs/proj - sci-libs/libgeotiff:= - media-libs/tiff:0 ) - gdal? ( sci-libs/gdal ) - festival? ( app-accessibility/festival )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}"/${MY_P} - -src_prepare() { - eapply_user - - # fix script location (bug #407185) - epatch "${FILESDIR}"/${P}-scripts.diff - - # fix __FORTIFY_SOURCE warning (bug #337365) - epatch "${FILESDIR}"/${PN}-2.0.4-fortify.diff - - # do not use builtin shapelib if sci-libs/shapelib is not installed - # instead build without shapelib support (bug #430704) - epatch "${FILESDIR}"/${PN}-2.0.8-no-builtin-shapelib.diff - - # do not filter duplicate flags (see bug 411095) - epatch "${FILESDIR}"/${PN}-2.0.0-dont-filter-flags.diff - - eautoreconf -} - -src_configure() { - # provide include path to GraphicsMagic for configure stage - use graphicsmagick && append-cflags -I/usr/include/GraphicsMagick - econf --with-pcre \ - --with-shapelib \ - --with-dbfawk \ - --without-ax25 \ - --without-gpsman \ - $(use_with !graphicsmagick imagemagick) \ - $(use_with graphicsmagick) \ - $(use_with geotiff libproj) \ - $(use_with geotiff) \ - $(use_with gdal) \ - $(use_with festival) -} - -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." -} |