blob: 088e7bf6e24ea55abb5ee1934997633dccdaa0fc (
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
33
34
35
36
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/librg-utils-perl/librg-utils-perl-1.0.43.ebuild,v 1.1 2013/04/24 14:10:04 jlec Exp $
EAPI=5
inherit perl-module
DESCRIPTION="Parsers and format conversion utilities used by (e.g.) profphd"
HOMEPAGE="http://rostlab.org/"
SRC_URI="ftp://rostlab.org/librg-utils-perl/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="
dev-perl/List-MoreUtils"
DEPEND="${RDEPEND}
sci-libs/profphd-utils
virtual/perl-Module-Build
"
src_configure() {
econf
perl-module_src_configure
}
src_install() {
rm mat/Makefile* || die
perl-module_src_install
insinto /usr/share/${PN}
doins -r mat *.pl dbSwiss
doman blib/libdoc/*
}
|