summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Beierlein <tomjbe@gentoo.org>2013-07-15 06:05:53 +0000
committerThomas Beierlein <tomjbe@gentoo.org>2013-07-15 06:05:53 +0000
commitb7e1531d19a6edb67f6b11e62e8cf0f5c5b5d6e4 (patch)
treed00b287959a2baf6c0b424f041fc706f9a101f39 /media-radio/xastir
parentDrop old (diff)
downloadgentoo-2-b7e1531d19a6edb67f6b11e62e8cf0f5c5b5d6e4.tar.gz
gentoo-2-b7e1531d19a6edb67f6b11e62e8cf0f5c5b5d6e4.tar.bz2
gentoo-2-b7e1531d19a6edb67f6b11e62e8cf0f5c5b5d6e4.zip
Drop old
(Portage version: 2.1.12.13/cvs/Linux x86_64, signed Manifest commit with key 0x762053D5)
Diffstat (limited to 'media-radio/xastir')
-rw-r--r--media-radio/xastir/ChangeLog5
-rw-r--r--media-radio/xastir/xastir-2.0.0-r2.ebuild85
2 files changed, 4 insertions, 86 deletions
diff --git a/media-radio/xastir/ChangeLog b/media-radio/xastir/ChangeLog
index 1f42b550683a..1060ad06198d 100644
--- a/media-radio/xastir/ChangeLog
+++ b/media-radio/xastir/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-radio/xastir
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-radio/xastir/ChangeLog,v 1.35 2013/05/10 16:37:16 tomjbe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-radio/xastir/ChangeLog,v 1.36 2013/07/15 06:05:53 tomjbe Exp $
+
+ 15 Jul 2013; Thomas Beierlein <tomjbe@gentoo.org> -xastir-2.0.0-r2.ebuild:
+ Drop old
10 May 2013; Thomas Beierlein <tomjbe@gentoo.org>
-files/xastir-1.9.8-Destdir.diff, -files/xastir-1.9.8-scripts.diff:
diff --git a/media-radio/xastir/xastir-2.0.0-r2.ebuild b/media-radio/xastir/xastir-2.0.0-r2.ebuild
deleted file mode 100644
index 8a74bef9083c..000000000000
--- a/media-radio/xastir/xastir-2.0.0-r2.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-radio/xastir/xastir-2.0.0-r2.ebuild,v 1.8 2012/12/07 14:27:31 tomjbe Exp $
-
-EAPI=2
-inherit autotools eutils
-
-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}"/${PN}-1.9.8-fortify.diff
-
- # fix for DESTDIR
- epatch "${FILESDIR}"/${P}-Destdir.diff
-
- # fix breakage with >=sci-libs/proj-4.8
- epatch "${FILESDIR}"/${P}-proj48.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}"/${P}-dont-filter-flags.diff
-
- eautoreconf
-}
-
-src_configure() {
- 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_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- rm -rf "${D}"/usr/share/doc/${PN}
- dodoc AUTHORS ChangeLog FAQ README README.Contributing \
- README.Getting-Started README.MAPS || die "dodoc failed"
-}
-
-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."
-}