blob: 81cc3f77a336fdcd95688352ee40dd0c02ae6cfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/skycat/skycat-3.1.1.ebuild,v 1.1 2010/09/24 18:13:38 bicatali Exp $
EAPI=2
inherit eutils autotools
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"
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}"
src_prepare() {
# fix buggy tcl.m4 for bash3
epatch "${FILESDIR}"/${PN}-3.0.1-m4.patch
epatch "${FILESDIR}"/${PN}-3.1.1-gcc45.patch
#epatch "${FILESDIR}"/${PN}-3.0.2-glibc-2.10.patch
# need fix for tk-8.5
if has_version ">=dev-lang/tk-8.5" ; then
epatch "${FILESDIR}"/${PN}-3.0.2-tk8.5.patch
fi
epatch "${FILESDIR}"/${PN}-3.0.2-makefile-qa.patch
# use system libs
epatch "${FILESDIR}"/${PN}-3.0.2-systemlibs.patch
rm -fr "${S}"/astrotcl/cfitsio/ "${S}"/astrotcl/libwcs/ \
|| die "Failed to remove included libs"
eautoreconf
}
src_configure() {
econf $(use_enable threads) --enable-merge
}
src_compile() {
emake
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README CHANGES VERSION
for d in tclutil astrotcl rtd cat skycat; do
for f in README CHANGES VERSION; do
newdoc ${f} ${f}.${d}
done
done
}
|