diff options
Diffstat (limited to 'sci-astronomy/xephem/xephem-3.7.5.ebuild')
-rw-r--r-- | sci-astronomy/xephem/xephem-3.7.5.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/sci-astronomy/xephem/xephem-3.7.5.ebuild b/sci-astronomy/xephem/xephem-3.7.5.ebuild new file mode 100644 index 000000000000..655f99bb3a76 --- /dev/null +++ b/sci-astronomy/xephem/xephem-3.7.5.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.5.ebuild,v 1.1 2011/07/29 15:09:17 bicatali Exp $ + +EAPI=4 +inherit eutils toolchain-funcs + +DESCRIPTION="Interactive tool for astronomical ephemeris and sky simulation" +HOMEPAGE="http://www.clearskyinstitute.com/xephem" +SRC_URI="http://97.74.56.125/free/${P}.tar.gz" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="" +SLOT=0 +LICENSE="as-is" + +DEPEND=">=x11-libs/openmotif-2.3:0 + virtual/jpeg + media-libs/libpng" +RDEPEND="${DEPEND}" + +src_prepare() { + # make sure we use system libs and respect user flags + epatch \ + "${FILESDIR}"/${PN}-3.7.4-libs-flags.patch \ + "${FILESDIR}"/${PN}-3.7.4-overflows.patch +} + +src_compile() { + tc-export CC + cd GUI/xephem || die + emake + local i + for i in tools/{lx200xed,xedb,xephemdbd}; do + emake -C ${i} + done +} + +src_install() { + cd GUI/xephem + dobin xephem + doman xephem.1 + newicon XEphem.png ${PN}.png + insinto /usr/share/${PN} + doins -r auxil catalogs fifos fits gallery lo + dohtml -r help/* + cd tools || die + dobin lx200xed/lx200xed xedb/xedb xephemdbd/xephemdbd + for file in {xedb,lx200xed}/README; do + newdoc ${file} README.$(dirname ${file}) + done + cd xephemdbd || die + insinto /usr/share/doc/${PF}/xephemdbd + doins README cgi-lib.pl start-xephemdbd.pl xephemdbd.html xephemdbd.pl + cd "${S}" + echo > XEphem "XEphem.ShareDir: /usr/share/${PN}" + insinto /usr/share/X11/app-defaults + has_version '<x11-base/xorg-x11-7.0' && insinto /etc/X11/app-defaults + doins XEphem + echo > 99xephem "XEHELPURL=/usr/share/doc/${PF}/html/xephem.html" + doenvd 99xephem + dodoc Copyright README + make_desktop_entry xephem XEphem ${PN} +} + +pkg_postinst() { + elog "See ${EROOT}/usr/share/doc/${PF}/xephemdbd/README to set up a web interface" +} |