blob: a460c09c59b90bd45f5a08c249293a39d46dec7e (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/galaxy/galaxy-1.8.ebuild,v 1.1 2010/05/28 06:42:42 xarthisius Exp $
inherit base toolchain-funcs
DESCRIPTION="stellar simulation program"
HOMEPAGE="http://kornelix.squarespace.com/galaxy/"
SRC_URI="http://kornelix.squarespace.com/storage/downloads/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-libs/gtk+"
RDEPEND="${DEPEND}
x11-misc/xdg-utils"
PATCHES=( "${FILESDIR}/${P}-gentoo.patch" )
DOCS=( "doc/CHANGES" "doc/README" )
pkg_setup() {
tc-export CXX
}
|