diff options
author | 2006-03-12 20:40:00 +0000 | |
---|---|---|
committer | 2006-03-12 20:40:00 +0000 | |
commit | 6dff1c09366b1e481a0558625cf6c6c6760cf0c5 (patch) | |
tree | 930c07d97d5b74d30ce624790d99986e25c069b7 /sci-calculators/units/units-1.85.ebuild | |
parent | make abiword dep less strict to allow rev bumps. Thanks to Rumen Yotov for po... (diff) | |
download | gentoo-2-6dff1c09366b1e481a0558625cf6c6c6760cf0c5.tar.gz gentoo-2-6dff1c09366b1e481a0558625cf6c6c6760cf0c5.tar.bz2 gentoo-2-6dff1c09366b1e481a0558625cf6c6c6760cf0c5.zip |
Version bump. This fixes bug #125343.
(Portage version: 2.1_pre5-r4)
Diffstat (limited to 'sci-calculators/units/units-1.85.ebuild')
-rw-r--r-- | sci-calculators/units/units-1.85.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sci-calculators/units/units-1.85.ebuild b/sci-calculators/units/units-1.85.ebuild new file mode 100644 index 000000000000..cd817bc2a183 --- /dev/null +++ b/sci-calculators/units/units-1.85.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/units/units-1.85.ebuild,v 1.1 2006/03/12 20:40:00 markusle Exp $ + +inherit eutils + +DESCRIPTION="program for units conversion and units calculation" +SRC_URI="http://ftp.gnu.org/gnu/${PN}/${P}.tar.gz" +HOMEPAGE="http://freshmeat.net/projects/units/" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" + +DEPEND=">=sys-libs/readline-4.1-r2 + >=sys-libs/ncurses-5.2-r3" + + +src_compile() { + #Note: the trailing / is required in the datadir path. + econf --datadir=/usr/share/${PN}/ || die + emake || die +} + +src_install() { + einstall datadir=${D}/usr/share/${PN}/ || die + dodoc ChangeLog NEWS README +} |