diff options
author | Gerhard Bräunlich <wippbox@gmx.net> | 2016-09-01 22:39:18 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-09-02 22:08:44 +0200 |
commit | 5146219b6b6a3642e72385b49408989241a2d74f (patch) | |
tree | b64846a9cfa3d68feb915b9d0c1bb7377bc84d14 /sci-astronomy | |
parent | sci-astronomy/predict: revbump (EAPI 4 -> 6) (diff) | |
download | gentoo-5146219b6b6a3642e72385b49408989241a2d74f.tar.gz gentoo-5146219b6b6a3642e72385b49408989241a2d74f.tar.bz2 gentoo-5146219b6b6a3642e72385b49408989241a2d74f.zip |
sci-astronomy/skycat: revbump (EAPI 4 -> 6)
Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/2186
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-astronomy')
-rw-r--r-- | sci-astronomy/skycat/skycat-3.1.2-r2.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/sci-astronomy/skycat/skycat-3.1.2-r2.ebuild b/sci-astronomy/skycat/skycat-3.1.2-r2.ebuild new file mode 100644 index 000000000000..71509ef92a85 --- /dev/null +++ b/sci-astronomy/skycat/skycat-3.1.2-r2.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit autotools flag-o-matic + +DESCRIPTION="ESO astronomical image visualizer with catalog access" +HOMEPAGE="http://archive.eso.org/skycat" +SRC_URI="http://archive.eso.org/cms/tools-documentation/skycat-download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="threads" + +DEPEND="x11-libs/libXext + >=dev-tcltk/tclx-2.4 + >=dev-tcltk/blt-2.4 + >=dev-tcltk/itcl-3.3 + >=dev-tcltk/iwidgets-4.0.1 + >=dev-tcltk/tkimg-1.3 + sci-libs/cfitsio + sci-astronomy/wcstools" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${P}-m4.patch # fix buggy tcl.m4 for bash3 and add soname + "${FILESDIR}"/${P}-makefile-qa.patch + "${FILESDIR}"/${PN}-3.0.2-systemlibs.patch # use system libs + "${FILESDIR}"/${PN}-3.0.2-tk8.5.patch # need fix for tk-8.5 +) + +src_prepare() { + default + rm -fr astrotcl/{cfitsio,libwcs} \ + || die "Failed to remove included libs" + # prefix it + sed -i \ + -e "s:/usr:${EPREFIX}/usr:g" \ + */configure.in */aclocal.m4 || die + local f + for f in configure.in */configure.in ; do + mv "$f" "${f/.in/.ac}" || die + done + eautoreconf +} + +src_configure() { + append-cppflags -DUSE_INTERP_RESULT # 514604 + econf $(use_enable threads) --enable-merge +} + +src_install() { + default + local d f + for d in tclutil astrotcl rtd cat skycat; do + for f in README CHANGES VERSION; do + newdoc ${f} ${f}.${d} + done + done +} |