summaryrefslogtreecommitdiff
path: root/sci-biology/emboss/emboss-6.6.0-r1.ebuild
blob: 766dd6a61b0caf05bb00ede7c2cf7fca62d8aad7 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

EBO_EAUTORECONF=1

inherit emboss-r2 readme.gentoo-r1

DESCRIPTION="The European Molecular Biology Open Software Suite - A sequence analysis package"
SRC_URI="
	ftp://emboss.open-bio.org/pub/${PN^^}/${P^^}.tar.gz
	https://dev.gentoo.org/~soap/distfiles/${P}-patches.tar.xz"
S="${WORKDIR}/${P^^}"

LICENSE+=" Apache-2.0 GPL-3+ CC-BY-3.0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="minimal"

RDEPEND="
	!games-action/xbomber
	!sys-devel/cons"
PDEPEND="
	!minimal? (
		sci-biology/aaindex
		sci-biology/cutg
		sci-biology/primer3
		sci-biology/prints
		sci-biology/prosite
		sci-biology/rebase
	)"

PATCHES=(
	"${WORKDIR}"/patches/${P}-fix-build-system.patch
	"${WORKDIR}"/patches/${P}-FORTIFY_SOURCE-fix.patch
	"${WORKDIR}"/patches/${P}-plplot-declarations.patch
	"${WORKDIR}"/patches/${P}-qa-implicit-declarations.patch
	"${WORKDIR}"/patches/${P}-C99-bool.patch
	"${WORKDIR}"/patches/${P}-Wimplicit-function-declaration.patch
)

src_install() {
	emboss-r2_src_install

	readme.gentoo_create_doc

	# Install env file for setting libplplot and acd files path.
	newenvd - 22emboss <<- EOF || die
		# ACD files location
		EMBOSS_ACDROOT="${EPREFIX}/usr/share/EMBOSS/acd"
		EMBOSS_DATA="${EPREFIX}/usr/share/EMBOSS/data"
	EOF

	# Remove useless dummy files
	find "${ED}"/usr/share/EMBOSS -name dummyfile -delete \
		|| die "Failed to remove dummy files"

	# Move the provided codon files to a different directory. This will avoid
	# user confusion and file collisions on case-insensitive file systems (see
	# bug #115446). This change is documented in "README.gentoo".
	mv "${ED}"/usr/share/EMBOSS/data/CODONS{,.orig} \
		|| die "Failed to move CODON directory"
}

pkg_postinst() {
	readme.gentoo_print_elog
}