blob: 3a7227207dcdae29a6a7a07a747777b11bd6ad74 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/num-utils/num-utils-0.3.ebuild,v 1.5 2010/06/24 13:06:50 jlec Exp $
DESCRIPTION="A set of programs for dealing with numbers from the command line"
SRC_URI="http://suso.suso.org/programs/num-utils/downloads/${P}.tar.gz"
HOMEPAGE="http://suso.suso.org/programs/num-utils/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=""
RDEPEND="
dev-lang/perl
!<sci-chemistry/gromacs-4"
src_compile() {
emake || die
}
src_install () {
make ROOT="${D}" install || die
dodoc CHANGELOG GOALS MANIFEST README VERSION WARNING
}
|