# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Real time satellite tracking program" HOMEPAGE="http://groundstation.sourceforge.net/?gpredict" SRC_URI="mirror://sourceforge/groundstation/${P}.tar.gz" RESTRICT="nomirror" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=">=dev-libs/glib-2.10.0 >=x11-libs/gtk+-2.8.0" src_compile() { sed -i "s:pkgdatadir:srcdocdir:g" Makefile.in econf || die "econf failed" emake || die "emake failed" } src_install() { dodir /usr/share/doc/"${PF}" emake \ prefix="${D}"/usr \ datadir="${D}"/usr/share \ mandir="${D}"/usr/share/man \ infodir="${D}"/usr/share/info \ libdir="${D}"/usr/$(get_libdir) \ srcdocdir="${D}"/usr/share/doc/"${PF}" \ install || die "emake install failed" make_desktop_entry gpredict "Gpredict" /usr/share/pixmaps/gpredict/icons/gpredict-icon.png Science }