diff options
Diffstat (limited to 'sci-electronics/splat/splat-1.2.2-r2.ebuild')
-rw-r--r-- | sci-electronics/splat/splat-1.2.2-r2.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/sci-electronics/splat/splat-1.2.2-r2.ebuild b/sci-electronics/splat/splat-1.2.2-r2.ebuild deleted file mode 100644 index af1f3215e7fa..000000000000 --- a/sci-electronics/splat/splat-1.2.2-r2.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/splat/splat-1.2.2-r2.ebuild,v 1.2 2014/08/10 20:28:42 slyfox Exp $ - -inherit toolchain-funcs eutils - -DESCRIPTION="RF Signal Propagation, Loss, And Terrain analysis tool for the spectrum between 20 MHz and 20 GHz" -HOMEPAGE="http://www.qsl.net/kd2bd/splat.html" -SRC_URI="http://www.qsl.net/kd2bd/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="doc linguas_es" - -DEPEND="sys-libs/zlib - app-arch/bzip2" - -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-gcc43.patch" -} - -src_compile() { - local CC=$(tc-getCC) CXX=$(tc-getCXX) - - ${CXX} -Wall ${CXXFLAGS} ${LDFLAGS} itm.cpp splat.cpp -o rfsplat -lm -lbz2 || die - - cd utils - ${CC} -Wall ${CFLAGS} ${LDFLAGS} citydecoder.c -o citydecoder - ${CC} -Wall ${CFLAGS} ${LDFLAGS} usgs2sdf.c -o usgs2sdf - ${CC} -Wall ${CFLAGS} ${LDFLAGS} srtm2sdf.c -o srtm2sdf -lbz2 - #${CC} -Wall ${CFLAGS} ${LDFLAGS} fontdata.c -o fontdata -lz - ${CC} -Wall ${CFLAGS} ${LDFLAGS} bearing.c -o bearing -lm -} - -src_install() { - local SPLAT_LANG="english" - use linguas_es && SPLAT_LANG="spanish" - # splat binary - dobin rfsplat || die - - # utilities - dobin utils/{citydecoder,usgs2sdf,srtm2sdf,postdownload,bearing} || die - newman docs/${SPLAT_LANG}/man/splat.man rfsplat.1 || die - - dodoc CHANGES README utils/fips.txt || die - newdoc utils/README README.UTILS || die - - if use doc; then - dodoc docs/${SPLAT_LANG}/{pdf/splat.pdf,postscript/splat.ps} || die - fi - #sample data - docinto sample_data - dodoc sample_data/* || die -} - -pkg_postinst() { - elog "The original SPLAT! command got renamed to 'rfsplat' to avoid" - elog "filename collission with app-portage/splat." - elog "" - elog "Be aware that it is still referenced as 'splat' in the documentation." -} |