blob: aaaea41ac3de7ca51df6737300b955674a473752 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
DESCRIPTION="Tools for bioinformatics (notably Tallymer, Readjoiner, gff3validator)"
HOMEPAGE="http://genometools.org"
SRC_URI="http://genometools.org/pub/${P}.tar.gz"
LICENSE="ICS"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
dev-libs/glib
x11-libs/pango
x11-libs/cairo"
RDEPEND="${DEPEND}"
src_prepare(){
sed -e "s#/usr/local#"${EPREFIX}"/usr#" -i Makefile || die
eapply_user
}
|