blob: 203c9d9fcae87b66b5e0489cb365b76435313c5d (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-calculators/units/units-2.00.ebuild,v 1.2 2012/07/02 04:20:41 jer Exp $
EAPI=4
inherit eutils
DESCRIPTION="unit conversion program"
HOMEPAGE="http://www.gnu.org/software/units/units.html"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
IUSE=""
DEPEND="
>=sys-libs/readline-4.1-r2
>=sys-libs/ncurses-5.2-r3
"
RDEPEND="
|| ( dev-lang/python:2.5 dev-lang/python:2.6 dev-lang/python:2.7 )
${DEPEND}
"
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo.patch
# Fix shebang for python2
sed -i units_cur -e '1s|$|2|' || die
}
src_install() {
emake -j1 DESTDIR="${D}" install
dodoc ChangeLog NEWS README
}
|