blob: bace811cc5fa10e105a5cce885ee7ea8a361c5fe (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/io_lib/io_lib-1.12.5.ebuild,v 1.2 2012/08/03 19:20:41 bicatali Exp $
EAPI=4
DESCRIPTION="General purpose trace and experiment file reading/writing interface"
HOMEPAGE="http://staden.sourceforge.net/"
SRC_URI="mirror://sourceforge/staden/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
# needs stadden, not in portage
RESTRICT=test
# Prototype changes in io_lib-1.9.0 create incompatibilities with BioPerl. (Only
# versions 1.8.11 and 1.8.12 will work with the BioPerl Staden extensions.)
#DEPEND="!sci-biology/bioperl"
DEPEND="net-misc/curl
sys-libs/zlib"
RDEPEND="${DEPEND}"
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
dodoc docs/{Hash_File_Format,ZTR_format}
}
|