diff options
author | 2010-02-17 19:45:22 +0000 | |
---|---|---|
committer | 2010-02-17 19:45:22 +0000 | |
commit | d967f3274fd2f03d06369a696b8ab090fc2ed867 (patch) | |
tree | dafbd6ec70385ff3c83c65eb9205e9bd5b3989a9 /sci-calculators | |
parent | fix doc install location for real (#297641) (diff) | |
download | gentoo-2-d967f3274fd2f03d06369a696b8ab090fc2ed867.tar.gz gentoo-2-d967f3274fd2f03d06369a696b8ab090fc2ed867.tar.bz2 gentoo-2-d967f3274fd2f03d06369a696b8ab090fc2ed867.zip |
Version bump.
(Portage version: 2.2_rc62/cvs/Linux i686)
Diffstat (limited to 'sci-calculators')
-rw-r--r-- | sci-calculators/units/ChangeLog | 9 | ||||
-rw-r--r-- | sci-calculators/units/units-1.88.ebuild | 28 |
2 files changed, 35 insertions, 2 deletions
diff --git a/sci-calculators/units/ChangeLog b/sci-calculators/units/ChangeLog index 1f7d7b9a1221..05f86de66e54 100644 --- a/sci-calculators/units/ChangeLog +++ b/sci-calculators/units/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-calculators/units -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-calculators/units/ChangeLog,v 1.25 2007/11/27 16:26:23 jer Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/units/ChangeLog,v 1.26 2010/02/17 19:45:22 jer Exp $ + +*units-1.88 (17 Feb 2010) + + 17 Feb 2010; Jeroen Roovers <jer@gentoo.org> +units-1.88.ebuild: + Version bump. 27 Nov 2007; Jeroen Roovers <jer@gentoo.org> -units-1.86.ebuild: Remove old version. diff --git a/sci-calculators/units/units-1.88.ebuild b/sci-calculators/units/units-1.88.ebuild new file mode 100644 index 000000000000..267fcafdcfe2 --- /dev/null +++ b/sci-calculators/units/units-1.88.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/units/units-1.88.ebuild,v 1.1 2010/02/17 19:45:22 jer Exp $ + +EAPI="2" + +inherit eutils + +DESCRIPTION="unit conversion program" +SRC_URI="http://ftp.gnu.org/gnu/${PN}/${P}.tar.gz" +HOMEPAGE="http://www.gnu.org/software/units/units.html" + +LICENSE="GPL-3" +SLOT="0" +IUSE="" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" + +DEPEND=">=sys-libs/readline-4.1-r2 + >=sys-libs/ncurses-5.2-r3" + +src_configure() { + econf --datadir=/usr/share/${PN} || die "econf failed" +} + +src_install() { + einstall datadir="${D}"/usr/share/${PN} || die "emake install failed" + dodoc ChangeLog NEWS README +} |