blob: ca4496e752d380a50789242d4fa3a1d0813b2f08 (
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
|
# Copyright 1999-2012 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'
}
|