blob: a9f241d4ab4acaa099b823d4d7a3defd6d92d95a (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ds9-bin/ds9-bin-6.2.ebuild,v 1.1 2011/08/05 20:26:51 bicatali Exp $
EAPI=4
inherit eutils
DESCRIPTION="Data visualization application for astronomical FITS images"
HOMEPAGE="http://hea-www.harvard.edu/RD/ds9"
SRC_URI="http://dev.gentoo.org/~jlec/distfiles/ds9.png.tar
amd64? ( http://hea-www.harvard.edu/saord/download/ds9/linux64/ds9.linux64.${PV}.tar.gz )
x86? ( http://hea-www.harvard.edu/saord/download/ds9/linux/ds9.linux.${PV}.tar.gz )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/libxml2
media-libs/fontconfig
media-libs/freetype
x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXext
x11-libs/libXft
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/xpa"
DEPEND=""
S="${WORKDIR}"
QA_PRESTRIPPED="/usr/bin/ds9"
src_install () {
dobin ds9
doicon ${PN}.png
make_desktop_entry ds9 "SAOImage DS9"
}
|