diff options
author | Thomas Beierlein <tomjbe@gentoo.org> | 2016-05-01 16:17:12 +0200 |
---|---|---|
committer | Thomas Beierlein <tomjbe@gentoo.org> | 2016-05-01 16:17:12 +0200 |
commit | eebd28dc6f27c8d199148b1a5de6c4928bd04213 (patch) | |
tree | 67caf2b7d2bb41fd39bc26764ae0b379215e7582 | |
parent | media-radio/cwdaemon: drop old (diff) | |
download | gentoo-eebd28dc6f27c8d199148b1a5de6c4928bd04213.tar.gz gentoo-eebd28dc6f27c8d199148b1a5de6c4928bd04213.tar.bz2 gentoo-eebd28dc6f27c8d199148b1a5de6c4928bd04213.zip |
media-radio/xastir: Drop old
Package-Manager: portage-2.2.28
-rw-r--r-- | media-radio/xastir/Manifest | 1 | ||||
-rw-r--r-- | media-radio/xastir/xastir-2.0.4.ebuild | 88 |
2 files changed, 0 insertions, 89 deletions
diff --git a/media-radio/xastir/Manifest b/media-radio/xastir/Manifest index 6458a9553e96..b6307199ac7a 100644 --- a/media-radio/xastir/Manifest +++ b/media-radio/xastir/Manifest @@ -1,2 +1 @@ -DIST xastir-2.0.4.tar.gz 2655250 SHA256 975f1cbe1ee32334e579588dcf2e19bcc607ad7b5f9d0848075f6d283d65af86 SHA512 766124ae717742e93bef24cd4c84946e146c3ba8a61775afada25a1c60f225edf91fc8eb4f59881564b14187e523c98a07d515adea74d73e03e2ab10dbae92b3 WHIRLPOOL 640616e698e2e3cfe2bdd6619ac601017c37d4d18cd1fa3ab5391ade170b6108a845a4fe2860b618a5cd2281e884399874b554c3960e1f5ad6420f016c88260c DIST xastir-2.0.6.tar.gz 2662042 SHA256 e46debd3f67ea5c08e2f85f03e26653871a9cdd6d692c8eeee436c3bc8a8dd43 SHA512 422bfd5c243ce2761279908b2294f94598df4e51e8dc9eea1eede12c460934c97392e8d99d40d67d92b4e31fe09806e9c33190e146696a49d968df6562e858f3 WHIRLPOOL 39a097dba585d5bcdcdb880ddb5e530eb118bd1645abf911948ed2c0b562a4b12cf4b453b0295db1f37d00380873440e251466f7b12440cd41f50578ae90f170 diff --git a/media-radio/xastir/xastir-2.0.4.ebuild b/media-radio/xastir/xastir-2.0.4.ebuild deleted file mode 100644 index c211549f0992..000000000000 --- a/media-radio/xastir/xastir-2.0.4.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 -inherit autotools eutils flag-o-matic toolchain-funcs - -DESCRIPTION="X Amateur Station Tracking and Information Reporting" -HOMEPAGE="http://xastir.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${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 - sci-libs/shapelib - !graphicsmagick? ( media-gfx/imagemagick[-hdri,-q32] ) - graphicsmagick? ( media-gfx/graphicsmagick[-q32] ) - geotiff? ( sci-libs/proj - sci-libs/libgeotiff - media-libs/tiff ) - gdal? ( sci-libs/gdal ) - festival? ( app-accessibility/festival )" -RDEPEND="${DEPEND}" - -src_prepare() { - # fix script location (bug #407185) - epatch "${FILESDIR}"/${P}-scripts.diff - - # fix __FORTIFY_SOURCE warning (bug #337365) - epatch "${FILESDIR}"/${P}-fortify.diff - - # do not use builtin shapelib if sci-libs/shapelib is not installed - # instead build without shapelib support (bug #430704) - epatch "${FILESDIR}"/${P}-no-builtin-shapelib.diff - - # do not filter duplicate flags (see bug 411095) - epatch "${FILESDIR}"/${PN}-2.0.0-dont-filter-flags.diff - - # fix deprectated AM_CONFIG_HEADER macro - sed -i -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" configure.ac || die - - 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 FAQ README README.Contributing \ - README.Getting-Started README.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." -} |