diff options
Diffstat (limited to 'sci-misc/ised/ised-2.2.2.ebuild')
-rw-r--r-- | sci-misc/ised/ised-2.2.2.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sci-misc/ised/ised-2.2.2.ebuild b/sci-misc/ised/ised-2.2.2.ebuild new file mode 100644 index 000000000..e8e0819c8 --- /dev/null +++ b/sci-misc/ised/ised-2.2.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=2 + +DESCRIPTION="A tool for generating sequences and arithmetic evaluation of stream data" +HOMEPAGE="http://ised.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="long-types" + +DEPEND="sys-libs/readline" +RDEPEND="${DEPEND}" + +src_configure() { + use long-types && local type_conf="INT_TYPE=LONG FLOAT_TYPE=LONG" + econf --with-readline ${type_conf} +} + +src_install() { + emake install DESTDIR="${D}" || die 'install failed' + dodoc AUTHORS ChangeLog NEWS README || die 'dodoc failed' +} |