Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-astronomy/skycat/
Date: Fri, 02 Sep 2016 20:09:35
Message-Id: 1472846930.6ab7555711c92e80d8ce0d2613ccaffd68c1dff9.soap@gentoo
1 commit: 6ab7555711c92e80d8ce0d2613ccaffd68c1dff9
2 Author: Gerhard Bräunlich <wippbox <AT> gmx <DOT> net>
3 AuthorDate: Fri Sep 2 12:07:19 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 2 20:08:50 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ab75557
7
8 sci-astronomy/skycat: Deleted EAPI 4 ebuild
9
10 Package-Manager: portage-2.2.28
11 Closes: https://github.com/gentoo/gentoo/pull/2186
12
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 sci-astronomy/skycat/skycat-3.1.2-r1.ebuild | 60 -----------------------------
16 1 file changed, 60 deletions(-)
17
18 diff --git a/sci-astronomy/skycat/skycat-3.1.2-r1.ebuild b/sci-astronomy/skycat/skycat-3.1.2-r1.ebuild
19 deleted file mode 100644
20 index 8f971f9..00000000
21 --- a/sci-astronomy/skycat/skycat-3.1.2-r1.ebuild
22 +++ /dev/null
23 @@ -1,60 +0,0 @@
24 -# Copyright 1999-2014 Gentoo Foundation
25 -# Distributed under the terms of the GNU General Public License v2
26 -# $Id$
27 -
28 -EAPI=4
29 -inherit eutils autotools flag-o-matic
30 -
31 -DESCRIPTION="ESO astronomical image visualizer with catalog access"
32 -HOMEPAGE="http://archive.eso.org/skycat"
33 -SRC_URI="http://archive.eso.org/cms/tools-documentation/skycat-download/${P}.tar.gz"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -
38 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
39 -IUSE="threads"
40 -
41 -DEPEND="x11-libs/libXext
42 - >=dev-tcltk/tclx-2.4
43 - >=dev-tcltk/blt-2.4
44 - >=dev-tcltk/itcl-3.3
45 - >=dev-tcltk/iwidgets-4.0.1
46 - >=dev-tcltk/tkimg-1.3
47 - sci-libs/cfitsio
48 - sci-astronomy/wcstools"
49 -RDEPEND="${DEPEND}"
50 -
51 -src_prepare() {
52 - # fix buggy tcl.m4 for bash3 and add soname
53 - epatch "${FILESDIR}"/${P}-m4.patch
54 - # need fix for tk-8.5
55 - if has_version ">=dev-lang/tk-8.5" ; then
56 - epatch "${FILESDIR}"/${PN}-3.0.2-tk8.5.patch
57 - fi
58 - epatch "${FILESDIR}"/${P}-makefile-qa.patch
59 - # use system libs
60 - epatch "${FILESDIR}"/${PN}-3.0.2-systemlibs.patch
61 - rm -fr astrotcl/{cfitsio,libwcs} \
62 - || die "Failed to remove included libs"
63 - # prefix it
64 - sed -i \
65 - -e "s:/usr:${EPREFIX}/usr:g" \
66 - */configure.in */aclocal.m4 || die
67 - eautoreconf
68 -}
69 -
70 -src_configure() {
71 - append-cppflags -DUSE_INTERP_RESULT # 514604
72 - econf $(use_enable threads) --enable-merge
73 -}
74 -
75 -src_install() {
76 - default
77 - local d
78 - for d in tclutil astrotcl rtd cat skycat; do
79 - for f in README CHANGES VERSION; do
80 - newdoc ${f} ${f}.${d}
81 - done
82 - done
83 -}