blob: 7bd015562c15015e30bc23f530126eba253e5b10 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/transfac/transfac-3.2.ebuild,v 1.2 2004/06/26 13:11:20 dholm Exp $
DESCRIPTION="A database of eucaryotic transcription factors"
HOMEPAGE="http://www.gene-regulation.com/pub/databases.html"
SRC_URI="ftp://ftp.ebi.ac.uk/pub/databases/${PN}/${PN}32.tar.Z"
LICENSE="public-domain"
SLOT="3"
KEYWORDS="~x86 ~ppc"
IUSE="no-emboss no-rawdb"
S=${WORKDIR}
src_compile() {
# Index the database for use with emboss if emboss is installed and
# the user did not explicitly request not to index the database.
if [ -e /usr/bin/tfextract ] && ! use no-emboss; then
einfo "Indexing TRANSFAC for usage with EMBOSS."
EMBOSS_DATA=. tfextract -auto -infile class.dat || die \
"Indexing TRANSFAC failed."
fi
}
src_install() {
if ! use no-rawdb; then
insinto /usr/share/${PN}-${SLOT}
doins *.dat
fi
if [ -e /usr/bin/tfextract ] && ! use no-emboss; then
insinto /usr/share/EMBOSS/data
doins tf*
fi
}
|